I want to find the principal components of the matrix
$$ A=\pmatrix{1,\rho,\rho, \rho\\\rho,1,\rho,\rho\\\rho,\rho,1,\rho\\ \rho,\rho,\rho,1} $$
I assume $\rho$ is correlation. To find the principal components, I believe you have to find the eigenvectors $v_i$ right? Is there a quicker method for this matrix as it seems quite tedious?
You can write $A = (1-\rho)I + \rho vv^T$ where $v = \begin{bmatrix}1 & 1 & 1 & 1\end{bmatrix}^T$.
The matrix $\rho vv^T$ is rank-$1$, so it should be easy to find the eigenvectors and eigenvalues. Adding $(1-\rho)I$ increases the eigenvalues by $1-\rho$ and leaves the eigenvectors unchanged.