NCERT Solutions Class 12 Mathematics Chapter 3 Matrices
NCERT Solutions Class 12 Mathematics Chapter 3 Matrices offers step-by-step, syllabus-aligned solutions designed to help students master matrix algebra for CBSE Class 12 Board Examinations, CUET, and JEE Main. Matrices form the bedrock of linear algebra and higher mathematics, playing a pivotal role in solving systems of linear equations, computer graphics, cryptography, and engineering data analysis. In this detailed guide, you will find concept breakdowns, verified NCERT solutions step by step, important theorems with proofs, exam weightage insights, and common pitfalls to avoid.
Chapter Overview
Chapter 3 of the Class 12 NCERT Mathematics textbook introduces matrices as rectangular arrangements of numbers or functions. This chapter equips students with algebraic tools to handle multidimensional data arrays systematically. The chapter consists of four primary exercises and a miscellaneous exercise covering:
- Matrix Basics & Types (Exercise 3.1): Definition, order of a matrix (m × n), types of matrices (row, column, zero, square, diagonal, scalar, and identity matrix), and equality of matrices.
- Matrix Operations (Exercise 3.2): Addition, scalar multiplication, negative of a matrix, matrix multiplication, and properties (associative, commutative, distributive laws).
- Transpose of a Matrix (Exercise 3.3): Properties of transpose, symmetric matrices (AT = A), skew-symmetric matrices (AT = −A), and expressing any square matrix as the sum of a symmetric and a skew-symmetric matrix.
- Invertibility & Matrix Equations (Exercise 3.4 & Miscellaneous): Invertible matrices, uniqueness of inverse, reversal law (AB)−1 = B−1A−1, and proofs using the Principle of Mathematical Induction (PMI).
In the CBSE Class 12 Mathematics curriculum, the unit Algebra (comprising Chapter 3 Matrices and Chapter 4 Determinants) carries an aggregate weightage of 10 marks in the board theory paper. Matrices contribute typically 4 to 6 marks through 1-mark MCQs, 2-mark or 3-mark short answer questions, and parts of 4-mark case-based questions.
Exercise Solutions: Step-by-Step Whiteboard Solutions
Below are exhaustive, step-by-step solutions for representative and high-frequency questions across all exercises of NCERT Chapter 3 Matrices.
Exercise 3.1: Matrix Order, Element Construction, and Equality
Question 1: Construction of a Matrix
Question: Construct a 3 × 2 matrix A = [aij] whose elements are given by aij = ½ |−3i + j|.
- Given: Order of matrix A is 3 × 2 (3 rows, 2 columns); formula aij = ½ |−3i + j|.
- To Find: The complete matrix A = [[a11, a12], [a21, a22], [a31, a32]].
- Step-by-Step Solution:
- For Row 1 (i = 1):
a11 = ½ |−3(1) + 1| = ½ |−2| = 1
a12 = ½ |−3(1) + 2| = ½ |−1| = ½ - For Row 2 (i = 2):
a21 = ½ |−3(2) + 1| = ½ |−5| = 5/2
a22 = ½ |−3(2) + 2| = ½ |−4| = 2 - For Row 3 (i = 3):
a31 = ½ |−3(3) + 1| = ½ |−8| = 4
a32 = ½ |−3(3) + 2| = ½ |−7| = 7/2
- For Row 1 (i = 1):
- Final Answer: A = [[1, 1/2], [5/2, 2], [4, 7/2]]
Question 2: Equality of Matrices
Question: Find the values of x, y, z, and w if [[x − y, 2x + z], [2x − y, 3z + w]] = [[−1, 5], [0, 13]].
- Given: Two 2 × 2 matrices are equal.
- Formula / Principle: Two matrices are equal if and only if their corresponding elements are equal (aij = bij).
- Step-by-Step Solution:
- Equate corresponding elements to form a system of linear equations:
(1) x − y = −1
(2) 2x − y = 0
(3) 2x + z = 5
(4) 3z + w = 13 - From equation (2): y = 2x. Substitute into (1): x − 2x = −1 ⇒ −x = −1 ⇒ x = 1.
- Substitute x = 1 into y = 2x: y = 2.
- Substitute x = 1 into equation (3): 2(1) + z = 5 ⇒ z = 3.
- Substitute z = 3 into equation (4): 3(3) + w = 13 ⇒ 9 + w = 13 ⇒ w = 4.
- Equate corresponding elements to form a system of linear equations:
- Final Answer: x = 1, y = 2, z = 3, w = 4
Exercise 3.2: Matrix Operations and Matrix Polynomials
Question 3: Matrix Multiplication and Polynomial Verification
Question: If A = [[3, 1], [−1, 2]], show that A2 − 5A + 7I = O. Hence, find A−1.
- Given: A = [[3, 1], [−1, 2]], I = [[1, 0], [0, 1]], O = [[0, 0], [0, 0]].
- To Prove: A2 − 5A + 7I = O, and calculate A−1.
- Step-by-Step Solution:
- Compute A2 = A × A:
A2 = [[(3)(3) + (1)(−1), (3)(1) + (1)(2)], [(−1)(3) + (2)(−1), (−1)(1) + (2)(2)]]
A2 = [[9 − 1, 3 + 2], [−3 − 2, −1 + 4]] = [[8, 5], [−5, 3]] - Compute −5A and 7I:
5A = [[15, 5], [−5, 10]]
7I = [[7, 0], [0, 7]] - Substitute into A2 − 5A + 7I:
[[8, 5], [−5, 3]] − [[15, 5], [−5, 10]] + [[7, 0], [0, 7]]
= [[8 − 15 + 7, 5 − 5 + 0], [−5 − (−5) + 0, 3 − 10 + 7]]
= [[0, 0], [0, 0]] = O. (Hence Proved) - Finding A−1 using the matrix equation:
A2 − 5A + 7I = O
Post-multiply throughout by A−1 (since det(A) = 6 − (−1) = 7 ≠ 0):
(A × A)A−1 − 5AA−1 + 7IA−1 = O × A−1
A(AA−1) − 5I + 7A−1 = O
AI − 5I + 7A−1 = O ⇒ 7A−1 = 5I − A
7A−1 = 5[[1, 0], [0, 1]] − [[3, 1], [−1, 2]] = [[5 − 3, 0 − 1], [0 − (−1), 5 − 2]] = [[2, −1], [1, 3]]
A−1 = (1/7) [[2, −1], [1, 3]]
- Compute A2 = A × A:
- Final Answer: A−1 = [[2/7, −1/7], [1/7, 3/7]]
Exercise 3.3: Transpose, Symmetric, and Skew-Symmetric Matrices
Question 4: Expressing a Matrix as the Sum of Symmetric and Skew-Symmetric Matrices
Question: Express the matrix B = [[2, −2, −4], [−1, 3, 4], [1, −2, −3]] as the sum of a symmetric and a skew-symmetric matrix.
- Formula / Theorem: Any square matrix B can be uniquely expressed as B = P + Q, where P = ½(B + BT) is symmetric and Q = ½(B − BT) is skew-symmetric.
- Step-by-Step Solution:
- Find the transpose BT by swapping rows and columns:
BT = [[2, −1, 1], [−2, 3, −2], [−4, 4, −3]] - Compute symmetric component P = ½(B + BT):
B + BT = [[2+2, −2−1, −4+1], [−1−2, 3+3, 4−2], [1−4, −2+4, −3−3]] = [[4, −3, −3], [−3, 6, 2], [−3, 2, −6]]
P = [[2, −3/2, −3/2], [−3/2, 3, 1], [−3/2, 1, −3]]
Notice that PT = P, so P is symmetric. - Compute skew-symmetric component Q = ½(B − BT):
B − BT = [[2−2, −2−(−1), −4−1], [−1−(−2), 3−3, 4−(−2)], [1−(−4), −2−4, −3−(−3)]] = [[0, −1, −5], [1, 0, 6], [5, −6, 0]]
Q = [[0, −1/2, −5/2], [1/2, 0, 3], [5/2, −3, 0]]
Notice that QT = −Q and diagonal elements are zero, so Q is skew-symmetric. - Verification: P + Q = [[2+0, −3/2−1/2, −3/2−5/2], [−3/2+1/2, 3+0, 1+3], [−3/2+5/2, 1−3, −3+0]] = [[2, −2, −4], [−1, 3, 4], [1, −2, −3]] = B.
- Find the transpose BT by swapping rows and columns:
- Final Answer: B = [[2, −3/2, −3/2], [−3/2, 3, 1], [−3/2, 1, −3]] + [[0, −1/2, −5/2], [1/2, 0, 3], [5/2, −3, 0]]
Miscellaneous Exercise: Principle of Mathematical Induction (PMI) on Matrices
Question 5: Proof by Induction
Question: If A = [[cos θ, sin θ], [−sin θ, cos θ]], prove that An = [[cos nθ, sin nθ], [−sin nθ, cos nθ]] for all n ∈ N.
- Given: A = [[cos θ, sin θ], [−sin θ, cos θ]].
- To Prove: P(n): An = [[cos nθ, sin nθ], [−sin nθ, cos nθ]] ∀ n ∈ N.
- Step-by-Step Solution:
- Base Step (n = 1):
P(1): A1 = [[cos(1θ), sin(1θ)], [−sin(1θ), cos(1θ)]] = A. Thus, P(1) is true. - Inductive Hypothesis:
Assume P(k) is true for some positive integer k:
Ak = [[cos kθ, sin kθ], [−sin kθ, cos kθ]]. - Inductive Step (To prove for n = k + 1):
Ak+1 = Ak × A
= [[cos kθ, sin kθ], [−sin kθ, cos kθ]] × [[cos θ, sin θ], [−sin θ, cos θ]]
= [[cos kθ cos θ − sin kθ sin θ, cos kθ sin θ + sin kθ cos θ], [−sin kθ cos θ − cos kθ sin θ, −sin kθ sin θ + cos kθ cos θ]]
Using trigonometric identities cos(A + B) = cos A cos B − sin A sin B and sin(A + B) = sin A cos B + cos A sin B:
= [[cos(k + 1)θ, sin(k + 1)θ], [−sin(k + 1)θ, cos(k + 1)θ]] = P(k + 1). - Conclusion: Since P(1) is true and P(k) ⇒ P(k + 1), by the Principle of Mathematical Induction, P(n) is true for all n ∈ N.
- Base Step (n = 1):
- Final Answer: Proved by Principle of Mathematical Induction for all n ∈ N.
Important Formulas and Theorems
Mastering NCERT Mathematics Class 12 solutions requires quick recall of core matrix algebra laws and definitions:
| Concept / Property | Mathematical Formulation | Key Condition / Note |
|---|---|---|
| Matrix Equality | aij = bij ∀ i, j | Orders of both matrices must be identical. |
| Matrix Multiplication | cik = ∑ aij bjk | Defined only when columns of 1st = rows of 2nd: (m × n) × (n × p) → (m × p). |
| Non-Commutativity | AB ≠ BA (in general) | Matrix multiplication is associative: A(BC) = (AB)C and distributive. |
| Transpose Reversal Law | (AB)T = BTAT | Also holds for inverses: (AB)−1 = B−1A−1. |
| Symmetric Matrix | AT = A | aij = aji. Must be a square matrix. |
| Skew-Symmetric Matrix | AT = −A | aij = −aji; diagonal elements aii = 0 always. |
| Orthogonal / Unique Decomposition | A = ½(A + AT) + ½(A − AT) | Every square matrix is uniquely decomposable into symmetric and skew-symmetric parts. |
Common Mistakes and Tips
When solving CBSE NCERT solutions for Matrices, students frequently lose marks due to avoidable procedural slips:
- Assuming Matrix Multiplication is Commutative: Never write AB = BA or expand (A + B)2 as A2 + 2AB + B2. The correct algebraic expansion is (A + B)2 = A2 + AB + BA + B2.
- Forgetting the Zero Diagonal in Skew-Symmetric Matrices: For any skew-symmetric matrix M, mii = −mii ⇒ 2mii = 0 ⇒ mii = 0. If non-zero values appear on the principal diagonal, the matrix cannot be skew-symmetric.
- Order Compatibility in Multiplication: Before multiplying matrices A and B, always write down their orders. If A is 2 × 3 and B is 2 × 3, the product AB is undefined.
- Scalar Multiplication vs Determinant Scaling: In matrix scalar multiplication, k multiplies every single element of the matrix. (In determinants, k multiplies only a single row or column).
- Forgetting the Transpose Reversal Order: Always apply the reversal rule: (AB)T = BTAT and (ABC)T = CTBTAT.
Board Exam Relevance and Marking Scheme
Matrices is one of the highest-scoring chapters in the CBSE Class 12 Mathematics curriculum. The questions from this chapter are direct, systematic, and follow predictable patterns:
- 1-Mark MCQs / Assertion-Reason: Order of product matrix, values of variables equating two matrices, skew-symmetric matrix diagonal properties, or calculation of k in equations like A2 = kA − 2I.
- 2-Mark & 3-Mark Short Questions: Proving matrix equations (A2 − 4A − 5I = O), finding A−1 using matrix polynomials, or expressing a matrix as the sum of symmetric and skew-symmetric components.
- 4-Mark / 5-Mark Questions & Case Studies: Real-world cost matrices, production models, or induction-based proofs for An.
More NCERT Solutions and Practice
To score full marks in your CBSE Class 12 Mathematics board exams, consistent practice with chapter-wise tests and real past board question formats is essential. Access verified chapter tests, step-by-step NCERT Solutions Mathematics chapter wise, and personalized AI-powered mock question papers at qptool.theorify.in.