Exam Weightage & Blueprint
Total: ~8-10 MarksDeterminants is a crucial chapter often combined with Matrices. The "Matrix Method" for solving linear equations is a guaranteed long-answer question in most board exams.
| Question Type | Marks | Frequency | Focus Topic |
|---|---|---|---|
| MCQ | 1 | Very High | Value of $|kA|$, Singular Matrix, Area of Triangle |
| Short Answer (2M) | 2 | Medium | Area of Triangle, Adjoint Properties |
| Short Answer (3M) | 3 | High | Properties of Determinants (if in syllabus), Inverse |
| Long Answer | 5 | Very High | Solving System of Linear Equations ($AX=B$) |
Last 24-Hour Checklist
Basic Concepts & Properties
1. Determinant of a Matrix (The Value)
Denoted by: $|A|$ or $\det(A)$ or $\Delta$.
Note: It is NOT modulus. It can be negative.
2x2 Matrix (Crossfire)
$\begin{vmatrix} a & b \\ c & d \end{vmatrix} = (ad) - (bc)$
Method: Down-Right minus Up-Right.
Example: $\begin{vmatrix} 2 & 4 \\ -1 & 2 \end{vmatrix} = (4) - (-4) = 8$.
3x3 Expansion (Traffic Lights)
Signs: $\begin{bmatrix} + & - & + \\ - & + & - \\ + & - & + \end{bmatrix}$
Expand along Row 1: take element, apply sign, multiply by minor.
2. Important Properties (Cheat Sheet)
- Reflection: $|A| = |A'|$ (Rows $\leftrightarrow$ Columns doesn't change value).
- Scalar Power: $|kA|_{n \times n} = k^n |A|$ (Pulling $k$ out brings power $n$).
- Multiplication: $|AB| = |A||B|$ (Break it apart).
3. Area of Triangle (Shoelace Lite)
Key Points:
1. Always take Absolute Value (Area is +ve).
2. If Area is given as 4, use $\pm 4$ for calculation.
3. Collinear Points: Area = 0.
Adjoint and Inverse (The Magic Formula)
Inverse exists ONLY if Matrix is Non-Singular ($|A| \neq 0$).
1. Key Terms
Cofactor ($A_{ij}$)
Signed Minor.
Use "Traffic Control" signs ($+ - +$).
Adjoint (adj A)
Transpose of Cofactor Matrix.
Imagine flipping the cofactors over the diagonal.
2. The Formula
3. Properties of Adjoint
- $A(\text{adj } A) = (\text{adj } A)A = |A|I$
- $|\text{adj } A| = |A|^{n-1}$
- $\text{adj}(\text{adj } A) = |A|^{n-2}A$
- $|\text{adj}(\text{adj } A)| = |A|^{(n-1)^2}$
- $\text{adj}(AB) = (\text{adj } B)(\text{adj } A)$ (Reversal Law)
1. Find $|A|$. If $\neq 0$, proceed.
2. Find Inverse ($A^{-1}$).
3. Multiply: $X = A^{-1}B$.
Solved Examples (Board Marking Scheme)
Q1. If $A = \begin{bmatrix} 1 & 2 \\ 4 & 2 \end{bmatrix}$, then show that $|2A| = 4|A|$. (2 Marks)
$2A = 2\begin{bmatrix} 1 & 2 \\ 4 & 2 \end{bmatrix} = \begin{bmatrix} 2 & 4 \\ 8 & 4 \end{bmatrix}$.
$|2A| = (2)(4) - (4)(8) = 8 - 32 = -24$.
$|A| = (1)(2) - (2)(4) = 2 - 8 = -6$.
$4|A| = 4(-6) = -24$.
Hence, LHS = RHS.
Q2. Find the area of the triangle with vertices $(2, 7), (1, 1), (10, 8)$. (2 Marks)
$\Delta = \frac{1}{2} \begin{vmatrix} 2 & 7 & 1 \\ 1 & 1 & 1 \\ 10 & 8 & 1 \end{vmatrix}$
$= \frac{1}{2} [ 2(1-8) - 7(1-10) + 1(8-10) ]$
$= \frac{1}{2} [ 2(-7) - 7(-9) + 1(-2) ]$
$= \frac{1}{2} [ -14 + 63 - 2 ] = \frac{1}{2} [ 47 ] = 23.5$.
Area = 23.5 sq units.
Q3. Solve the system of equations: $2x + 5y = 1$, $3x + 2y = 7$ using matrix method. (5 Marks)
$A = \begin{bmatrix} 2 & 5 \\ 3 & 2 \end{bmatrix}, X = \begin{bmatrix} x \\ y \end{bmatrix}, B = \begin{bmatrix} 1 \\ 7 \end{bmatrix}$.
$|A| = 4 - 15 = -11 \neq 0$. Unique solution exists.
Cofactors: $A_{11}=2, A_{12}=-3, A_{21}=-5, A_{22}=2$.
$\text{adj } A = \begin{bmatrix} 2 & -5 \\ -3 & 2 \end{bmatrix}$.
$X = \frac{1}{-11} \begin{bmatrix} 2 & -5 \\ -3 & 2 \end{bmatrix} \begin{bmatrix} 1 \\ 7 \end{bmatrix}$
$= \frac{1}{-11} \begin{bmatrix} 2 - 35 \\ -3 + 14 \end{bmatrix} = \frac{1}{-11} \begin{bmatrix} -33 \\ 11 \end{bmatrix} = \begin{bmatrix} 3 \\ -1 \end{bmatrix}$.
So, $x = 3, y = -1$.
Previous Year Questions (PYQs)
(A) -10 (B) 10 (C) -40 (D) 40
Ans: (D). $|2A'| = |2A|$ (since $|A'|=|A|$). Using $|kA| = k^n|A|$, $|2A| = 2^3 |A| = 8 \times 5 = 40$.
Ans: We know $A(\text{adj } A) = |A|I$. So $|A(\text{adj } A)| = ||A|I|$. Since $|A|I$ is a scalar matrix with diagonal elements $|A|$, its determinant is $|A|^n$. If order is not given (assume 3), answer is $3^3 = 27$. If order 2, $3^2=9$.
Hint: Apply $R_2 \to R_2 - 2R_1$ and $R_3 \to R_3 - 3R_1$. Then expand.
Exam Strategy & Mistake Bank
Common Mistakes
Scoring Tips
Practice Problems (Self-Assessment)
Level 1: Basic (1 Mark Each)
Q1. Evaluate $\begin{vmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{vmatrix}$.
$(\cos\theta)(\cos\theta) - (\sin\theta)(-\sin\theta)$
$= \cos^2\theta - (-\sin^2\theta)$
$= \cos^2\theta + \sin^2\theta = 1$.
Q2. Find $x$ if $\begin{vmatrix} 2 & 4 \\ 5 & 1 \end{vmatrix} = \begin{vmatrix} 2x & 4 \\ 6 & x \end{vmatrix}$.
$|LHS| = (2)(1) - (4)(5) = 2 - 20 = -18$.
$|RHS| = (2x)(x) - (4)(6) = 2x^2 - 24$.
$2x^2 - 24 = -18$
$2x^2 = 6 \Rightarrow x^2 = 3$
$x = \pm\sqrt{3}$.
Level 2: Intermediate (2-3 Marks Each)
Q3. Find the equation of the line joining $A(1, 3)$ and $B(0, 0)$ using determinants.
Let $P(x, y)$ be any point on the line. Area of $\Delta ABP$ must be 0.
$\frac{1}{2} \begin{vmatrix} x & y & 1 \\ 1 & 3 & 1 \\ 0 & 0 & 1 \end{vmatrix} = 0$.
Expand along $R_3$ (since it has two zeros):
$0(...) - 0(...) + 1[x(3) - y(1)] = 0$
$3x - y = 0 \Rightarrow y = 3x$.
Q4. If $A = \begin{bmatrix} 2 & 3 \\ 1 & -4 \end{bmatrix}$ and $B = \begin{bmatrix} 1 & -2 \\ -1 & 3 \end{bmatrix}$, verify that $(AB)^{-1} = B^{-1}A^{-1}$.
$AB = \begin{bmatrix} 2(1)+3(-1) & 2(-2)+3(3) \\ 1(1)+(-4)(-1) & 1(-2)+(-4)(3) \end{bmatrix} = \begin{bmatrix} 2-3 & -4+9 \\ 1+4 & -2-12 \end{bmatrix} = \begin{bmatrix} -1 & 5 \\ 5 & -14 \end{bmatrix}$.
$|AB| = (-1)(-14) - (5)(5) = 14 - 25 = -11$.
$(AB)^{-1} = \frac{1}{|AB|} \text{adj}(AB) = \frac{1}{-11} \begin{bmatrix} -14 & -5 \\ -5 & -1 \end{bmatrix}$.
$|A| = (2)(-4) - (3)(1) = -8 - 3 = -11$.
$A^{-1} = \frac{1}{|A|} \text{adj}(A) = \frac{1}{-11} \begin{bmatrix} -4 & -3 \\ -1 & 2 \end{bmatrix}$.
$|B| = (1)(3) - (-2)(-1) = 3 - 2 = 1$.
$B^{-1} = \frac{1}{|B|} \text{adj}(B) = \frac{1}{1} \begin{bmatrix} 3 & 2 \\ 1 & 1 \end{bmatrix} = \begin{bmatrix} 3 & 2 \\ 1 & 1 \end{bmatrix}$.
$B^{-1}A^{-1} = \begin{bmatrix} 3 & 2 \\ 1 & 1 \end{bmatrix} \frac{1}{-11} \begin{bmatrix} -4 & -3 \\ -1 & 2 \end{bmatrix} = \frac{1}{-11} \begin{bmatrix} 3(-4)+2(-1) & 3(-3)+2(2) \\ 1(-4)+1(-1) & 1(-3)+1(2) \end{bmatrix}$
$= \frac{1}{-11} \begin{bmatrix} -12-2 & -9+4 \\ -4-1 & -3+2 \end{bmatrix} = \frac{1}{-11} \begin{bmatrix} -14 & -5 \\ -5 & -1 \end{bmatrix}$.
Since LHS = $\frac{1}{-11} \begin{bmatrix} -14 & -5 \\ -5 & -1 \end{bmatrix}$ and RHS = $\frac{1}{-11} \begin{bmatrix} -14 & -5 \\ -5 & -1 \end{bmatrix}$, we have LHS = RHS. Verified.
Level 3: Advanced (5 Marks Each)
Q5. Solve the following system of equations by matrix method:
$3x - 2y + 3z = 8$
$2x + y - z = 1$
$4x - 3y + 2z = 4$
$A = \begin{bmatrix} 3 & -2 & 3 \\ 2 & 1 & -1 \\ 4 & -3 & 2 \end{bmatrix}$, $X = \begin{bmatrix} x \\ y \\ z \end{bmatrix}$, $B = \begin{bmatrix} 8 \\ 1 \\ 4 \end{bmatrix}$.
$|A| = 3(1 \cdot 2 - (-1) \cdot (-3)) - (-2)(2 \cdot 2 - (-1) \cdot 4) + 3(2 \cdot (-3) - 1 \cdot 4)$
$|A| = 3(2 - 3) + 2(4 + 4) + 3(-6 - 4)$
$|A| = 3(-1) + 2(8) + 3(-10)$
$|A| = -3 + 16 - 30 = -17$.
Since $|A| = -17 \neq 0$, a unique solution exists.
Cofactors:
$A_{11} = \begin{vmatrix} 1 & -1 \\ -3 & 2 \end{vmatrix} = 2-3 = -1$
$A_{12} = -\begin{vmatrix} 2 & -1 \\ 4 & 2 \end{vmatrix} = -(4+4) = -8$
$A_{13} = \begin{vmatrix} 2 & 1 \\ 4 & -3 \end{vmatrix} = -6-4 = -10$
$A_{21} = -\begin{vmatrix} -2 & 3 \\ -3 & 2 \end{vmatrix} = -(-4+9) = -5$
$A_{22} = \begin{vmatrix} 3 & 3 \\ 4 & 2 \end{vmatrix} = 6-12 = -6$
$A_{23} = -\begin{vmatrix} 3 & -2 \\ 4 & -3 \end{vmatrix} = -(-9+8) = 1$
$A_{31} = \begin{vmatrix} -2 & 3 \\ 1 & -1 \end{vmatrix} = 2-3 = -1$
$A_{32} = -\begin{vmatrix} 3 & 3 \\ 2 & -1 \end{vmatrix} = -(-3-6) = 9$
$A_{33} = \begin{vmatrix} 3 & -2 \\ 2 & 1 \end{vmatrix} = 3+4 = 7$
Cofactor matrix $C = \begin{bmatrix} -1 & -8 & -10 \\ -5 & -6 & 1 \\ -1 & 9 & 7 \end{bmatrix}$.
$\text{adj } A = C^T = \begin{bmatrix} -1 & -5 & -1 \\ -8 & -6 & 9 \\ -10 & 1 & 7 \end{bmatrix}$.
$A^{-1} = \frac{1}{|A|} \text{adj } A = \frac{1}{-17} \begin{bmatrix} -1 & -5 & -1 \\ -8 & -6 & 9 \\ -10 & 1 & 7 \end{bmatrix}$.
$X = \frac{1}{-17} \begin{bmatrix} -1 & -5 & -1 \\ -8 & -6 & 9 \\ -10 & 1 & 7 \end{bmatrix} \begin{bmatrix} 8 \\ 1 \\ 4 \end{bmatrix}$
$X = \frac{1}{-17} \begin{bmatrix} (-1)(8) + (-5)(1) + (-1)(4) \\ (-8)(8) + (-6)(1) + (9)(4) \\ (-10)(8) + (1)(1) + (7)(4) \end{bmatrix}$
$X = \frac{1}{-17} \begin{bmatrix} -8 - 5 - 4 \\ -64 - 6 + 36 \\ -80 + 1 + 28 \end{bmatrix}$
$X = \frac{1}{-17} \begin{bmatrix} -17 \\ -34 \\ -51 \end{bmatrix}$
$X = \begin{bmatrix} \frac{-17}{-17} \\ \frac{-34}{-17} \\ \frac{-51}{-17} \end{bmatrix} = \begin{bmatrix} 1 \\ 2 \\ 3 \end{bmatrix}$.
Final Answer: So, $x = 1, y = 2, z = 3$.