Q
MCQ
Matrices
If $X = \begin{bmatrix}x\\y\\z\end{bmatrix}$ is a solution of the system of equations $AX = B$, where
$$\text{adj}\,A = \begin{bmatrix}4&2&2\\-5&0&5\\1&-2&3\end{bmatrix}, \quad B = \begin{bmatrix}4\\0\\2\end{bmatrix}$$
then $|x+y+z|$ is equal to:
A) 3
B) 2 ✓
C) $\dfrac{3}{2}$
D) 1
1. Adjugate Matrix and Inverse
For a square matrix $A$: $A \cdot \text{adj}(A) = \text{adj}(A) \cdot A = |A| \cdot I$. Therefore $A^{-1} = \dfrac{\text{adj}(A)}{|A|}$ when $|A| \neq 0$. The adjugate $\text{adj}(A)$ is the transpose of the cofactor matrix. This identity is the backbone of Cramer’s rule and solving $AX=B$ without explicitly inverting $A$.
2. Determinant of Adjugate Matrix
For an $n \times n$ matrix: $\det(\text{adj}\,A) = |A|^{n-1}$. For $n=3$: $\det(\text{adj}\,A) = |A|^2$. So $|A| = \pm\sqrt{\det(\text{adj}\,A)}$. This allows finding $|A|$ directly from the given $\text{adj}(A)$ without recovering $A$ itself — a powerful shortcut in JEE problems.
3. Solving AX = B via Adjugate
From $AX = B$: multiply both sides on the left by $\text{adj}(A)$: $\text{adj}(A) \cdot AX = \text{adj}(A) \cdot B$, giving $|A| \cdot X = \text{adj}(A) \cdot B$. So $X = \dfrac{\text{adj}(A) \cdot B}{|A|}$. This method avoids finding $A$ itself when only $\text{adj}(A)$ and $B$ are given.
4. Why the Absolute Value Matters
$|A| = \pm 10$ gives two cases for $X$. With $|A|=+10$: $X=(2,-1,1)$, sum $=2$. With $|A|=-10$: $X=(-2,1,-1)$, sum $=-2$. The question asks for $|x+y+z|$ (absolute value), giving 2 in both cases. In JEE, when $|A|$ sign is ambiguous, asking for the absolute value of the answer is the standard trick to make the answer unique.
Q
What is adj(A)·A equal to?
⌄
adj(A)·A = A·adj(A) = |A|·I. This is the key identity used in this solution.
Q
How is det(adj A) = |A|² derived?
⌄
For n×n: det(adj A) = |A|^(n-1). For n=3: det(adj A) = |A|². Taking determinant of both sides of A·adj(A)=|A|·I: |A|·det(adj A) = |A|^3 → det(adj A) = |A|².
Q
Compute det(adj A) step by step.
⌄
Expand along row 1: 4[(0)(3)-(5)(-2)] – 2[(-5)(3)-(5)(1)] + 2[(-5)(-2)-(0)(1)] = 4(10)-2(-20)+2(10) = 40+40+20 = 100.
Q
How to compute adj(A)·B?
⌄
Row1: 4(4)+2(0)+2(2)=20. Row2: -5(4)+0(0)+5(2)=-10. Row3: 1(4)-2(0)+3(2)=10. Result: [20,-10,10].
det(adj A)=100=|A|². Taking square root: |A|=±10. Both signs are valid since we only know det(adj A).
Q
What is X when |A|=10?
⌄
X = [20,-10,10]/10 = [2,-1,1]. So x=2, y=-1, z=1. x+y+z = 2.
Q
What is X when |A|=-10?
⌄
X = [20,-10,10]/(-10) = [-2,1,-1]. x+y+z = -2+1-1 = -2. |x+y+z| = 2. Same final answer.
Q
What is the adjugate matrix?
⌄
adj(A) = transpose of cofactor matrix. Each element C_ij = (-1)^(i+j) × minor M_ij. Then adj(A)_ij = C_ji (transposed).
Q
Can we solve this without finding A?
⌄
Yes! That’s the beauty: use |A|·X = adj(A)·B directly. No need to recover A from adj(A).
Q
What if the matrix were 2×2?
⌄
For 2×2: det(adj A) = |A|^1 = |A|. For n×n: det(adj A) = |A|^(n-1). The formula changes with matrix size.