Question
Question: Let $A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}$, $B = \begin{bmatrix} x \\ y \end{bmatrix}$, ...
Let A=[acbd], B=[xy], x,y∈R−{0} such that AB=B and trace (A)=17. Then, value of ad−bc is

16
Solution
The problem involves matrix properties, specifically matrix multiplication and the trace of a matrix. It can be solved using either direct algebraic manipulation or by recognizing the concept of eigenvalues.
Method 1: Algebraic Manipulation
Given:
- Matrix A=[acbd]
- Matrix B=[xy], where x,y∈R−{0}
- Condition AB=B
- Condition trace(A)=17
We need to find the value of ad−bc, which is the determinant of matrix A, i.e., det(A).
From the condition AB=B:
[acbd][xy]=[xy]Performing the matrix multiplication, we get a system of linear equations:
- ax+by=x
- cx+dy=y
Rearranging these equations:
- (a−1)x+by=0…(i)
- cx+(d−1)y=0…(ii)
This is a system of homogeneous linear equations in x and y. Since x,y∈R−{0}, it implies that B is a non-zero vector. For a system of homogeneous linear equations to have non-trivial solutions (i.e., solutions other than x=0,y=0), the determinant of the coefficient matrix must be zero.
The coefficient matrix is [a−1cbd−1]. Setting its determinant to zero:
det[a−1cbd−1]=0 (a−1)(d−1)−bc=0Expanding the expression:
ad−a−d+1−bc=0Rearranging the terms to isolate ad−bc:
ad−bc=a+d−1…(iii)We are given that trace(A)=17. For matrix A=[acbd], the trace is the sum of its diagonal elements:
trace(A)=a+dSo, we have:
a+d=17…(iv)Substitute the value of (a+d) from equation (iv) into equation (iii):
ad−bc=17−1 ad−bc=16Method 2: Using Eigenvalues (More concise)
The condition AB=B can be rewritten as AB=1⋅B. This equation implies that B is an eigenvector of matrix A corresponding to the eigenvalue λ=1. Since B=[xy] with x,y∈R−{0}, B is a non-zero vector. Therefore, λ=1 must be an eigenvalue of matrix A.
For a 2×2 matrix A=[acbd], the characteristic equation is given by:
λ2−(trace(A))λ+det(A)=0We know that λ=1 is an eigenvalue, and trace(A)=17. Also, det(A)=ad−bc. Substitute these values into the characteristic equation:
12−(17)(1)+(ad−bc)=0 1−17+(ad−bc)=0 −16+(ad−bc)=0 ad−bc=16Both methods yield the same result.
The final answer is 16.
Explanation of the solution: The condition AB=B implies that B is an eigenvector of A with eigenvalue 1. Since B is a non-zero vector, 1 must be an eigenvalue of A. The characteristic equation for a 2×2 matrix A is λ2−(trace(A))λ+det(A)=0. Substituting λ=1 and the given trace(A)=17 into this equation yields 12−17(1)+det(A)=0, which simplifies to det(A)=16. Since det(A)=ad−bc, the value of ad−bc is 16.