Determine When the Given Matrix Invertible

Johns Hopkins Linear Algebra Exam Problems and Solutions

Problem 101

For which choice(s) of the constant $k$ is the following matrix invertible?
\[A=\begin{bmatrix}
1 & 1 & 1 \\
1 &2 &k \\
1 & 4 & k^2
\end{bmatrix}.\]  
(Johns Hopkins University, Linear Algebra Exam)
 
LoadingAdd to solve later

Sponsored Links


Hint.

An $n\times n$ matrix is invertible if and only if its rank is $n$.
The rank of a matrix is the number of nonzero rows of a (reduced) row echelon form matrix that is row equivalent to the given matrix.

Solution.

We compute the rank of the matrix $A$.
Applying elementary row operations, we obtain
\begin{align*}
\begin{bmatrix}
1 & 1 & 1 \\
1 &2 &k \\
1 & 4 & k^2
\end{bmatrix}
\xrightarrow{\substack{R_2-R_1 \\ R_3-R_1}}
\begin{bmatrix}
1 & 1 & 1 \\
0 & 1 &k-1 \\
0 & 3 & k^2-1
\end{bmatrix}
\xrightarrow{\substack{R_1-R_2 \\ R_3-3R_2}}
\begin{bmatrix}
1 & 0 & 2-k \\
0 &1 &k-1 \\
0 & 0 & k^2-3k+2
\end{bmatrix}.
\end{align*}
The last matrix is in row echelon form.

Note that $A$ is an invertible matrix if and only if its rank is $3$.
Therefore the $(3,3)$-entry of the last matrix must be nonzero: $k^2-3k+2=(k-1)(k-2)\neq 0$.

It follows that the matrix $A$ is invertible for any $k$ except $k=1, 2$.


LoadingAdd to solve later

Sponsored Links

More from my site

You may also like...

Please Login to Comment.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

More in Linear Algebra
Problems and solutions in Linear Algebra
If the Matrix Product $AB=0$, then is $BA=0$ as Well?

Let $A$ and $B$ be $n\times n$ matrices. Suppose that the matrix product $AB=O$, where $O$ is the $n\times n$...

Close