I'm looking to diagonalize a matrix A seen below. (Find a $P$ and a $D$ such that $AP = PD$). $$ \begin{bmatrix} 1 & 2 & 3 & 4 & 5 & 6 \\ 1 & 2 & 3 & 4 & 5 & 6 \\ 1 & 2 & 3 & 4 & 5 & 6 \\ 1 & 2 & 3 & 4 & 5 & 6 \\ 1 & 2 & 3 & 4 & 5 & 6 \\ 1 & 2 & 3 & 4 & 5 & 6 \\ \end{bmatrix} $$
It doesn't seem practical to use determinants in this matrix to find the eigenvalues. I do realize that with row reduction I can limit to the matrix:
$$ \begin{bmatrix} 1 & 2 & 3 & 4 & 5 & 6 \\ 0 & 0 & 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 & 0 & 0 \\ \end{bmatrix} $$
And further realize that the following vector is in the column space of A.
$$ \begin{bmatrix} 1 \\ 1 \\ 1 \\ 1 \\ 1 \\ 1 \\ \end{bmatrix} $$
By solving $Av_1=λv_1$ I get an eigenvalue of 21. But this is the only eigenvalue that I get and I believe it has a multiplicity of 1. Then is there a $λ=0$ with multiplicity 5? Further, how is it possible to find the matrix $P$ (specifically the eigenvectors that form a basis for the eigenspace associated with $λ=0$)?