[Math] Rank of matrix with variable

linear algebramatricesmatrix completionmatrix-rank

$$
\left( \begin{array}
{ccc}1 & 1 & x \\
1 & x & 1 \\
x & 1 & 1 \\
\end{array} \right) $$

Find the values of $x$ such that the matrix above has rank $1$, $2$ and $3$.

Can I get the matrix to reduced row echelon form, or is there another approach?

Best Answer

There are many methods, one is to compute its characteristic polynomial.

$$\chi(t) = -t^3 + (x+2) t^2 + (x-1)^2 t - (x-1)^2 (2 + x)$$ Then we see we have rank $3$ when $x \neq 1, -2$, rank $2$ when $x = -2$ and rank $1$ when $x = 1$.

Related Question