5

What conditions hold $f\left(f^{-1}(x)\right)=x$

For example

$$\begin{align*}\text{sin(arcsin(x))=x}\end{align*}$$

I think this is a trival question maybe asked too many times, where are they?

HyperGroups
  • 1,393

3 Answers3

3

$$f(f^{-1}(x)) = x$$ is always true provided $f^{-1}(x)$ exists in the first place, i.e., there exists at least one element $y$ such that $f(y) = x$.

2

In my opinion, it doesn't make sense to talk about $f^{-1}$ of an element unless we know that $f$ is bijective. Usually, it makes more sense to talk about pre-image of a set. For example, you might mean $f^{-1}(\{x\})$ instead of just $f^{-1}(x)$.

Therefore, it is always true by definition that $f(f^{-1}(A))\subseteq A$ with equality if $f$ is surjective. In the same spirit, $f^{-1}(f(B))\supseteq B$ with equality if $f$ is injective.

The problem arises in your case when $f$ need not be surjective. Then in this case the pre-image $f^{-1}(\{x\})$ may be empty. For example, if $f:\mathbb{R}\rightarrow\mathbb{R}$ with $f(x)=x^{2}$, then $f^{-1}(\{-1\})=\emptyset$. Therefore, $f(f^{-1}(\{-1\}))=\emptyset\subseteq\{x\}$. Thinking of pre-image of a set rather than an element prevents confusion.

enoughsaid05
  • 2,371
  • 18
  • 28
1

This is a definition of a (left) inverse of a map. It is less confusing to look at this when domain a co-domain are different, or at least denoted by different symbols. That is, let us consider a map $f:X\to Y$, then a map $g:Y\to X$ is called left (right) inverse, if $g(f(x)) = x$ for any $x\in X$ (if $f(g(y)) = y$ for all $y\in Y$).

Both inverse functions are often denote by the same symbol $g = f^{-1}$, so that the equation $f(f^{-1}(x)) = x$ that you wrote in fact holds for any $x$ in the co-domain of $f$ (that is, in the set $Y$ in the previous notation). For example, even though $f = \sin$ seem to send reals to reals, its range is only $[-1,1]$ and that's where the $\arcsin$ is defined (so that although $X = \Bbb R$, here $Y = [-1,1]$). In particular, $\sin$ does not allow for the right inverse in case $Y'=\Bbb R$.

SBF
  • 36,041