Suppose we have an equation of linear transformation $\varphi : \mathbb{R}^4 \rightarrow \mathbb{R}^4$. How to show that such transformation is isomorphic and how to find inverse isomorphism ($\varphi^{-1}$)?
EDIT: The transformation is: $\varphi ([x_1,x_2,x_3,x_4])=[x_1+x_2+x_3, x_1+x_3+x_4,x_1+x_4,x_1+x_2+x_3+x_4]$
The matrix of the linear map with respect to the standard basis is $$ A=\begin{bmatrix} 1 & 1 & 1 & 0 \\ 1 & 0 & 1 & 1 \\ 1 & 0 & 0 & 1 \\ 1 & 1 & 1 & 1 \end{bmatrix} $$ and Gaussian elimination goes as follows \begin{align} \begin{bmatrix} 1 & 1 & 1 & 0 \\ 1 & 0 & 1 & 1 \\ 1 & 0 & 0 & 1 \\ 1 & 1 & 1 & 1 \end{bmatrix} &\to \begin{bmatrix} 1 & 1 & 1 & 0 \\ 0 & -1 & 0 & 1 \\ 1 & -1 & -1 & 1 \\ 0 & 0 & 0 & 1 \end{bmatrix} \\[1ex]&\to \begin{bmatrix} 1 & 1 & 1 & 0 \\ 0 & -1 & 0 & 1 \\ 0 & -1 & -1 & 1 \\ 0 & 0 & 0 & 1 \end{bmatrix} \\[1ex]&\to \begin{bmatrix} 1 & 1 & 1 & 0 \\ 0 & 1 & 0 & -1 \\ 0 & 0 & -1 & 0 \\ 0 & 0 & 0 & 1 \end{bmatrix} \\[1ex]&\to \begin{bmatrix} 1 & 1 & 1 & 0 \\ 0 & 1 & 0 & -1 \\ 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1 \end{bmatrix} \end{align} which shows the rank of the matrix is $4$. So the map is surjective, hence also injective.
In order to find the inverse, a good method is to proceed with finding the RREF of the matrix $[A\ I_4]$: \begin{align} \left[\begin{array}{@{}cccc|cccc@{}} 1 & 1 & 1 & 0 & 1 & 0 & 0 & 0 \\ 1 & 0 & 1 & 1 & 0 & 1 & 0 & 0 \\ 1 & 0 & 0 & 1 & 0 & 0 & 1 & 0 \\ 1 & 1 & 1 & 1 & 0 & 0 & 0 & 1 \end{array}\right] &\to \left[\begin{array}{@{}cccc|cccc@{}} 1 & 1 & 1 & 0 & 1 & 0 & 0 & 0 \\ 0 & -1 & 0 & 1 & -1 & 1 & 0 & 0 \\ 0 & -1 & -1 & 1 & -1 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1 & -1 & 0 & 0 & 1 \end{array}\right] \\[1ex]&\to \left[\begin{array}{@{}cccc|cccc@{}} 1 & 1 & 1 & 0 & 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & -1 & 1 & -1 & 0 & 0 \\ 0 & 0 & -1 & 0 & 0 & -1 & 1 & 0 \\ 0 & 0 & 0 & 1 & -1 & 0 & 0 & 1 \end{array}\right] \\[1ex]&\to \left[\begin{array}{@{}cccc|cccc@{}} 1 & 1 & 1 & 0 & 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & -1 & 1 & -1 & 0 & 0 \\ 0 & 0 & 1 & 0 & 0 & 1 & -1 & 0 \\ 0 & 0 & 0 & 1 & -1 & 0 & 0 & 1 \end{array}\right] \\[1ex]&\to \left[\begin{array}{@{}cccc|cccc@{}} 1 & 1 & 1 & 0 & 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 & 0 & -1 & 0 & 1 \\ 0 & 0 & 1 & 0 & 0 & 1 & -1 & 0 \\ 0 & 0 & 0 & 1 & -1 & 0 & 0 & 1 \end{array}\right] \\[1ex]&\to \left[\begin{array}{@{}cccc|cccc@{}} 1 & 1 & 0 & 0 & 1 & -1 & 1 & 0 \\ 0 & 1 & 0 & 0 & 0 & -1 & 0 & 1 \\ 0 & 0 & 1 & 0 & 0 & 1 & -1 & 0 \\ 0 & 0 & 0 & 1 & -1 & 0 & 0 & 1 \end{array}\right] \\[1ex]&\to \left[\begin{array}{@{}cccc|cccc@{}} 1 & 0 & 0 & 0 & 1 & 0 & 1 & -1 \\ 0 & 1 & 0 & 0 & 0 & -1 & 0 & 1 \\ 0 & 0 & 1 & 0 & 0 & 1 & -1 & 0 \\ 0 & 0 & 0 & 1 & -1 & 0 & 0 & 1 \end{array}\right] \end{align} which shows that $$ A^{-1}= \begin{bmatrix} 1 & 0 & 1 & -1 \\ 0 & -1 & 0 & 1 \\ 0 & 1 & -1 & 0 \\ -1 & 0 & 0 & 1 \end{bmatrix} $$ so that $$ \varphi^{-1}([x_1,x_2,x_3,x_4])= [x_1-x_4,-x_2+x_3,x_1-x_3,-x_1+x_2+x_4] $$