By the end of this chapter you'll be able to…

  • 1State the order of a matrix and identify square, diagonal, scalar, identity, and zero matrices
  • 2Add, scalar-multiply, and multiply matrices, respecting the dimension rules each operation requires
  • 3Prove standard matrix identities (like F(x)F(y)=F(x+y) or A^2-5A+6I=0 for a specific A) using direct computation
  • 4Find the transpose of a matrix and apply (A')'=A and (AB)'=B'A' in proofs
  • 5Determine whether a matrix is symmetric or skew-symmetric, and decompose any square matrix into a symmetric part plus a skew-symmetric part
  • 6State and use the uniqueness of a matrix inverse and the identity (AB)^{-1}=B^{-1}A^{-1}, without needing to compute an actual inverse
💡
Why this chapter matters
Matrix notation and multiplication are the language the rest of the syllabus keeps borrowing — Determinants needs matrix structure to define minors and cofactors, and later applications like solving linear systems both lean on operations defined here first.

Matrices

1. Check this before you revise anything

Exercise 3.4 has exactly one question in the current book — not the eighteen-question elementary-operations drill older material remembers. Section 3.7 (Invertible Matrices) now contains only a definition, a proof that an inverse is unique when it exists, and a proof that . It never shows how to compute an inverse.

There is no "elementary row/column operations" section anywhere in this chapter any more — confirmed by reading straight through from the definition of invertibility to the Miscellaneous Examples, with nothing about row-reducing in between.

The old stub taught that removed method as a full section, framing "finding the inverse using elementary operations" as one of the chapter's main skills. It isn't taught here at all in the current edition — computing an actual inverse is Chapter 4's job, via the adjoint of a matrix. This chapter only covers existence and uniqueness of the inverse, never its computation.

The old stub also collapsed all four real exercises into one invented 30-question group. The book actually has Exercise 3.1 (10 questions, notation and order), Exercise 3.2 (22 questions, the arithmetic — addition, scalar multiplication, multiplication), Exercise 3.3 (12 questions, transpose and symmetric/skew-symmetric matrices), Exercise 3.4 (1 question), and a Miscellaneous Exercise (11 questions) — 56 questions in total.


2. What this chapter covers

Textbook sectionTopic
3.2–3.3Matrix notation, order, types (square, diagonal, scalar, identity, zero), equality
3.4Addition, scalar multiplication, and multiplication of matrices
3.5–3.6Transpose; symmetric and skew-symmetric matrices
3.7Invertible matrices — existence and uniqueness only, not computation

3. Matrix arithmetic

A matrix of order has rows and columns. Two matrices can only be added if they share the same order — add entry by entry. Multiplication is stricter still: is only defined when the inner dimensions match, and the result is .

Matrix multiplication is not commutative in general, and one side may not even be defined when the other is. It's worth internalising with a concrete pair rather than just the rule: for and , while — visibly different matrices, not just different-looking arithmetic.

Types of matrices (3.3). The named types recur constantly in later proofs, so they are worth fixing early.

TypeCondition
Row matrixExactly one row, order
Column matrixExactly one column, order
Square matrix
Diagonal matrixSquare, with every non-diagonal entry zero
Scalar matrixDiagonal, with all diagonal entries equal
Identity matrix Scalar, with every diagonal entry
Zero matrix Every entry zero

Equality of matrices (3.3.1). Two matrices are equal only when they have the same order and every corresponding pair of entries agrees. This is what turns a matrix equation into a system of simultaneous scalar equations, which is how most Exercise 3.1 and 3.2 questions are solved.

How the product is actually formed (3.4.5). The entry in row , column of is the dot product of row of with column of :

This is why the inner dimensions must agree — the row and the column being paired must have the same length.

Properties that do hold (3.4.3, 3.4.4, 3.4.6). Addition is commutative and associative, with as identity and as inverse. Scalar multiplication distributes both ways: and .

Multiplication, despite failing commutativity, is associative, , and distributive over addition, . The identity satisfies .

Two failures that have no scalar analogue. First, does not imply or — a product of two non-zero matrices can be the zero matrix. Second, cancellation fails: with does not give .

Both catch students who carry scalar habits into matrix algebra, and both appear as explicit exercise questions.


4. Transpose, symmetric, and skew-symmetric matrices

The transpose (or ) swaps rows and columns. Two properties carry the most weight in proofs: , and — the order reverses.

A square matrix is symmetric if , and skew-symmetric if (which forces every diagonal entry to be zero, since only when ).

Every square matrix splits into a symmetric part and a skew-symmetric part:

Further transpose properties (3.5.1). Alongside and , the book records for a scalar , and . Only the product rule reverses the order; addition and scalar multiplication pass through unchanged.

The reversal in extends to longer products: .

This is not just an identity to memorise — it's the standard technique for an entire class of exercise questions ("express this matrix as the sum of a symmetric and a skew-symmetric matrix"), and it works because (unchanged under transpose, hence symmetric), while (negated under transpose, hence skew-symmetric).

The decomposition is unique, which is why the question always has exactly one correct answer. Note also that for a skew-symmetric matrix the zero diagonal is forced, not optional — so a skew-symmetric matrix of odd order always has determinant zero, a fact Chapter 4 uses.

A worked check. For , the transpose is . Then , which is symmetric, and , which is skew-symmetric with a zero diagonal as required. Adding them returns .


5. Invertible matrices

A square matrix of order is invertible if there exists a square matrix of the same order with ; is called . Two facts the book proves formally:

  • The inverse, if it exists, is unique. (If and were both inverses of , then .)
  • , for invertible of the same order.

Only square matrices can be invertible — for and to both be defined and equal, and must be square matrices of the same order.

What this chapter deliberately does not do. It proves the inverse is unique and states how inverses interact with products, but it never computes one. There is no elementary-row-operations method and no adjoint formula here. Actually finding belongs to Chapter 4, which builds it from the determinant and the adjoint.

So a question in this chapter asking you to "show is the inverse of " is answered by multiplying the two matrices and checking both products equal — not by computing an inverse from scratch.

The transpose of an inverse satisfies , so transposing and inverting can be done in either order.


Summary

  • Addition needs matching order; multiplication needs matching inner dimensions; multiplication is not commutative.
  • ; (order reverses).
  • Symmetric: . Skew-symmetric: , forcing a zero diagonal.
  • Every square matrix decomposes as , the symmetric part plus the skew-symmetric part.
  • An inverse, when it exists, is unique; .
  • Equality of matrices requires the same order and every corresponding entry equal — this is what converts a matrix equation into simultaneous scalar equations.
  • is row of dotted with column of , which is why the inner dimensions must agree.
  • Matrix multiplication is associative and distributive, and — it fails only commutativity.
  • does not imply or , and with does not imply ; both scalar habits break here.
  • and pass through unchanged; only the product reverses, .
  • The symmetric/skew-symmetric decomposition is unique, and a skew-symmetric matrix always has a zero diagonal.
  • — transposing and inverting commute.
  • This chapter proves an inverse is unique but never computes one — no elementary-operations method appears here. Computing an actual inverse (via the adjoint) is Chapter 4's content, not this chapter's.

Key formulas & results

Everything you need to memorise, in one card. Screenshot this for revision.

Order and equality
A matrix of order m x n has m rows and n columns; two matrices are equal only if they have the same order and every corresponding entry matches
The starting point for every 'find x, y, z' question in Exercise 3.1
Addition and scalar multiplication
(A+B)_ij = a_ij + b_ij, defined only when A and B have the same order; (kA)_ij = k.a_ij
Element-by-element; commutative and associative like ordinary addition
Matrix multiplication
For A of order m x n and B of order n x p, (AB)_ij = sum over k of a_ik b_kj, giving a matrix of order m x p
Only defined when the inner dimensions match; AB is generally not equal to BA
Transpose properties
(A')' = A; (kA)' = kA'; (A+B)' = A'+B'; (AB)' = B'A'
The reversed order in (AB)'=B'A' is the one students most often get backwards
Symmetric / skew-symmetric decomposition
A = (1/2)(A+A') + (1/2)(A-A'), symmetric part plus skew-symmetric part
Works for any square matrix A; the standard technique for the whole 'express as sum of symmetric and skew-symmetric' question type
Inverse: existence and uniqueness
A is invertible if there exists B with AB=BA=I; if such a B exists it is unique, and (AB)^{-1}=B^{-1}A^{-1}
This chapter proves these facts but never computes an inverse — that is Chapter 4's job, via the adjoint
Equality of matrices
Two matrices are equal only when they have the same order AND every corresponding pair of entries agrees
This is what turns one matrix equation into a system of simultaneous scalar equations
Entry of a product
(AB)_ij = sum over k of a_ik . b_kj, that is row i of A dotted with column j of B
This is why the inner dimensions must agree — the row and column being paired must have equal length
Named types of matrices
Row (1 x n), column (m x 1), square (m = n), diagonal (off-diagonal entries zero), scalar (diagonal with equal entries), identity (scalar with entries 1), zero
Each is a special case of the one before it, which is how the definitions are best remembered
Properties multiplication does keep
Associative: (AB)C = A(BC). Distributive: A(B+C) = AB + AC. Identity: AI = IA = A
Multiplication fails only commutativity; every other familiar law survives
Zero product does not force a zero factor
AB = O does NOT imply A = O or B = O
A product of two non-zero matrices can be the zero matrix — this has no scalar analogue
Cancellation fails
AB = AC with A not equal to O does NOT imply B = C
Cancelling a matrix from both sides is invalid unless that matrix is known to be invertible
Further transpose properties
(kA)' = kA' and (A+B)' = A' + B'; for products the order reverses, (ABC)' = C'B'A'
Scalar multiplication and addition pass through unchanged; only products reverse
Transpose of an inverse
(A^-1)' = (A')^-1
Transposing and inverting can be performed in either order
Uniqueness of the symmetric decomposition
The split A = (1/2)(A+A') + (1/2)(A-A') is unique
Which is why the exercise question has exactly one correct answer; a skew-symmetric matrix of odd order also has determinant zero
⚠️

Common mistakes & fixes

These are the exact errors that cost students marks in board exams. Read them once, save yourself the trouble.

WATCH OUT
Assuming AB=BA for matrices, the way multiplication of ordinary numbers commutes
Matrix multiplication is not commutative in general — verify with a concrete pair before assuming equality, and note AB may be defined even when BA is not.
WATCH OUT
Writing (AB)' = A'B' instead of B'A'
Transposing a product reverses the order: (AB)' = B'A'. This is the single most commonly reversed identity in this chapter.
WATCH OUT
Trying to add or multiply matrices without checking the order/dimension rule first
Addition needs identical order on both matrices; multiplication needs the number of columns of the first to equal the number of rows of the second. Check this before doing any arithmetic.
WATCH OUT
Believing a skew-symmetric matrix can have nonzero diagonal entries
A'=-A forces every diagonal entry a_ii to satisfy a_ii=-a_ii, which only holds when a_ii=0 — every skew-symmetric matrix has an all-zero diagonal.
WATCH OUT
Trying to compute a matrix inverse using elementary row/column operations in this chapter
That method is not taught anywhere in the current edition of this chapter. This chapter only proves that an inverse is unique when it exists; actually computing one is done in Chapter 4 using the adjoint of a matrix.
WATCH OUT
Concluding from AB = O that A = O or B = O
Matrices have zero divisors. Two non-zero matrices can multiply to the zero matrix, so nothing follows about the individual factors.
WATCH OUT
Cancelling A from AB = AC to conclude B = C
Cancellation is invalid for matrices unless A is known to be invertible. Without that, B and C can genuinely differ.
WATCH OUT
Reversing the order in (A+B)' the way you do for products
Only the product reverses. Addition and scalar multiplication pass straight through: (A+B)' = A' + B' and (kA)' = kA'.
WATCH OUT
Equating two matrices without first checking they have the same order
Equality requires matching order before any entry comparison. Two matrices of different shapes are never equal, whatever their entries.

Practice problems

Work through this chapter's problems as a readiness check — reveal each solution, mark yourself honestly, and get your gap report at the end.

Readiness check

Are you exam-ready for Matrices?

8 problems from this chapter. Try each one, reveal the worked solution, mark yourself honestly — get your gap report at the end.

8 questions~6 min worth ~10 marks in CBSE exams

5-minute revision

The whole chapter, distilled. Read this the night before the exam.

  • A matrix of order m x n has m rows and n columns; equality requires matching order and every entry equal
  • Addition needs matching order; multiplication needs the first matrix's column count to equal the second's row count
  • Matrix multiplication is not commutative: AB is generally not equal to BA, and one may be defined when the other isn't
  • (A')'=A; (AB)'=B'A' — the order reverses when transposing a product
  • Symmetric: A'=A. Skew-symmetric: A'=-A, which forces an all-zero diagonal
  • Every square matrix A splits as (1/2)(A+A') + (1/2)(A-A'), the symmetric part plus the skew-symmetric part
  • A matrix inverse, if it exists, is unique; (AB)^{-1}=B^{-1}A^{-1}
  • This chapter never computes an inverse — no elementary row/column operations appear here; that method is not part of the current syllabus at all, and computing an inverse via the adjoint is Chapter 4's content

CBSE marks blueprint

Where the marks come from in this chapter — so you can plan your prep.

Typical chapter weightage: Unit II: 10 marks, shared with Determinants

Question typeMarks eachTypical countWhat it tests
Matrix Notation and Order1-31Order and elements of a matrix, constructing a matrix from a formula for a_ij, equality of matrices
Matrix Arithmetic and Proof-Style Identities4-61Addition, scalar multiplication, multiplication, verifying identities like A^2-5A+6I=0 or F(x)F(y)=F(x+y)
Transpose and Symmetric/Skew-Symmetric Decomposition3-51Transpose properties, proving a matrix symmetric or skew-symmetric, decomposing into symmetric plus skew-symmetric parts
Invertible Matrices and Uniqueness of Inverse1-31Reasoning about the definition of an inverse, uniqueness of the inverse, and (AB)^{-1}=B^{-1}A^{-1} — never computing an actual inverse
Prep strategy
  • Practice matrix multiplication until the row-times-column pattern is automatic — nearly every question in this chapter eventually needs at least one product computed correctly
  • For 'express as sum of symmetric and skew-symmetric' questions, the formula A=(1/2)(A+A')+(1/2)(A-A') is the entire method — just compute A' first, then the two halves
  • Do not spend time trying to compute a matrix inverse here — this chapter only tests existence/uniqueness reasoning about inverses, not the computation itself

Where this shows up in the real world

This chapter isn't just an exam topic — it lives in the world around you.

Computer graphics transformations

Rotating, scaling, and translating objects on screen are all matrix multiplications applied to coordinate vectors — the non-commutativity taught here is exactly why rotating-then-scaling an image gives a different result from scaling-then-rotating.

Network and adjacency data

A social network's connections can be stored as a matrix where entry (i,j) marks a link between person i and person j; a symmetric matrix means the connection is mutual (like Facebook friends), while an asymmetric one models one-directional links (like Twitter follows).

Economic input-output models

Matrix multiplication combines production quantities with unit prices to compute total revenue and cost across multiple markets, exactly the structure behind this chapter's bookshop and trust-fund word problems.

Exam strategy

Battle-tested tips from teachers and toppers for this chapter.

1
Before attempting any matrix arithmetic question, write down the order of every matrix involved — most 'not defined' traps are caught at this stage
2
For 'verify (AB)'=B'A'' style questions, compute both sides completely and independently rather than assuming the identity — examiners award marks for the working, not just the matching answer
3
For symmetric/skew-symmetric decomposition questions, always compute A' first as a separate labelled step before applying the (1/2)(A+A') and (1/2)(A-A') formulas
4
Do not attempt to 'find the inverse' of a matrix in this chapter's questions — if a question needs an inverse, it either only needs existence/uniqueness reasoning, or belongs to Chapter 4

Going beyond the textbook

For olympiad aspirants and curious learners — topics that build on this chapter.

STRETCH
Elementary row/column operations to compute a matrix inverse (row-reducing [A|I] to [I|A^{-1}]) are a standard technique in general linear algebra, even though the current NCERT syllabus has dropped them from this chapter
STRETCH
The trace of a matrix (sum of diagonal entries) is always zero for a skew-symmetric matrix, and trace(AB)=trace(BA) even though AB is generally not equal to BA — a useful invariant beyond this chapter's scope
STRETCH
Idempotent matrices (A^2=A) and nilpotent matrices (A^k=0 for some k) generalise the specific matrix-equation questions in this chapter's exercises into their own named categories in linear algebra
🚀

JEE Main & Advanced practice

Competitive-level problems on this chapter, above the board pattern. Try each one on paper before opening the solution.

JEE MainMatrix equation reduced to a scalar identityUsing A^2=A to collapse a binomial expansion

If is a square matrix such that , find the value of .

Stuck? Show the approach

Expand the square directly, then use to replace every appearance of .

Show the full solution

(using ) . So .

Answer: I (the identity matrix)
The trap

Forgetting to substitute inside the expansion and instead treating as an unknown separate quantity — the whole point of the given condition is that it collapses every power of above the first back down to itself.

JEE MainSymmetric/skew-symmetric decomposition applied to a parametrised matrixGeneral decomposition with unknown entries

If , find the skew-symmetric part of , and verify its trace is zero.

Stuck? Show the approach

Compute , then apply directly.

Show the full solution

. . So the skew-symmetric part is . Its trace (sum of diagonal entries) is .

Answer: [[0,-1],[1,0]], with trace 0
The trap

Computing (the symmetric part) by mistake when the question specifically asks for the skew-symmetric part — always double check which half of the decomposition is being requested.

JEE MainProving a transpose-of-product identity for three matricesRepeated application of (AB)'=B'A'

If , , are matrices of compatible order, prove that .

Stuck? Show the approach

Treat as and apply the reversed-order transpose rule twice.

Show the full solution

(applying the rule to the outer product) (applying the rule again to ) .

Answer: Identity proved: (ABC)' = C'B'A', by applying (XY)'=Y'X' twice
The trap

Applying the rule only once and stopping at instead of expanding itself — the reversal has to happen at every level of the product, not just the outermost one.

JEE MainExistence of an inverse without computing itReasoning purely from the definition and uniqueness theorem

If is a square matrix with , show that is its own inverse.

Stuck? Show the approach

Compare the given condition directly against the definition of an inverse.

Show the full solution

The definition of an inverse requires for some matrix . Since means , taking satisfies the definition exactly: . So is invertible with .

Answer: A is its own inverse, i.e. A^{-1}=A
The trap

Trying to 'solve for' the inverse using elementary operations or an adjoint — this question only needs the definition of invertibility applied directly, which is exactly the level this chapter (as opposed to Chapter 4) tests.

JEE AdvancedGeneral symmetric/skew-symmetric argument for a matrix powerProof combining transpose rules with induction-style reasoning

If is a skew-symmetric matrix, show that is symmetric.

Stuck? Show the approach

Use and substitute the skew-symmetric condition .

Show the full solution

(applying the transpose-of-product rule with both factors equal to ) (substituting , and the two negatives cancel). Since , is symmetric.

Answer: Proved: (A^2)' = A^2, so A^2 is symmetric whenever A is skew-symmetric
The trap

Assuming automatically without justifying it from with — the reversed order happens to not matter here only because both factors are the same matrix .

Where else this chapter is tested

CBSE board isn't the only one — other exams test this chapter too.

CBSE Class 12 BoardHigh
JEE MainMedium
JEE AdvancedLow

Questions students ask

The real ones — pulled from the Q&A community and tutor sessions.

You don't — this chapter only proves that an inverse is unique when it exists and derives (AB)^{-1}=B^{-1}A^{-1}. Actually computing an inverse is done in the next chapter (Determinants), using the adjoint of a matrix.

Because (AB)_ij and (BA)_ij combine the rows and columns of A and B in a different order — there's no algebraic reason for these sums to match in general. Even when both products are defined and the same size, plugging in almost any concrete pair of matrices shows AB and BA differ.

Compute A' and compare directly: if A'=A it's symmetric, if A'=-A it's skew-symmetric. A quick shortcut for skew-symmetric: check the diagonal is all zero first — if it isn't, the matrix can't be skew-symmetric, and you've saved yourself the full transpose comparison.

Only square matrices — the decomposition A=(1/2)(A+A')+(1/2)(A-A') requires A and A' to be addable, which needs A to be square (a non-square matrix and its transpose have different, incompatible orders).
Verified by the tuition.in editorial team
Last reviewed on 17 August 2026. Written and reviewed by subject-matter experts — read about our process.
Editorial process →
Header Logo