India's #1 AI Tutorformula-sheet · Mathematics · Chapter 3
Class 12 Mathematics Chapter 3 Matrices — Formulas & Key Points
Matrices form the backbone of linear algebra in CBSE Class 12 Mathematics Chapter 3. From solving simultaneous equations to transformations in geometry, mastering matrix operations and properties is non-negotiable for board exam success. This formula sheet distills every NCERT definition, theorem and property into quick-reference tables and solved examples, ensuring you recall transpose laws, symmetry conditions and multiplication rules instantly during your exam.
Your child's private AI tutor — trained on NCERT.
3-day free trial · ₹1 to start · Cancel anytime.
Key takeaways
- ✓Matrix addition and subtraction are defined only when matrices have the same order m×n.
- ✓For matrix multiplication AB, the number of columns in A must equal the number of rows in B; the result has order (rows of A)×(columns of B).
- ✓Transpose operation flips rows into columns: (Aᵀ)ᵀ = A and (AB)ᵀ = BᵀAᵀ in reverse order.
- ✓A symmetric matrix satisfies A = Aᵀ and a skew-symmetric matrix satisfies A = −Aᵀ with all diagonal entries zero.
- ✓Any square matrix can be uniquely expressed as the sum of a symmetric and a skew-symmetric matrix: A = ½(A + Aᵀ) + ½(A − Aᵀ).
- ✓Order matters in multiplication: AB ≠ BA in general; matrix multiplication is not commutative but is associative.
- ✓Scalar multiplication k·A multiplies every element of matrix A by the scalar k, and distributes over addition.
Matrix Definitions and Notation
A matrix is a rectangular array of numbers arranged in rows and columns, enclosed in square or round brackets. If a matrix has m rows and n columns, its order is m×n. Each entry is denoted aᵢⱼ where i is the row index and j is the column index. A square matrix has m = n. The identity matrix I_n is a square matrix of order n with 1s on the main diagonal and 0s elsewhere. A zero matrix O has all entries zero. Understanding order and indexing is crucial because operations like addition require identical orders, while multiplication demands column-row compatibility. Notation is standardised across NCERT Class 12 Mathematics to avoid ambiguity in proofs and problem-solving.
- Order m×n means m rows and n columns; a 2×3 matrix has 2 rows, 3 columns.
- Element notation: aᵢⱼ is the entry in the iᵗʰ row and jᵗʰ column.
- Square matrix: m = n (e.g. 3×3, 4×4).
- Identity matrix I_n: diagonal entries = 1, off-diagonal = 0.
- Zero matrix O: all entries are zero, any order.
- Row matrix: 1×n order; column matrix: m×1 order.
Matrix Operations: Addition, Subtraction and Scalar Multiplication
Addition and subtraction of matrices are defined only when both matrices have the same order. The result is a matrix of the same order where each element is the sum (or difference) of corresponding elements. Scalar multiplication involves multiplying every element of a matrix by a constant k. These operations obey commutativity and associativity for addition and distributivity for scalar multiplication. The zero matrix acts as the additive identity, and for any matrix A there exists −A such that A + (−A) = O. Properties like k(A + B) = kA + kB and (k + m)A = kA + mA are frequently tested in CBSE Class 12 Mathematics board exams and form the foundation for more complex manipulations.
- A + B is defined ⟺ order of A = order of B; result has same order.
- Element-wise: (A + B)ᵢⱼ = aᵢⱼ + bᵢⱼ.
- Commutative: A + B = B + A.
- Associative: (A + B) + C = A + (B + C).
- Scalar multiplication: (kA)ᵢⱼ = k·aᵢⱼ.
- k(A + B) = kA + kB and (k + m)A = kA + mA.
Matrix Multiplication and Order Compatibility
Matrix multiplication AB is defined when the number of columns in A equals the number of rows in B. If A is m×p and B is p×n, then AB is m×n. The (i,j) entry of AB is the dot product of the iᵗʰ row of A and the jᵗʰ column of B: ∑ₖ₌₁ᵖ aᵢₖbₖⱼ. Matrix multiplication is not commutative (AB ≠ BA in general) but is associative: (AB)C = A(BC). The identity matrix I satisfies AI = IA = A. Distributive laws hold: A(B + C) = AB + AC and (A + B)C = AC + BC. Remembering 'columns of first must match rows of second' prevents order-mismatch errors. This operation underpins determinants, inverses and transformations in later NCERT chapters.
- AB defined ⟺ (columns of A) = (rows of B).
- Order: (m×p)(p×n) → (m×n).
- (AB)ᵢⱼ = ∑ₖ aᵢₖbₖⱼ.
- Not commutative: AB ≠ BA generally.
- Associative: (AB)C = A(BC).
- Identity: AI = IA = A for conformable I.
- Distributive: A(B+C) = AB + AC.
Transpose of a Matrix: Properties and Rules
The transpose of an m×n matrix A, denoted Aᵀ, is the n×m matrix obtained by interchanging rows and columns: (Aᵀ)ᵢⱼ = aⱼᵢ. Key properties include (Aᵀ)ᵀ = A, (A + B)ᵀ = Aᵀ + Bᵀ, (kA)ᵀ = k Aᵀ, and crucially (AB)ᵀ = BᵀAᵀ (order reversal). The transpose of the identity is itself: Iᵀ = I. These laws are extensively used in proving matrix identities and solving CBSE Class 12 Mathematics Chapter 3 problems. A common pitfall is forgetting to reverse order in (AB)ᵀ; students often write AᵀBᵀ instead of BᵀAᵀ, costing marks. NCERT Class 12 Mathematics emphasizes these properties through multiple exercises, so mastering them is essential.
- (Aᵀ)ᵀ = A (transpose of transpose is original).
- (A + B)ᵀ = Aᵀ + Bᵀ.
- (kA)ᵀ = k Aᵀ.
- (AB)ᵀ = BᵀAᵀ (reverse order!).
- If A is m×n, Aᵀ is n×m.
- Iᵀ = I.
Symmetric and Skew-Symmetric Matrices
A square matrix A is symmetric if A = Aᵀ; it is skew-symmetric if A = −Aᵀ. For symmetric matrices, aᵢⱼ = aⱼᵢ for all i,j. For skew-symmetric matrices, aᵢⱼ = −aⱼᵢ and every diagonal entry must be zero (because aᵢᵢ = −aᵢᵢ ⇒ aᵢᵢ = 0). Any square matrix can be uniquely written as the sum of a symmetric matrix P = ½(A + Aᵀ) and a skew-symmetric matrix Q = ½(A − Aᵀ), since A = P + Q. This decomposition is a favourite exam question in CBSE board papers. Recognising symmetry saves computation time in proofs and eigenvalue problems in higher classes. NCERT Class 12 Mathematics solutions stress verifying A = Aᵀ or A = −Aᵀ element-wise and using the decomposition formula reliably.
- Symmetric: A = Aᵀ ⟺ aᵢⱼ = aⱼᵢ for all i,j.
- Skew-symmetric: A = −Aᵀ ⟺ aᵢⱼ = −aⱼᵢ and aᵢᵢ = 0.
- Decomposition: A = ½(A + Aᵀ) + ½(A − Aᵀ) = P + Q, where P is symmetric and Q is skew-symmetric.
- Sum/difference of two symmetric matrices is symmetric.
- Sum/difference of two skew-symmetric matrices is skew-symmetric.
- All diagonal entries of a skew-symmetric matrix are zero.
Formula Summary Table
The table below consolidates every formula and property from CBSE Class 12 Mathematics Chapter 3 Matrices. Use this as a one-stop reference during revision. Each row states the property name, the exact formula or rule, and the context or constraint under which it applies. Memorising these reduces error rates in board exams, especially in proofs and multi-step multiplication problems. Cross-reference with NCERT Class 12 Mathematics textbook examples to see each formula in action. CBSETUTOR.ai offers 24×7 AI-tutor support where students can upload photo of any matrix problem and receive step-by-step solutions instantly, all for a flat ₹999/month across Classes 6–12 with a 3-day free trial to explore the platform risk-free before the boards.
- Equality: A = B ⟺ same order and aᵢⱼ = bᵢⱼ for all i,j.
- Addition: A + B defined ⟺ order(A) = order(B); (A+B)ᵢⱼ = aᵢⱼ + bᵢⱼ.
- Scalar: (kA)ᵢⱼ = k·aᵢⱼ.
- Multiplication: AB defined ⟺ cols(A)=rows(B); (AB)ᵢⱼ = ∑ₖ aᵢₖbₖⱼ.
- Transpose: (Aᵀ)ᵢⱼ = aⱼᵢ; (AB)ᵀ = BᵀAᵀ.
- Symmetric: A = Aᵀ; Skew-symmetric: A = −Aᵀ.
- Decomposition: A = ½(A+Aᵀ) + ½(A−Aᵀ).
Memory Tricks and Mnemonics
Remember transpose reversal with 'Transpose Flips The Order' (TFTO): (AB)ᵀ = BᵀAᵀ. For symmetric and skew-symmetric decomposition, use the mnemonic 'Plus for Symmetric, Minus for Skew' — P=½(A+Aᵀ) is symmetric, Q=½(A−Aᵀ) is skew-symmetric. Matrix multiplication compatibility: 'Columns First, Rows Second Match' ensures AB is defined only when cols(A)=rows(B). To avoid confusing addition with multiplication, chant 'Add Same Size, Multiply Column-Row' before starting a problem. Diagonal zero in skew-symmetric: 'Skew means aii must be zero always.' These mental hooks significantly reduce careless mistakes under exam pressure and reinforce NCERT Class 12 Mathematics Chapter 3 concepts during rapid-fire practice sessions before boards.
- TFTO: Transpose Flips The Order → (AB)ᵀ = BᵀAᵀ.
- Plus for Symmetric, Minus for Skew → decomposition formula.
- Add Same Size, Multiply Column-Row → operation compatibility.
- Skew diagonal zero → aᵢᵢ=0 always in skew-symmetric.
- Identity Unchanged → Iᵀ = I.
- Square only → symmetric/skew-symmetric apply to square matrices only.
Common Mistakes and How to Avoid Them
Students often write (AB)ᵀ = AᵀBᵀ instead of BᵀAᵀ — always reverse the order. Another frequent error is attempting to add matrices of different orders; check dimensions first. In skew-symmetric matrices, forgetting that diagonal entries must be zero leads to incorrect answers. Mixing up rows and columns when computing element (AB)ᵢⱼ — it is row i of A dotted with column j of B, not the other way around. Order in multiplication AB versus BA matters; do not assume commutativity. When decomposing into symmetric and skew-symmetric parts, ensure you use ½ in both formulas, not just one. Finally, misidentifying a matrix as square when m ≠ n means symmetric/skew-symmetric tests are invalid. Writing dimensions explicitly in rough work prevents these pitfalls during CBSE Class 12 Mathematics board exams and saves precious marks.
- Transpose order: (AB)ᵀ = BᵀAᵀ, NOT AᵀBᵀ.
- Addition: only same-order matrices; verify m×n matches.
- Skew-symmetric diagonal: all aᵢᵢ = 0; check before concluding.
- Multiplication element: (AB)ᵢⱼ = row i of A · column j of B.
- Non-commutative: AB ≠ BA; never swap without proof.
- Decomposition: use ½ in both P and Q formulas.
- Square check: symmetric/skew only if m = n.
Solved Mini-Examples Applying the Formulas
Example 1: Given A=[1 0; 0 1] and B=[2 3; 4 5], find AB and (AB)ᵀ. Solution: AB=[1·2+0·4 1·3+0·5; 0·2+1·4 0·3+1·5]=[2 3; 4 5]=B. Then (AB)ᵀ=Bᵀ=[2 4; 3 5]. Verify BᵀAᵀ: Aᵀ=A=[1 0;0 1], so BᵀAᵀ=[2 4;3 5]·[1 0;0 1]=[2 4;3 5], matching (AB)ᵀ. Example 2: Express A=[3 5; 1 2] as sum of symmetric and skew-symmetric. Compute Aᵀ=[3 1;5 2]. P=½(A+Aᵀ)=½([6 6;6 4])=[3 3;3 2]. Q=½(A−Aᵀ)=½([0 4;-4 0])=[0 2;-2 0]. Verify: P+Q=[3 3;3 2]+[0 2;-2 0]=[3 5;1 2]=A. Example 3: Is A=[0 -2;2 0] skew-symmetric? Check Aᵀ=[0 2;-2 0]=−A, and diagonal entries are both zero, so yes.
- Always write out intermediate matrices to avoid arithmetic slips.
- Check order compatibility before multiplying.
- Verify transpose properties by computing both sides independently.
- Use decomposition formula mechanically: calculate A+Aᵀ and A−Aᵀ, then halve.
- For skew-symmetric, confirm diagonal zero and off-diagonal sign flip.
- Cross-check final answer by adding P+Q or re-computing transpose.
One-Glance Last-Minute Revision Box
Order m×n: m rows, n columns. Add/Subtract: same order only. Multiply AB: cols(A)=rows(B); result is (rows A)×(cols B). Transpose: (Aᵀ)ᵢⱼ=aⱼᵢ; (AB)ᵀ=BᵀAᵀ; (Aᵀ)ᵀ=A. Symmetric: A=Aᵀ (aᵢⱼ=aⱼᵢ). Skew-symmetric: A=−Aᵀ (aᵢⱼ=−aⱼᵢ, aᵢᵢ=0). Decomposition: A=½(A+Aᵀ)+½(A−Aᵀ). Identity Iₙ: diagonal 1, else 0; AI=IA=A. Zero matrix O: all entries 0; A+O=A. Scalar kA: multiply every entry by k. Non-commutative: AB≠BA usually. Associative: (AB)C=A(BC). Distributive: A(B+C)=AB+AC. This box encapsulates NCERT Class 12 Mathematics Chapter 3 Matrices in under 100 words for a final scan 10 minutes before entering the exam hall.
- Order check first → prevents invalid operations.
- Transpose flips order in products.
- Symmetric = mirror across diagonal; skew = anti-mirror with zero diagonal.
- Decomposition splits any square matrix uniquely.
- Multiplication not commutative but associative.
- Identity and zero matrices are your best friends in simplification.
Important Notation and Conventions
Matrices are usually denoted by uppercase letters A, B, C, etc., while their elements use lowercase aᵢⱼ, bᵢⱼ. The order is written m×n, read 'm by n'. The identity matrix of order n is I or Iₙ. The transpose symbol is a superscript T: Aᵀ. Zero matrix is denoted O or 0ₘₓₙ when order needs clarity. Summation notation ∑ₖ is used for matrix multiplication element formulas. NCERT Class 12 Mathematics sticks to these conventions throughout; exam answers must follow them to avoid ambiguity. Subscript i runs over rows, j over columns. In proofs, stating 'Let A=[aᵢⱼ]ₘₓₙ' signals the matrix order and element notation upfront, earning method marks even if arithmetic errors occur later.
- Matrix: uppercase A, B, C; elements: lowercase aᵢⱼ, bᵢⱼ.
- Order: m×n (rows × columns).
- Identity: I or Iₙ.
- Transpose: Aᵀ.
- Zero matrix: O or 0ₘₓₙ.
- Summation: (AB)ᵢⱼ = ∑ₖ aᵢₖbₖⱼ.
Frequently asked questions
What is the order of a matrix and why does it matter?+
Order m×n means m rows and n columns. It determines which operations are allowed: addition requires identical orders, multiplication requires columns of the first to equal rows of the second. Mismatched orders make the operation undefined.
How do I remember the transpose rule (AB)ᵀ = BᵀAᵀ?+
Use the mnemonic 'Transpose Flips The Order' (TFTO). When you transpose a product, reverse the sequence of matrices and transpose each. This rule is essential for proofs in CBSE Class 12 Mathematics Chapter 3.
What is the difference between symmetric and skew-symmetric matrices?+
A symmetric matrix satisfies A = Aᵀ, so aᵢⱼ = aⱼᵢ. A skew-symmetric matrix satisfies A = −Aᵀ, so aᵢⱼ = −aⱼᵢ and all diagonal entries must be zero. Both definitions apply only to square matrices.
Can any square matrix be written as a sum of symmetric and skew-symmetric parts?+
Yes. Any square matrix A can be uniquely decomposed as A = P + Q where P = ½(A + Aᵀ) is symmetric and Q = ½(A − Aᵀ) is skew-symmetric. This formula appears frequently in NCERT Class 12 Mathematics solutions and board exams.
Why is matrix multiplication not commutative?+
Matrix multiplication is not commutative because the order of rows and columns matters in the dot-product definition. Even when both AB and BA are defined, their resulting elements typically differ. Only special pairs like A and I commute.
What are common mistakes to avoid in matrix operations?+
Common errors include adding matrices of different orders, forgetting to reverse order in (AB)ᵀ = BᵀAᵀ, assuming AB = BA, and overlooking that skew-symmetric matrices must have zero diagonals. Always verify order compatibility before starting.
How do I find the transpose of a product of three matrices?+
Apply the transpose rule successively: (ABC)ᵀ = ((AB)C)ᵀ = Cᵀ(AB)ᵀ = CᵀBᵀAᵀ. The order reverses completely. This extends to any number of matrices: reverse the sequence and transpose each individually.
Is the identity matrix symmetric or skew-symmetric?+
The identity matrix I is symmetric because Iᵀ = I, so I = Iᵀ. It cannot be skew-symmetric because skew-symmetric matrices have zero diagonals, but I has ones on the diagonal.
How can CBSETUTOR.ai help me master matrices before the board exam?+
CBSETUTOR.ai offers 24×7 AI tutoring where you upload a photo of any matrix problem and receive instant step-by-step solutions. It covers all NCERT Class 12 Mathematics chapters at ₹999/month for Classes 6–12, with a 3-day free trial to explore before your boards.
What should I revise in the last 10 minutes before the matrices exam?+
Scan the one-glance revision box: verify order rules, recall (AB)ᵀ = BᵀAᵀ, symmetric A = Aᵀ, skew A = −Aᵀ with zero diagonal, decomposition A = ½(A+Aᵀ)+½(A−Aᵀ), and practice one quick multiplication to warm up your calculation speed.
Related resources
Important Questions: CBSE Class 12 Mathematics Chapter 3 MatricesCBSE Class 12 Mathematics Chapter 3 Matrices Worksheet with AnswersCBSE Class 12 Mathematics Chapter 2 Inverse Trigonometric Functions Worksheet with AnswersImportant Questions: CBSE Class 12 Mathematics Chapter 2 Inverse Trigonometric FunctionsAI Tutor for Class 12: The Smart Alternative to TuitionAI Tutor for Class 12 Accountancy: Learn Faster with Instant HelpClass 9 Coordinate Geometry Chapter 3: Cartesian System & Plotting PointsClass 9 Mathematics Chapter 2 Polynomials — Formulas & Key Points
Keep learning — related guides
Class 12Mathematics
Class 12 Mathematics Chapter 13 Probability — Formulas & Key Points
Class 12Mathematics
CBSE Class 12 Mathematics Chapter 13 Probability Worksheet with Answers
Class 12Mathematics
Important Questions: CBSE Class 12 Mathematics Chapter 13 Probability
Class 12Mathematics
Important Questions: CBSE Class 12 Mathematics Chapter 12 Linear Programming
Class 12Mathematics
CBSE Class 12 Mathematics Chapter 12 Linear Programming Worksheet with Answers
Class 12Mathematics
Class 12 Mathematics Chapter 12 Linear Programming — Formulas & Key Points
Ready to give your Class 12 child the tutor that never sleeps?
CBSETUTOR.ai covers every chapter in the Class 12 NCERT syllabus — Maths, Science, Social Science, English, Hindi and more. 24×7. Patient. Unlimited. 3-day free trial.
Start your child's 3-day free trial →