How do I find the inverse function of $f: X\to Y$ where $X,Y$ both are subsets of $\mathbb R^2$ and $f$ is defined as $f(x,y)=(x+y,x-y)$.
2026-03-29 15:51:47.1774799507
On
Inverse function in $\mathbb R^2$
1.6k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
3
There are 3 best solutions below
0
On
So this is a system of linear equations, so the core thing is to solve the system. For larger degree inputs and outputs, matrix inversion is the way to go, but for this case, solving the equations without them isn't too horrible:
$f(x, y) = (u, v)$ -> $f^{-1} (u, v) = (x, y)$
$x + y = u$
$x - y = v$
$u + v = 2x + 0 = 2x$
$x = \frac{u + v}{2}$
$y = u - x = u - \frac{u + v}{2} = \frac{u - v}{2}$
$f^{-1} (u, v) = (\frac{u + v}{2}, \frac{u - v}{2})$
Hint:$$\underbrace{\begin{bmatrix}x \\y \end{bmatrix}}_f\mapsto\begin{bmatrix}1 &1 \\1 & -1 \end{bmatrix}\begin{bmatrix}x \\y \end{bmatrix}$$ find inverse of matrix to find $f^{-1}$