Assume there's a matrix $A$ with SVD as below $$ A = U \begin{bmatrix} 1 & 0 & 0 & 0 \\ 0 & 2 & 0 & 0 \\ 0 & 0 & 3 & 0 \\ 0 & 0 & 0 & 0 \end{bmatrix} V^* $$
There's a matrix $B$, for which $AB = I$.
Question, can $A$ have two inverse matrices? IF yes, what would they be? If no, why not?
I think there are, and here's my first matrix:
I assume $AA^{-1} = I$, so $C^+C = I$, where $A^{-1}$ is actually the matrix, and $A$ is the left inverse of $A^{-1}$. After a series of calculations, I will get $$ A^{-1} = V \begin{bmatrix} 1/1 & 0 & 0 & 0 \\ 0 & 0.5 & 0 & 0 \\ 0 & 0 & 1/3 & 0 \\ 0 & 0 & 0 & 0 \end{bmatrix} U^* $$
However, I don't know how to find another one though. Maybe I'm wrong at the beginning?
In a singular value decomposition, the matrices $U$ and $V$ are unitary, so invertible. Hence the rank of $A$ is the same as the rank of the singular value matrix, which is $3$. So $A$ is not invertible.
What you write as $$ V \begin{bmatrix} 1/1 & 0 & 0 & 0 \\ 0 & 1/2 & 0 & 0 \\ 0 & 0 & 1/3 & 0 \\ 0 & 0 & 0 & 0 \end{bmatrix} U^* $$ is the pseudoinverse $A^+$ of $A$, not the inverse. And $AA^{+}$, in this case, is not the identity, because the rank of $A$ is $3$.