Class 12 CBSE Mathematics – Chapter 3:
MATRICES
1. Definition of a Matrix
A matrix is a rectangular arrangement of numbers (real or complex) in rows and
columns.
Notation: A = [a_ij]_(m×n)
a_ij: Element in the i-th row and j-th column
Order: m × n (m = rows, n = columns)
2. Types of Matrices
Row Matrix: Only one row
Column Matrix: Only one column
Zero/Null Matrix: All elements are zero
Square Matrix: Rows = Columns (n × n)
Diagonal Matrix: Only diagonal elements are non-zero
Scalar Matrix: Diagonal elements are equal
Identity Matrix: Diagonal elements = 1
Symmetric Matrix: A = Aᵗ
Skew-Symmetric Matrix: Aᵗ = -A and diagonal elements are zero
3. Equality of Matrices
Two matrices are equal if:
- They have the same order
- Corresponding elements are equal
4. Operations on Matrices
Addition/Subtraction: Element-wise, only if matrices are of same order.
Scalar Multiplication: Multiply each element by a scalar.
Matrix Multiplication: Defined if the number of columns of A equals rows of B.
Formula: (AB)_ij = Σ a_ik * b_kj
5. Properties of Matrix Operations
Addition: Commutative, Associative, Additive Identity, Additive Inverse
Scalar Multiplication: Distributive over matrix addition and scalar addition
Matrix Multiplication: Associative, Distributive, Not commutative
6. Transpose of a Matrix
Transpose Aᵗ: Flip rows and columns
Properties:
(Aᵗ)ᵗ = A
(A + B)ᵗ = Aᵗ + Bᵗ
(kA)ᵗ = kAᵗ
(AB)ᵗ = BᵗAᵗ
7. Symmetric and Skew-Symmetric Matrices
Symmetric: A = Aᵗ
Skew-Symmetric: Aᵗ = -A, diagonal = 0
Every square matrix A can be written as:
A = 1/2 (A + Aᵗ) + 1/2 (A - Aᵗ)
→ First part is symmetric, second part is skew-symmetric
8. Invertible Matrix (2×2)
If A = [[a, b], [c, d]], and det(A) = ad - bc ≠ 0, then
A⁻¹ = (1 / (ad - bc)) * [[d, -b], [-c, a]]
Properties:
(AB)⁻¹ = B⁻¹A⁻¹
(Aᵗ)⁻¹ = (A⁻¹)ᵗ
9. Elementary Operations
Not in CBSE exams post-2022, but include:
- Row/Column swap
- Scaling row/column
- Adding one row to another
10. Application: Solving System of Linear Equations
Given AX = B, the solution is X = A⁻¹B
11. Important Exam Tips
- Memorize inverse formula for 2x2 matrices.
- Practice symmetric + skew-symmetric decomposition.
- Matrix multiplication is not commutative.
- Transpose and inverse properties are frequently asked.
- Practice compatibility of order in multiplication.