Suppose we have a matrix $$ A = \begin{bmatrix} 3 & 0\\0 & -2\end{bmatrix}$$ According to theory, the eigenvectors of $A A^T$ form $U$ and the eigenvectors of $A^T A$ form $V$. Then, solving
$$\det(AA^T - \lambda I)=0$$
I find $\lambda_1=9$ and $\lambda_2=4$. And solving $AA^Tu_1 = 9u_1$ and $AA^Tu_2 = 4u_2$ I find that the eigenvectors of $AA^T$ are $u_1=[1,0]$ and $u_2=[0,1]$, this way obtaining
$$U = \begin{bmatrix}1 & 0\\0 & 1\end{bmatrix}=I_{2\times2}$$
So far so good. But now if I compute $A^TA = AA^T$ yielding the same equations for finding the eigenvectors and I end up with the erroneous solution that $V=I_{2\times2}$ when in fact it should be
$$\begin{bmatrix}1 & 0\\0 & -1\end{bmatrix}$$
I do not want a solution by inverting $A$ to find $V$. Please, point me where in the calculation above I missed a $-1$. Thank you.