|
Class 12 • Mathematics • Chapter 3 MatricesRectangular arrays of numbers, and a tidy algebra for handling many quantities at once.
|
|
Chapter Roadmap What a Matrix Is • Types of Matrices • Addition and Scalars • Multiplication • Transpose • Symmetric and Inverse • Key Results • Applications |
| 1 |
Why Matrices Matter |
A matrix is a rectangular arrangement of numbers in rows and columns. It lets us hold a whole table of information, such as the marks of a class across several subjects, as a single object and then add, scale and combine such tables with neat rules. This compact bookkeeping is why matrices sit at the heart of computer graphics, economics, statistics and engineering.
In this chapter you will learn how to describe a matrix by its order, recognise the special types, and carry out the operations of addition, scalar multiplication and the all-important matrix multiplication, whose row-by-column rule is unlike ordinary multiplication. You will also meet the transpose, the symmetric and skew-symmetric matrices, and the idea of an inverse matrix that undoes another.
A matrix of order m × n has m rows and n columns. You may add matrices only when they have the same order, and you may multiply A by B only when the number of columns of A equals the number of rows of B. Matrix multiplication is not commutative: AB and BA are usually different.
|
| 2 |
Key Terms You Must Know |
| Term | Meaning | Example |
| Matrix | A rectangular array of numbers in rows and columns. | [1, 2; 3, 4] |
| Order | The size m × n: m rows by n columns. | [1, 2, 3; 4, 5, 6] is 2 × 3 |
| Element aᵢⱼ | The entry in row i and column j. | a₂₁ is row 2, column 1 |
| Square matrix | Same number of rows and columns. | a 2 × 2 or 3 × 3 matrix |
| Identity matrix I | 1s on the diagonal, 0s elsewhere. | [1, 0; 0, 1] |
| Transpose A′ | Rows and columns swapped. | [1, 2; 3, 4]′ = [1, 3; 2, 4] |
| Inverse A⁻¹ | A matrix with A A⁻¹ = I. | undoes the action of A |
| 3 |
Core Concepts, Step by Step |
1. What a Matrix IsA matrix is a rectangular array of numbers enclosed in brackets. Its order is written m × n, where m is the number of rows and n the number of columns, so a matrix with 2 rows and 3 columns has order 2 × 3 and holds 6 elements in all. The entry in row i and column j is written aᵢⱼ. The figure below shows a 2 × 3 matrix with its rows and columns labelled.
|
|
A 2 × 3 matrix: 2 rows, 3 columns, 6 elements
|
2. Types of MatricesSeveral shapes have special names. A row matrix has one row and a column matrix one column. A square matrix has as many rows as columns. A diagonal matrix is square with zeros off the main diagonal; if those diagonal entries are all equal it is a scalar matrix, and if they are all 1 it is the identity matrix I. The zero matrix has every entry 0. Two matrices are equal when they have the same order and identical corresponding entries.
|
|
The common types of matrices
|
3. Addition and Scalar MultiplicationTwo matrices of the same order are added by adding corresponding entries, and subtracted in the same way. To multiply a matrix by a number k (a scalar), simply multiply every entry by k. These operations behave just like ordinary arithmetic: addition is commutative and associative, and scalar multiplication distributes over addition. If the orders do not match, addition is simply not defined.
|
4. Matrix MultiplicationThe product AB is defined only when the number of columns of A equals the number of rows of B. Each entry of AB is found by taking a row of A and a column of B, multiplying matching entries and adding the results. The order of the product is (rows of A) × (columns of B). Crucially, matrix multiplication is not commutative: AB and BA are usually different, and one may even be undefined while the other exists. It is, however, associative and distributive over addition.
|
5. The TransposeThe transpose of a matrix A, written A′ (or Aᵀ), is obtained by turning its rows into columns. So the first row of A becomes the first column of A′, and a matrix of order m × n becomes n × m. Two neat rules follow: the transpose of a transpose gives back the original, (A′)′ = A, and the transpose of a product reverses the order, (AB)′ = B′A′.
|
6. Symmetric, Skew-Symmetric and InverseA square matrix is symmetric if A′ = A, so it is a mirror image across the main diagonal, and skew-symmetric if A′ = −A, which forces every diagonal entry to be 0. A square matrix A is invertible if there is a matrix A⁻¹ with A A⁻¹ = A⁻¹ A = I; this inverse, when it exists, is unique and can be found using elementary row operations. The inverse is what lets us ‘divide’ in matrix algebra and solve matrix equations.
|
| 4 |
Key Results & Proofs |
Three results capture the behaviour that makes matrices different from ordinary numbers.
Statement. In general AB is not equal to BA. Proof A single example is enough to show the two orders can differ.
Because of this, matrix algebra keeps careful track of left and right; you cannot freely swap factors. |
||||||||||||||||
Statement. Every diagonal entry of a skew-symmetric matrix is 0. Proof Compare a diagonal entry of A′ with the same entry of −A.
So a skew-symmetric matrix such as [0, 2; −2, 0] always has zeros down its main diagonal. |
||||||||||||||||
Statement. Any square matrix A can be written as A = P + Q, where P is symmetric and Q is skew-symmetric. Proof Build the symmetric and skew-symmetric parts directly from A and its transpose.
This split is unique and is a favourite board-exam result. |
|||||||||||||||||
| 5 |
Worked Examples |
Question: State the order of the matrix [1, 2, 3; 4, 5, 6]. ▶ Show full workingCount the rows and the columns.
Answer: The order is 2 × 3. |
||||||||
Question: If A = [1, 2; 3, 4] and B = [5, 6; 7, 8], find A + B. ▶ Show full workingAdd corresponding entries.
Answer: A + B = [6, 8; 10, 12]. |
Question: For A = [1, 2; 3, 4], find 3A. ▶ Show full workingMultiply every entry by 3.
Answer: 3A = [3, 6; 9, 12]. |
Question: With A and B as above, find A − B. ▶ Show full workingSubtract corresponding entries.
Answer: A − B = [−4, −4; −4, −4]. |
Question: Multiply A = [1, 2; 3, 4] and B = [5, 6; 7, 8] to find AB. ▶ Show full workingUse the row-by-column rule for each entry.
Answer: AB = [19, 22; 43, 50]. |
Question: For the same A and B, find BA and confirm AB is not equal to BA. ▶ Show full workingMultiply in the reverse order.
Answer: BA = [23, 34; 31, 46], which differs from AB, so AB is not equal to BA. |
Question: Find the transpose of A = [1, 2, 3; 4, 5, 6]. ▶ Show full workingTurn each row into a column.
Answer: A′ = [1, 4; 2, 5; 3, 6]. |
|||||||||
Question: Is A = [1, 2; 2, 3] symmetric? ▶ Show full workingCheck whether A′ equals A.
Answer: Yes, A is symmetric. |
|||||||||
Question: Is A = [0, 2; −2, 0] skew-symmetric? ▶ Show full workingCheck whether A′ equals −A.
Answer: Yes, A is skew-symmetric. |
|||||||||||||
Question: Find x and y if [x + y, 2; 5, x − y] = [6, 2; 5, 2]. ▶ Show full workingEqual matrices have equal corresponding entries.
Answer: x = 4 and y = 2. |
||||||||||||||||
Question: Verify that A = [2, 0; 0, 3] and B = [1/2, 0; 0, 1/3] are inverses. ▶ Show full workingShow that AB equals the identity matrix.
Answer: AB = I, so A and B are inverses of each other. |
Question: Express A = [1, 2; 3, 4] as the sum of a symmetric and a skew-symmetric matrix. ▶ Show full workingUse P = ½(A + A′) and Q = ½(A − A′).
Answer: A = [1, 2.5; 2.5, 4] + [0, −0.5; 0.5, 0]. |
|||||||||||||||||
| 6 |
Where You Meet This in Real Life |
|
Computer graphics Every rotation, scaling and movement of an image on a screen is carried out by multiplying coordinate matrices. |
|
Economics and business Input-output tables, cost and production data, and Markov models of market share are all stored and combined as matrices. |
|
Networks Connections in a transport map, a social network or the internet are recorded in an adjacency matrix that can then be analysed. |
|
Cryptography Messages are encoded and decoded by multiplying by a matrix and its inverse, a direct use of the ideas in this chapter. |
|
Engineering and statistics Systems of many equations, and large data tables, are handled compactly using matrix operations. |
| 7 |
Practice Sets A to D |
|
Practice Set A – Basics |
|
A1. State the order of the matrix [1; 2; 3]. ▶ Reveal full workingCount rows and columns.
Answer: 3 × 1. |
|||||||
|
A2. If A = [1, 0; 0, 1] and B = [2, 3; 4, 5], find A + B. ▶ Reveal full workingAdd corresponding entries.
Answer: [3, 3; 4, 6]. |
|
A3. For A = [1, −1; 2, 3], find 2A. ▶ Reveal full workingDouble every entry.
Answer: [2, −2; 4, 6]. |
|
A4. Find the transpose of [1, 2; 3, 4]. ▶ Reveal full workingSwap rows and columns.
Answer: [1, 3; 2, 4]. |
|
Practice Set B – Conceptual |
|
B1. When can two matrices be added? ▶ Reveal full workingThink about their sizes.
Answer: When they have the same order. |
||||
|
B2. When is the product AB defined? ▶ Reveal full workingCompare columns of A with rows of B.
Answer: When columns of A equal rows of B. |
||||
|
B3. Is matrix multiplication commutative? ▶ Reveal full workingRecall the key warning of this chapter.
Answer: No, matrix multiplication is not commutative. |
||||
|
B4. What is a scalar matrix? ▶ Reveal full workingA special diagonal matrix.
Answer: A diagonal matrix with all diagonal entries equal. |
||||
|
Practice Set C – Application / Numerical |
|
C1. Find AB for A = [1, 2; 0, 1] and B = [1, 0; 2, 1]. ▶ Reveal full workingUse the row-by-column rule.
Answer: [5, 2; 2, 1]. |
|
C2. Is [1, −1; 1, 1] symmetric? ▶ Reveal full workingCompare A′ with A.
Answer: No, it is not symmetric. |
||||||||
|
C3. Find a and b if [1, a; b, 2] is symmetric. ▶ Reveal full workingSymmetry needs the (1,2) and (2,1) entries to be equal.
Answer: a = b (any value, with a and b equal). |
||||||||
|
C4. Find AB for A = [2, 1] and B = [3; 4]. ▶ Reveal full workingA is 1 × 2 and B is 2 × 1, so AB is 1 × 1.
Answer: [10]. |
|
Practice Set D – HOTS / Multi-step |
|
D1. If A = [1, 2; 3, 4], show that A + A′ is symmetric. ▶ Reveal full workingCompute A + A′ and compare with its transpose.
Answer: A + A′ = [2, 5; 5, 8], which equals its own transpose. |
||||||||
|
D2. Show that the diagonal entries of a skew-symmetric matrix are 0. ▶ Reveal full workingUse A′ = −A on a diagonal entry.
Answer: Every diagonal entry must be 0. |
||||||||
|
D3. Express A = [2, 3; 1, 4] as the sum of a symmetric and a skew-symmetric matrix. ▶ Reveal full workingUse P = ½(A + A′) and Q = ½(A − A′).
Answer: A = [2, 2; 2, 4] + [0, 1; −1, 0]. |
|
D4. Verify that A = [1, 0; 0, 5] and B = [1, 0; 0, 1/5] are inverses. ▶ Reveal full workingShow AB = I.
Answer: AB = I, so they are inverses. |
||||||||
|
Chapter Summary Everything in One Glance
|
||||||||||||||||||
| 8 |
Are You Exam-Ready? |
|
8-Point Exam Quick-Check
|
||||||||||||||||||||||||||||||||
|
School Revise Virtual Lab Practice the concepts in this chapter with interactive simulations and visual tools.
|
|
Class 12 Mathematics Chapter 3: Matrices, Complete Notes and Practice These free Class 12 Maths Chapter 3 Matrices notes follow the latest NCERT 2026-27 syllabus and give complete, exam-ready coverage for board exams and competitive foundations. Includes worked examples, step-by-step proofs and graded practice, free on SchoolRevise.com. |