Leting $$A=\left[\begin{array}{rrrr}-1&1&1&1\\1&-1&1&1\\1&1&-1&1\\1&1&1&-1\end{array}\right],$$ find SVD, i.e., $A=U\Sigma V^T$ with $U^TU=UU^T=I$ and $V^TV=VV^T=I$, where $I$ is identity matrix.
Then, since $$A^TA = AA^T=4I,$$ I could found eigenvalues are all $4$'s for $A^TA$ and $AA^T$, and $$\Sigma=\begin{bmatrix}2&0&0&0 \\ 0&2&0&0 \\ 0&0&2&0 \\ 0&0&0&2\end{bmatrix}.$$
The textbook is saying that $U$ and $V$ are eigenvector matrix for $AA^T$ and $A^TA$, respectively.
I tried to find $U$ and $V$, but $A^TA-\lambda I = 0$ because $\lambda=4$. That is, any vectors can be eigenvectors.
How can I find $U$ and $V$ in this case?
Actually, without any settled methods, I found $U$ and $V$ by intuition of product of matrices. $$U=I \quad\text{and}\quad V=\frac12 A.$$
However, I want to know how to find $U$ and $V$ for this case.