Compute the minimal polynomial of the matrix, without computing the characteristic polynomial. $$ \begin{bmatrix} 4 & -4 & -4 & 0 \\ -5 & 7 & 4 & 0 \\ -4 & 0 & 3 & 0 \\ 0 & 0 & 0 & 1 \\ \end{bmatrix} $$
To compute the mipoly(X) of matrix M, we could suppose the mipoly has degree d, where 1<=d<=4. We have 4 cases when d = 1, d = 2, d=3, d=4
If d = 1, then mipoly = x + b, therefore, M + b*Id = 0 but this is not true.
If d = 2, then mipoly = xˆ2 + ax + b, therefore, Mˆ2 + aM + bId = 0 after doing some calculations, I came to the conclusion that the system has no non-zero solutions since the rank of the matrix is 3.
If d = 3, then Mˆ3 + aMˆ2 + bM + c*Id = 0 I computed the cube and the square and then formed one big matrix of the four matrices multiplied by 1,a,b,c, some real numbers to be equal to 0 vector.
$$ \begin{bmatrix} 604 & 52 & 4 & 1 \\ -516 & -44 & -4 & 0 \\ -516 & -44 & -4 & 0 \\ -516 & -44 & -4 & 0 \\ .... \end{bmatrix} $$
multiplied by
$$ \begin{pmatrix} 1\\ a\\ b\\ c\\ \end{pmatrix} $$
I formed a system of 64 linear equations and found c = 1, b = 4, a = 6 Could you please confirm with me whether you got the same values for a,b,c ?