All Exams Test series for 1 year @ ₹349 only
Question

If \(A = \left( {\begin{array}{} 1&2\\ 2&3 \end{array}} \right)\) and A 2– kA – I 2= 0, where I 2is the 2 × 2 identity matrix, then what is the value of k?

This question was previously asked in
NDA I 2018 GAT Previous Year Paper (22-Apr-2018)
The correct answer is

4

Solving Matrix Equations to Find Scalar Values

We are given a matrix \(A\) and a matrix equation involving \(A\), its square \(A^2\), a scalar \(k\), and the 2x2 identity matrix \(I_2\). The goal is to find the value of \(k\) that satisfies the given equation.

The given matrix is:

\(A = \begin{pmatrix} 1 & 2 \\ 2 & 3 \end{pmatrix}\)

The identity matrix \(I_2\) is:

\(I_2 = \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}\)

The given matrix equation is:

\(A^2 - kA - I_2 = 0\)

Here, \(0\) represents the 2x2 zero matrix, \(\begin{pmatrix} 0 & 0 \\ 0 & 0 \end{pmatrix}\).

Step 1: Calculate A²

First, we need to find the square of the matrix \(A\), which is \(A \times A\).

\(A^2 = \begin{pmatrix} 1 & 2 \\ 2 & 3 \end{pmatrix} \times \begin{pmatrix} 1 & 2 \\ 2 & 3 \end{pmatrix}\)

To multiply two matrices, we multiply the elements of each row of the first matrix by the corresponding elements of each column of the second matrix and sum the products.

Element Calculation
(1,1) \((1 \times 1) + (2 \times 2) = 1 + 4 = 5\)
(1,2) \((1 \times 2) + (2 \times 3) = 2 + 6 = 8\)
(2,1) \((2 \times 1) + (3 \times 2) = 2 + 6 = 8\)
(2,2) \((2 \times 2) + (3 \times 3) = 4 + 9 = 13\)

So, \(A^2\) is:

\(A^2 = \begin{pmatrix} 5 & 8 \\ 8 & 13 \end{pmatrix}\)

Step 2: Calculate kA

Next, we calculate \(kA\), which involves scalar multiplication. We multiply each element of the matrix \(A\) by the scalar \(k\).

\(kA = k \begin{pmatrix} 1 & 2 \\ 2 & 3 \end{pmatrix} = \begin{pmatrix} k \times 1 & k \times 2 \\ k \times 2 & k \times 3 \end{pmatrix} = \begin{pmatrix} k & 2k \\ 2k & 3k \end{pmatrix}\)

Step 3: Substitute into the Matrix Equation

Now, substitute the calculated values of \(A^2\), \(kA\), and \(I_2\) into the given equation \(A^2 - kA - I_2 = 0\).

\(\begin{pmatrix} 5 & 8 \\ 8 & 13 \end{pmatrix} - \begin{pmatrix} k & 2k \\ 2k & 3k \end{pmatrix} - \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix} = \begin{pmatrix} 0 & 0 \\ 0 & 0 \end{pmatrix}\)

Step 4: Perform Matrix Subtraction

To subtract matrices, we subtract the corresponding elements.

\(\begin{pmatrix} 5 - k - 1 & 8 - 2k - 0 \\ 8 - 2k - 0 & 13 - 3k - 1 \end{pmatrix} = \begin{pmatrix} 0 & 0 \\ 0 & 0 \end{pmatrix}\)

Simplify the elements on the left side:

\(\begin{pmatrix} 4 - k & 8 - 2k \\ 8 - 2k & 12 - 3k \end{pmatrix} = \begin{pmatrix} 0 & 0 \\ 0 & 0 \end{pmatrix}\)

Step 5: Equate Corresponding Elements to Solve for k

For two matrices to be equal, their corresponding elements must be equal. We can set any element of the resulting matrix on the left side equal to the corresponding element of the zero matrix on the right side and solve for \(k\).

  • From the element in the first row, first column: \(4 - k = 0 \implies k = 4\)
  • From the element in the first row, second column: \(8 - 2k = 0 \implies 2k = 8 \implies k = 4\)
  • From the element in the second row, first column: \(8 - 2k = 0 \implies 2k = 8 \implies k = 4\)
  • From the element in the second row, second column: \(12 - 3k = 0 \implies 3k = 12 \implies k = 4\)

All equations yield the same value for \(k\), which is 4.

Thus, the value of \(k\) that satisfies the given matrix equation is 4.

Revision Table: Matrix Operations

Concept Description
Matrix Multiplication Product of rows of the first matrix with columns of the second. Requires compatible dimensions.
Scalar Multiplication Multiplying every element of a matrix by a single number (scalar).
Matrix Addition/Subtraction Adding or subtracting corresponding elements of matrices. Requires matrices of the same dimensions.
Matrix Equation An equation where the variables are matrices or scalars within matrix expressions. Solved by performing matrix operations and equating corresponding elements.

Additional Information: Cayley-Hamilton Theorem Connection

The matrix equation \(A^2 - kA - I_2 = 0\) has a special connection to the Cayley-Hamilton Theorem. This theorem states that every square matrix satisfies its own characteristic equation. The characteristic equation of a 2x2 matrix \(A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}\) is given by \(det(A - \lambda I) = 0\), which expands to \(\lambda^2 - (a+d)\lambda + (ad-bc) = 0\). Here, \((a+d)\) is the trace of the matrix (\(Tr(A)\)) and \((ad-bc)\) is the determinant of the matrix (\(det(A)\)). So the equation is \(\lambda^2 - Tr(A)\lambda + det(A) = 0\).

According to the theorem, if we replace \(\lambda\) with \(A\), the matrix equation \(A^2 - Tr(A)A + det(A)I = 0\) holds true.

For the given matrix \(A = \begin{pmatrix} 1 & 2 \\ 2 & 3 \end{pmatrix}\):

  • Trace: \(Tr(A) = 1 + 3 = 4\)
  • Determinant: \(det(A) = (1 \times 3) - (2 \times 2) = 3 - 4 = -1\)

According to the Cayley-Hamilton Theorem, the characteristic equation is \(\lambda^2 - 4\lambda - 1 = 0\), and the matrix \(A\) should satisfy \(A^2 - 4A - 1I_2 = 0\).

Comparing this to the given equation \(A^2 - kA - I_2 = 0\), we can see that the value of \(k\) must be equal to the trace of the matrix \(A\).

In this case, \(k = Tr(A) = 4\).

This confirms our step-by-step calculation result and shows a more advanced concept related to this type of problem.

Was this answer helpful?

Similar Questions

  1. If \({\rm{E}}\left( {\rm{\theta }} \right) = \left[ {\begin{array}{*{20}{c}} {\cos {\rm{\theta }}}&{\sin {\rm{\theta }}}\\ { - \sin {\rm{\theta \;}}}&{\cos {\rm{\theta }}} \end{array}} \right]\) then E(α) E(β) is equal to

  2. Consider the following in respect of matrices A, B and C of same order:

    1) (A + B + C)' = A' + B’ + C’

    2) (AB)’ = A’B’

    3) (ABC)’ = C’B’A’

    Where A’ is the transpose of the matrix A.

    Which of the above are correct?
  3. If \({\rm{A}} = \left[ {\begin{array}{*{20}{c}} 1&0&{ - 2}\\ 2&{ - 3}&4 \end{array}} \right]\) , then the matrix X for which 2X + 3A = 0 holds true is

  4. Let \(A = \begin{bmatrix} 0 & 2 \\ -2 & 0 \end{bmatrix}\)  and (mI + nA) 2= A where m, n are positive real numbers and I is the identify matrix. What is (m + n) equal to?

  5. Let \({\rm{A}} = \left[ {\begin{array}{*{20}{c}} {\rm x + y}& \rm y\\ {\rm 2x}&{\rm x - y} \end{array}} \right],\;\rm B = \left[ {\begin{array}{*{20}{c}} 2\\ { - 1} \end{array}} \right]\)  and \(\rm C = \left[ {\begin{array}{*{20}{c}} 3\\ 2 \end{array}} \right]\) . If AB = C, then what is the value of the determinant of the matrix A?

  6. If \(A = \left[ {\begin{array}{c} 1&{ - 1}\\ { - 1}&1 \end{array}} \right],\) then the expression A 3- 2A 2is

  7. If \(A = \left( {\begin{array}{*{20}{c}} 1&2\\ 2&3\\ 3&4 \end{array}} \right)\) and \(B = \left( {\begin{array}{*{20}{c}} 1&2\\ 2&1 \end{array}} \right),\)  then which one of the following is correct?

  8. A square matrix A is called orthogonal if_______ where A’ is the transpose of A.

  9. Consider the following in respect of matrices A and B of same order:

    1) A 2– B 2= (A + B) (A – B)

    2) (A – I) (I + A) = O ⇔ A 2= I

    Where I is the identity matrix and O is the null matrix.

    Which of the above is/are correct?
  10. If A is a 2 × 3 matrix and AB is a 2 × 5 matrix, then B must be a


Important Questions from Operations on Matrices

  1. The adjoint of matrix \(\left[ {\begin{array}{*{20}{c}} a&b\\ c&d \end{array}} \right]\)is

  2. If \({\rm{E}}\left( {\rm{\theta }} \right) = \left[ {\begin{array}{*{20}{c}} {\cos {\rm{\theta }}}&{\sin {\rm{\theta }}}\\ { - \sin {\rm{\theta \;}}}&{\cos {\rm{\theta }}} \end{array}} \right]\) then E(α) E(β) is equal to

  3. Consider the following in respect of matrices A, B and C of same order:

    1) (A + B + C)' = A' + B’ + C’

    2) (AB)’ = A’B’

    3) (ABC)’ = C’B’A’

    Where A’ is the transpose of the matrix A.

    Which of the above are correct?
  4. If \({\rm{A}} = \left[ {\begin{array}{*{20}{c}} 1&0&{ - 2}\\ 2&{ - 3}&4 \end{array}} \right]\) , then the matrix X for which 2X + 3A = 0 holds true is

  5. Find a matrix X such that 2A + B + X = 0 , where

    \(A=\begin{bmatrix} -1 & 2 \\\ 3 & 4 \end{bmatrix} \ \text{and} \;\rm B =\ \begin{bmatrix} 3 & -2 \\\ 1 & 5 \end{bmatrix} \ ?\)

Need Expert Advice?
Test Series
NDA img
Defence
NDA 2026 Mock Test Series (Latest Pattern)
503 Tests 1 Tests Free
1057 Attempts
4.6(136)
English, Hindi

Start Your Preparation with Prepp Mobile App

Download the app from Google Play & App Store
Download the app from Google Play & App Store
Prepp Mobile App