Suppose I am working with the linear transformation from $\mathbb R^3$ to $\mathbb R^2$ given by a $2\times3$ matrix say $$ \begin{bmatrix} 1 & 2 & 3 \\ 4 & 0 & 5 \\ \end{bmatrix} $$ this matrix has no left inverse but has a right inverse matrix of order $3\times2$ producing identity $I_2$ matrix.
How to find such a right inverse matrix?Is there any method to do so?
The pivot columns of a full row rank matrix will form an invertible submatrix, to whose inverse you could add zero rows for the free columns to get a right inverse.
So in this case, the pivot submatrix $\begin{bmatrix}1&2\\4&0\end{bmatrix}$ has inverse $\begin{bmatrix}0&\frac{1}{4}\\\frac{1}{2}&-\frac{1}{8}\end{bmatrix}$ which gives the right inverse $$\begin{bmatrix}0&\frac{1}{4}\\\frac{1}{2}&-\frac{1}{8}\\0&0\end{bmatrix}$$