Follow Us
Select Medium / माध्यम चुनें:
Eng (English) Hindi (हिन्दी)
CBSE • Class XII • Mathematics • Ch 3
Estimated Time: 45 Mins
Study Progress: In Progress

Matrices

In Class 12 Mathematics, "Matrices" provides an authoritative, curriculum-verified master resource aligned with the 2026–27 NCERT syllabus.

🔢 Have You Ever Wondered?

How do 3D graphic cards transform millions of polygon vertices in real-time video games at 120 frames per second, or how does Google's PageRank rank b...

How do 3D graphic cards transform millions of polygon vertices in real-time video games at 120 frames per second, or how does Google's PageRank rank billions of web pages? Matrix multiplication is the computational engine of linear algebra.

Why This Chapter Matters

In Class 12 Mathematics, "Matrices" provides an authoritative, curriculum-verified master resource aligned with the 2026–27 NCERT syllabus.

Before You Begin (Prerequisites)

  • Systems of linear equations from Class 10.
  • Rectangular arrays of numbers.
  • Vector dot products.

What You Will Learn (Core Objectives)

  • Define Matrix and its Order ($m \times n$); identify types (Row, Column, Square, Diagonal, Scalar, Identity, Zero).
  • Perform Matrix Operations: Addition, Scalar multiplication, and Matrix Multiplication ($AB$).
  • Understand properties of Matrix Multiplication (non-commutative: $AB \ne BA$ in general).
  • Find Transpose ($A^T$) and classify Symmetric ($A^T = A$) and Skew-Symmetric ($A^T = -A$) matrices.
  • Express any square matrix uniquely as the sum of a symmetric and a skew-symmetric matrix: $A = \frac{1}{2}(A + A^T) + \frac{1}{2}(A - A^T)$.

Chapter Roadmap & Progression

1 1. Matrix Multiplication Rules
2 2. Transpose & Symmetry
3 3. Unique Decomposition Theorem

Complete Concept Guide (100% Curriculum Coverage)

1. Matrix Multiplication Rules

Two matrices $A_{m \times n}$ and $B_{p \times q}$ can be multiplied if and only if inner dimensions match: $\mathbf{n = p}$. The product $C = AB$ has order $\mathbf{m \times q}$ with elements: $$\mathbf{c_{ij} = \sum_{k=1}^{n} a_{ik} b_{kj}}$$ Matrix multiplication is associative ($A(BC) = (AB)C$) and distributive, but strictly NON-COMMUTATIVE ($AB \ne BA$)!

2. Transpose & Symmetry

  • Transpose ($A^T$ or $A'$): Interchanging rows and columns ($(AB)^T = B^T A^T$).
  • Symmetric Matrix: $A^T = A$ (elements mirror across main diagonal: $a_{ij} = a_{ji}$).
  • Skew-Symmetric Matrix: $A^T = -A$ (diagonal elements are strictly ZERO: $a_{ii} = 0$, and $a_{ij} = -a_{ji}$).

3. Unique Decomposition Theorem

Every square matrix $A$ can be uniquely decomposed into: $$\mathbf{A = \frac{1}{2}(A + A^T) + \frac{1}{2}(A - A^T)}$$ where $\frac{1}{2}(A + A^T)$ is symmetric and $\frac{1}{2}(A - A^T)$ is skew-symmetric.

Visual Learning & Conceptual Map

Matrices Master Matrix

Conceptual framework, core mechanisms, and analytical relationships
Academic Architecture

1. Matrix Multiplication Rules • 2. Transpose & Symmetry

Chapter Summary & 10 Key Takeaways

Takeaway 1
Conformability Condition: Columns of first matrix must equal rows of second matrix.
Takeaway 2
Non-Commutativity: $AB \ne BA$ generally in matrix algebra.
Takeaway 3
Reversal Law: $(AB)^T = B^T A^T$ reversing multiplication order on transposition.
Takeaway 4
Skew-Symmetric Diagonals: Diagonal entries of skew-symmetric matrices are always strictly zero.
Takeaway 5
Decomposition Theorem: Universal splitting of any matrix into symmetric and skew-symmetric components.

Check Your Understanding (Diagnostic Practice Questions)

Diagnostic questions testing core conceptual clarity. Answers are hidden initially — solve each problem first, then click to reveal the step-by-step verified solution.

1
If $A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}$ and $B = \begin{bmatrix} 2 & 0 \\ 1 & 3 \end{bmatrix}$, find $AB$.
Reveal Answer & Explanation
Answer: $AB = \begin{bmatrix} 1(2)+2(1) & 1(0)+2(3) \\ 3(2)+4(1) & 3(0)+4(3) \end{bmatrix} = \begin{bmatrix} 2+2 & 0+6 \\ 6+4 & 0+12 \end{bmatrix} = \begin{bmatrix} 4 & 6 \\ 10 & 12 \end{bmatrix}$.
[[4, 6], [10, 12]].
2
Show that the diagonal elements of a skew-symmetric matrix are always zero.
Reveal Answer & Explanation
Answer: For a skew-symmetric matrix, $A^T = -A \implies a_{ji} = -a_{ij}$. For diagonal elements, $i = j \implies a_{ii} = -a_{ii} \implies 2a_{ii} = 0 \implies a_{ii} = 0$ for all $i$.
a_ii = -a_ii implies 2a_ii = 0; diagonal elements are 0.
3
State the Reversal Law for the transpose of a product of matrices.
Reveal Answer & Explanation
Answer: For any two conformable matrices $A$ and $B$, $(AB)^T = B^T A^T$.
(AB)^T = B^T A^T.
4
If matrix $A$ has order $3 \times 4$ and matrix $B$ has order $4 \times 2$, what is the order of matrix $AB$?
Reveal Answer & Explanation
Answer: The inner dimensions match (4=4). The resulting product matrix $AB$ has order $3 \times 2$.
Order 3 × 2.
5
Express $A = \begin{bmatrix} 3 & 5 \\ 1 & -1 \end{bmatrix}$ as the sum of a symmetric and a skew-symmetric matrix.
Reveal Answer & Explanation
Answer: $A^T = \begin{bmatrix} 3 & 1 \\ 5 & -1 \end{bmatrix}$. Symmetric $P = \frac{1}{2}(A + A^T) = \begin{bmatrix} 3 & 3 \\ 3 & -1 \end{bmatrix}$. Skew-symmetric $Q = \frac{1}{2}(A - A^T) = \begin{bmatrix} 0 & 2 \\ -2 & 0 \end{bmatrix}$. $A = P + Q$.
P = [[3, 3], [3, -1]] and Q = [[0, 2], [-2, 0]].
Finished Studying This Chapter?
READY TO PRACTICE?

Timed CBT Practice Tests (Exam Simulator)

Put your concepts to the test with official curriculum-aligned Foundation and Advanced practice tests. Get instant accuracy scores, time metrics, and step-by-step verified explanations.