6

There are terms for various kinds of functions (or operators) such as...

associative - (a # b) # c  =  a # (b # c)
commutative - a # b  =  b # a
idempotent  - f (f (x)) = f (x)

Is there a similar name for functions that are their own inverse?

f (f (x)) = x

2 Answers2

13

It is called as an involution.

JiminP
  • 1,670
6

Such a function is called an involution.

Guest
  • 61