Careers360 Logo
NCERT Class 12 Maths Chapter 3 Notes, Matrices Class 12 Chapter 3 Notes

NCERT Class 12 Maths Chapter 3 Notes, Matrices Class 12 Chapter 3 Notes

Edited By Komal Miglani | Updated on Jul 09, 2025 09:41 AM IST

Do you know how to solve a complex system of equations? How do search engines like Google list the websites one by one? Or, how is the congested traffic flow managed in busy streets? The answers to all these questions can be found in Matrices, a powerful mathematical tool that can be used to solve complex systems of equations, also manage and manipulate data efficiently. From NCERT Class 12 Maths, the chapter Matrices, contains the Definition of a Matrix, Order of a Matrix, Types of Matrices, Operations on Matrices, Transpose of a Matrix, etc. Understanding these concepts will enable the students to solve matrix-related problems easily and also enhance their problem-solving ability in real-world applications.

This Story also Contains
  1. NCERT Notes for Class 12 Chapter 3 Matrices: Free PDF Download
  2. NCERT Notes for Class 12 Chapter 3 Matrices:
  3. Matrices: Previous Year Question and Answer
  4. NCERT Class 12 Notes Chapter Wise

This article on NCERT notes Class 12 Maths Chapter 3 Matrices offers well-structured NCERT Notes to help the students grasp the concepts of Matrices easily. Students who want to revise the key topics of Matrices quickly will find this article very useful. It will also boost the exam preparation of the students by many folds. These NCERT Class 12 Maths Notes are made by the Subject Matter Experts according to the latest CBSE syllabus, ensuring that students can grasp the basic concepts effectively. NCERT solutions for class 12 maths and NCERT solutions for other subjects and classes can be downloaded from the NCERT Solutions.

NCERT Notes for Class 12 Chapter 3 Matrices: Free PDF Download

Use the link below to download the PDF version of Matrices NCERT Notes for free. After that, you can view the PDF anytime you desire without internet access. It is very useful for revision and last-minute studies.

Download PDF

NCERT Notes for Class 12 Chapter 3 Matrices:

Matrices are powerful mathematical tools used to simplify the process of solving systems of linear equations and have many other applications far beyond mathematics. They are mostly used in fields of computer science, physics, economics, cryptography, and even social sciences for data analysis, data transformations, and modelling.

Matrix:

A rectangular arrangement of objects (numbers or symbols, or any other objects) is called a matrix (plural: matrices).
Examples:

1. [243546]
2. [24i+3543i75]

Order of a Matrix:

Rows and Columns:
The horizontal objects denote a row, and the vertical ones denote a column.
E.g., in the first matrix above, elements 2, 4 and -3 lie in the first row and 5, 4 and 6 in the second row.
Also, 2, 5 lie in the first column, 4,4 in the second column, and -3 and 6 in the third column.

Order of a matrix:
A matrix of order m × n (read as m by n matrix) means that the matrix has m rows and n columns.
E.g., the first matrix has order 2 x 3.
The second matrix has order 3 x 2.
The third matrix has order 4 x 1.

Representation of a m×n matrix:
[a11a12a1na21a22a2nam1am2amn]
This representation can be represented in a more compact form as [aij]m×n
Where aij represents the element of ith row and jth column and i = 1,2,...,m; j = 1,2,...,n.
For example, to locate the entry in matrix A identified as aij, we look for the entry in row i, column j. In matrix A, shown below, the entry in row 2, column 3 is a23.
A=[a11a12a13a21a22a23a31a32a33]
Note: A matrix is only a representation of the symbol, number, or object. It does not have any value. Usually, a matrix is denoted by capital letters.

Types of Matrices

Row Matrix (Row vector) :
A matrix that has only one row.
A=[a11,a12,a1n]

Column Matrix (Column vector) :
A matrix that has only one column.
A=[a11a21...am1]

Zero or Null Matrix :
A matrix whose all entries are zero.
A=[000000]

Square Matrix :
In a square matrix, the number of rows is equal to the number of columns.
A=[580350121]

Diagonal matrix:
A square matrix is said to be a diagonal matrix if all its elements except the diagonal elements are zero.
So, a matrix A=[aij]m×n is a diagonal matrix if aij=0, whenever ij and m=n.
E.g
[a11000a22000a33]
A diagonal matrix of order n x n having diagonal elements as d1, d2, d3 ………, dn is denoted by diag[d1,d2,d3,dn]
For example:
A=[6007]B=[200090003]
So, we can write
A=diag[6,7] and B=diag[2,9,3]

Scalar matrix:
A diagonal matrix whose all diagonal elements are equal is called a scalar matrix.
A=[3003]B=[300030003]
For a square matrix A=[aij]n×n to be scalar matrix
aij={0,ijc,i=j
Where c is not equal to 0

Unit or Identity Matrix:
A diagonal matrix of order n whose all diagonal elements are equal to one is called an identity matrix of order n. It is represented as I.
So, a square matrix A=[aij]n×n is Identity matrix if

aij={0,ij1,i=j
For example,
I3=[100010001]

Equality of Matrices:

Matrices A and B are equal if '
(i) The order of matrix A is equal to the order of matrix B.
(ii) aij=bij for each pair

Operations on Matrices

In this part, we will learn about operations on matrices, namely, the addition of matrices, the multiplication of a matrix by a scalar, the difference and multiplication of matrices

Addition of Matrices:

If matrices A and B are of the same order, then the addition of matrices A and B is given by
A + B = [aij + bij]

Properties:
(a) Addition of matrices is commutative: i.e. A + B = B + A
(b) Matrix addition is associative : (A + B) + C = A + (B + C)

Additive inverse: Let two matrices A and B be such that A + B = O = B + A, then B is called the additive inverse of A.

Multiplication of a Matrix by a Scalar:

If A and B are two matrices of the same order and 'k' is a scalar, then k(A + B) = kA + kB.
If p and q are two scalars and 'A' is a matrix, then (p+q )A = pA + qA
If p and q are two scalars and 'A' is a matrix, then (pq )A = p(qA) = q(pA)

Multiplication of Matrices:

Let A be a matrix of order m x n and B be a matrix of order p x q, then the matrix multiplication AB is possible if and only if n = p. The multiplication of AB is given by

(AB)ij=r=1nairbrj

Properties of Matrix Multiplication:

(i) Matrix multiplication is not commutative: i.e. ABBA

( ii ) Matrix Multiplication Is Associative: If A, B & C are conformable for the product AB & BC, then (AB) C = A(BC)

( ii ) Matrix Multiplication Is Distributivity : A(B+C)=A B+A C and (A+B) C=A C+B C

Transpose of a Matrix:

Let A=[aij]be any matrix of order m x n. Then transpose of matrix A i.e. AT or A=[aji]

Properties of transpose:

  • (A+B)T=AT+BT

  • (AB)T=BTAT

  • (AT)T=A

  • (kA)T=kATwhere 'k' is a scaler

Orthogonal Matrix:

A square matrix is said to be an orthogonal matrix if
AAT=I

Symmetric and Skew-Symmetric Matrices:

A square matrix A=[aij] is said to be a symmetric matrix if aij=aji for each element in the matrix

A square matrix A=[aij] is said to be a skew-symmetric matrix if aij=aji for each element in the matrix

Properties of symmetric & skew-symmetric matrices:

  1. Matrix A is symmetric if AT=A

  2. Matrix A is skew-symmetric if AT=A

  3. The sum of two symmetric matrices is a symmetric matrix, and the sum of two skew-symmetric matrices is a skew-symmetric matrix.

  4. If A & B are symmetric matrices, then AB + BA is a symmetric matrix and AB – BA is a skew-symmetric matrix.

JEE Main Highest Scoring Chapters & Topics
Just Study 40% Syllabus and Score upto 100%
Download EBook

Elementary operations of a matrix:

The following elementary operations are allowed on a matrix.

  • RiRj or CiCj

  • RikRi or CikCi

  • RiRj+kRi or CiCi+kCj

Inverse of a Matrix:

If A and B are two square matrices such that AB=BA=I, then B is the inverse matrix of A and is denoted by A–1, and A is the inverse of B.

Note:

  • It is necessary that matrices A and B should be square matrices of the same order to be invertible.
  • If B is the inverse of A, then A is also the inverse of B.

Matrices: Previous Year Question and Answer

Given below are some previous year question answers of various examinations from the NCERT class 12 chapter 3, Matrices:

Question 1: If [x+y3y3xx+3]=[94x+yx+6y], then (xy)= ?

Solution:
[x+y3y3xx+3]=[94x+yx+6y]
Equating matrix elements gives:
x+y=9(1)
3y=4x+y2y=4xy=2x(2)
3x=x+62x=6x=3(3)
x+3=y(4)
From (3), x=3.
Putting the value of x=3 in (2)
y=2(3)=6
Now, xy=36
xy=3
Hence, the correct answer is 3.

Question 2: Let A be a matrix of order m×n and B be a matrix such that ATB and BAT are defined. Then, the order of B is:

Solution:
Order of matrix A=m×n
Let order of matrix B be K×P
Order of matrix BT=P×K
If ABT is defined then the order of ABT is m×K if n=P
If BTA is defined then order of BTA is P×n when K=m
Now, order of BT=P×K
Order of B=K×P
=m×n..[K=m,P=n]
Hence, the correct answer is m×n.

Question 3: If A is a square matrix of order 3 such that det(A)=9, then det(9A1) is equal to:

Solution:
Given det(A)=9 for a 3×3 matrix A.
Using determinant properties:
det(kA)=kndet(A)
det(A1)=1det(A)
det(9A1)=93det(A1)
=931det(A)
=9319
=92
Hence, the correct answer is 92.

NCERT Class 12 Notes Chapter Wise

All the links of chapter-wise notes for NCERT class 12 maths are given below:

Subject-Wise NCERT Exemplar Solutions

Subject-Wise NCERT Solutions

NCERT Books and Syllabus

Frequently Asked Questions (FAQs)

1. What is the Transpose of a Matrix?

Let A = [a_{ij}]be any matrix of order m x n then we can get the transpose of matrix A by interchanging its rows with columns. i.e. AT or A' = [a_{ji}].

2. What are the main topics covered in NCERT Class 12 Maths Chapter 3 Matrices?

NCERT Class 12 Maths Chapter 3 Matrices includes many important topics such as: types of matrices (row, column, square, diagonal, scalar, identity, zero), matrix operations (addition, multiplication, scalar multiplication), transpose of a matrix, symmetric & skew-symmetric matrices, elementary row/column operations, and inverse of matrices.

3. Is NCERT Class 12 Maths Chapter 3 Matrices important for board and competitive exams?

Yes, NCERT Class 12 Maths Chapter 3 Matrices is very important for board and competitive exams. Questions about invertibility, transpose, and operations on matrices are frequently asked in the board exam, as well as many competitive exams.

4. What is the inverse of a matrix?

If A and B are two square matrices such that AB = BA = I, then B is the inverse matrix of A and is denoted by A–1, and A is the inverse of B. It is necessary that matrices A and B should be square matrices of the same order to be invertible.

5. What are the Symmetric and Skew-Symmetric Matrices?

 A square matrix A = [aij] is said to be a symmetric matrix if aij = aji for each element in the matrix.
A square matrix A = [aij] is said to be a skew-symmetric matrix if aij = –aji for each element in the matrix.

Articles

Upcoming School Exams

View All School Exams

A block of mass 0.50 kg is moving with a speed of 2.00 ms-1 on a smooth surface. It strikes another mass of 1.00 kg and then they move together as a single body. The energy loss during the collision is

Option 1)

0.34\; J

Option 2)

0.16\; J

Option 3)

1.00\; J

Option 4)

0.67\; J

A person trying to lose weight by burning fat lifts a mass of 10 kg upto a height of 1 m 1000 times.  Assume that the potential energy lost each time he lowers the mass is dissipated.  How much fat will he use up considering the work done only when the weight is lifted up ?  Fat supplies 3.8×107 J of energy per kg which is converted to mechanical energy with a 20% efficiency rate.  Take g = 9.8 ms−2 :

Option 1)

2.45×10−3 kg

Option 2)

 6.45×10−3 kg

Option 3)

 9.89×10−3 kg

Option 4)

12.89×10−3 kg

 

An athlete in the olympic games covers a distance of 100 m in 10 s. His kinetic energy can be estimated to be in the range

Option 1)

2,000 \; J - 5,000\; J

Option 2)

200 \, \, J - 500 \, \, J

Option 3)

2\times 10^{5}J-3\times 10^{5}J

Option 4)

20,000 \, \, J - 50,000 \, \, J

A particle is projected at 600   to the horizontal with a kinetic energy K. The kinetic energy at the highest point

Option 1)

K/2\,

Option 2)

\; K\;

Option 3)

zero\;

Option 4)

K/4

In the reaction,

2Al_{(s)}+6HCL_{(aq)}\rightarrow 2Al^{3+}\, _{(aq)}+6Cl^{-}\, _{(aq)}+3H_{2(g)}

Option 1)

11.2\, L\, H_{2(g)}  at STP  is produced for every mole HCL_{(aq)}  consumed

Option 2)

6L\, HCl_{(aq)}  is consumed for ever 3L\, H_{2(g)}      produced

Option 3)

33.6 L\, H_{2(g)} is produced regardless of temperature and pressure for every mole Al that reacts

Option 4)

67.2\, L\, H_{2(g)} at STP is produced for every mole Al that reacts .

How many moles of magnesium phosphate, Mg_{3}(PO_{4})_{2} will contain 0.25 mole of oxygen atoms?

Option 1)

0.02

Option 2)

3.125 × 10-2

Option 3)

1.25 × 10-2

Option 4)

2.5 × 10-2

If we consider that 1/6, in place of 1/12, mass of carbon atom is taken to be the relative atomic mass unit, the mass of one mole of a substance will

Option 1)

decrease twice

Option 2)

increase two fold

Option 3)

remain unchanged

Option 4)

be a function of the molecular mass of the substance.

With increase of temperature, which of these changes?

Option 1)

Molality

Option 2)

Weight fraction of solute

Option 3)

Fraction of solute present in water

Option 4)

Mole fraction.

Number of atoms in 558.5 gram Fe (at. wt.of Fe = 55.85 g mol-1) is

Option 1)

twice that in 60 g carbon

Option 2)

6.023 × 1022

Option 3)

half that in 8 g He

Option 4)

558.5 × 6.023 × 1023

A pulley of radius 2 m is rotated about its axis by a force F = (20t - 5t2) newton (where t is measured in seconds) applied tangentially. If the moment of inertia of the pulley about its axis of rotation is 10 kg m2 , the number of rotations made by the pulley before its direction of motion if reversed, is

Option 1)

less than 3

Option 2)

more than 3 but less than 6

Option 3)

more than 6 but less than 9

Option 4)

more than 9

Back to top