Question:medium

If \( A = \begin{bmatrix} 1 & 0 \\ -1 & 5 \end{bmatrix} \), then find the value of \( K \) if \( A^2 = 6A + K I_2 \), where \( I_2 \) is the identity matrix.

Show Hint

To solve matrix equations, multiply matrices appropriately, then compare the corresponding elements in the resulting matrices to find unknown variables.
Updated On: Jan 14, 2026
Show Solution

Solution and Explanation

Given matrix \( A = \begin{bmatrix} 1 & 0 \\ -1 & 5 \end{bmatrix} \) and the equation \( A^2 = 6A + K I_2 \), where \( I_2 \) is the identity matrix. Calculate \( A^2 \): \[ A^2 = \begin{bmatrix} 1 & 0 \\ -1 & 5 \end{bmatrix} \begin{bmatrix} 1 & 0 \\ -1 & 5 \end{bmatrix} = \begin{bmatrix} 1 & 0 \\ -6 & 25 \end{bmatrix} \] Substitute \( A^2 \) and \( A \) into the equation: \[ \begin{bmatrix} 1 & 0 \\ -6 & 25 \end{bmatrix} = 6 \begin{bmatrix} 1 & 0 \\ -1 & 5 \end{bmatrix} + K \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix} \] Simplify: \[ \begin{bmatrix} 1 & 0 \\ -6 & 25 \end{bmatrix} = \begin{bmatrix} 6 & 0 \\ -6 & 30 \end{bmatrix} + \begin{bmatrix} K & 0 \\ 0 & K \end{bmatrix} \] Which yields the system: \[ \begin{bmatrix} 1 & 0 \\ -6 & 25 \end{bmatrix} = \begin{bmatrix} 6+K & 0 \\ -6 & 30+K \end{bmatrix} \] Comparing elements: 1. \( 1 = 6 + K \) → \( K = -5 \) 2. \( 25 = 30 + K \) → \( K = -5 \) Therefore, \( K = -5 \).
Was this answer helpful?
1