• NEET
      • Class 11th
      • Class 12th
      • Class 12th Plus
    • JEE
      • Class 11th
      • Class 12th
      • Class 12th Plus
    • Class 6-10
      • Class 6th
      • Class 7th
      • Class 8th
      • Class 9th
      • Class 10th
    • View All Options
      • Online Courses
      • Offline Courses
      • Distance Learning
      • Hindi Medium Courses
      • International Olympiad
    • NEET
      • Class 11th
      • Class 12th
      • Class 12th Plus
    • JEE (Main+Advanced)
      • Class 11th
      • Class 12th
      • Class 12th Plus
    • JEE Main
      • Class 11th
      • Class 12th
      • Class 12th Plus
  • NEW
    • JEE MAIN 2025
    • NEET
      • 2024
      • 2023
      • 2022
    • Class 6-10
    • JEE Main
      • Previous Year Papers
      • Sample Papers
      • Result
      • Analysis
      • Syllabus
      • Exam Date
    • JEE Advanced
      • Previous Year Papers
      • Sample Papers
      • Mock Test
      • Result
      • Analysis
      • Syllabus
      • Exam Date
    • NEET
      • Previous Year Papers
      • Sample Papers
      • Mock Test
      • Result
      • Analysis
      • Syllabus
      • Exam Date
    • NCERT Solutions
      • Class 6
      • Class 7
      • Class 8
      • Class 9
      • Class 10
      • Class 11
      • Class 12
    • CBSE
      • Notes
      • Sample Papers
      • Question Papers
    • Olympiad
      • NSO
      • IMO
      • NMTC
    • ALLEN e-Store
    • AOSAT
    • ALLEN for Schools
    • About ALLEN
    • Blogs
    • News
    • Careers
    • Request a call back
    • Book home demo
JEE PhysicsJEE Chemistry
Home
JEE Maths
Matrices

Matrices

A Matrix is an organized rectangular array comprising numbers, symbols, or expressions that are systematically arranged in rows and columns. It is typically denoted by uppercase letters and is used in Mathematics and Computer science to represent data or perform operations such as addition, subtraction, multiplication, and more.

1.0Types of Matrices

  1. Column Matrix

A matrix is termed a Column Matrix if it contains only one column.

Example: A=​03−221​​​

  1. Row Matrix

A matrix is considered a Row Matrix if it consists of only one row.

Example - A = [1 5 7]

  1. Square Matrix

A square matrix is one where the number of rows equals the number of columns.

Example : A=[51​73​] 

  1. Diagonal Matrix

A square matrix B = [bij] of order m × m is classified as a Diagonal Matrix if all its non-diagonal elements are zero. In other words, a matrix B = [bij] of size m × m is designated as a diagonal matrix if bij = 0 whenever i ≠ j.

​1000​0500​0070​0003​​

  1. Scalar Matrix

A Scalar Matrix is a square matrix where all diagonal elements are equal (scalar), and all non-diagonal elements are zero.

  1. Identity Matrix

A square matrix in which ones are on the main diagonal and zeros anywhere else is known as an identity matrix. It is denoted as In for an n × n matrix.

​100​010​001​​

  1. Zero Matrix

A zero matrix, denoted as 0, is a matrix in which all elements are zero.

​000​000​000​​

  1. Orthogonal Matrix

An orthogonal matrix is a square matrix where the transpose is equal to its inverse. 

AT = A–1 

​cosθ−sinθ0​−sinθcosθ0​001​​

2.0Operation on Matrices

  1. Addition of two Matrices

To add two matrices, you add corresponding elements in the same position in each matrix. Here is the general formula for adding two matrices:

If two matrices A = [aij] and B=[bij] have same order m×n, then their sum A + B is given by:

A + B=[aij] + [bij] = [aij +bij]

Example:

A=[47​58​39​]B=[71​62​23​]

A+B=[4+77+1​5+68+2​3+29+3​]=[118​1110​512​]

  • Addition of matrices follows the following Properties
  • Commutative Law: A + B = B + A
  • Associative Law: (A + B) + C = A + (B + C)
  • Additive Identity: O (Zero Matrix) is the Additive Identity for matrix addition.
  • Additive Inverse: –A is the additive inverse of A or negative of A.
  1.  Multiplication of a matrix by a scalar

Multiplying a matrix by a scalar involves multiplying each element of the matrix by the scalar value. For example, if we have a matrix A and a scalar k, the product kA is obtained by multiplying each element of A by k.


Example:

A=[47​58​39​]

 kA=k×[47​58​39​]=[4k7k​5k8k​3k9k​]

  • Scalar Multiplication of a matrix follows the following Properties
  • k(A +B) = k A + kB,
  1. Multiplication of Matrices

Matrix multiplication is a binary operation that combines two matrices to produce a new matrix. For matrix multiplication to be defined the number of columns in matrix A should match the number of rows in matrix B.

Let's consider two matrices, A and B:

A=​a11​a21​a31​​a12​a22​a32​​​

B=[b11​b21​​b12​b22​​b13​b23​​]

To perform matrix multiplication between matrices A and B, we compute each element of the resulting matrix C by taking the scalar product of the corresponding row of matrix A and the respective column of matrix B:

To multiply A and B, we follow the rule that the (i,j)th element of the resulting matrix C is obtained by taking the scalar product of the ith row of A and the jth column of B:

C=A⋅B=​c11​c21​c31​​c12​c22​c32​​c13​c23​c33​​​

where

c11 = a11⋅b11 + a12⋅b21,

c12 = a11⋅b12 + a12⋅b22,

c13 = a11⋅b13 + a12⋅b23,

c21 = a21⋅b11 + a22⋅b21,

c22 = a21⋅b12 + a22⋅b22,

c23 = a21⋅b13 + a22⋅b23,

c31 = a31⋅b11 + a32⋅b21,

c32 = a31⋅b12 + a32⋅b22,

c33 = a31⋅b13 + a32⋅b23.

  • Multiplication of Matrices follows following Properties
  • Associative Law: (AB)C = A(BC)

3.0Transpose of Matrices

The transpose of a matrix is generated by interchanging its rows and columns matrix.. For a matrix A with dimensions m×n, the transpose AT has dimensions n×m.

Let's consider a matrix A with elements aij:

A=​a11​a21​⋮am1​​a12​a22​⋮am2​​……⋱…​a1n​a2n​⋮amn​​​

The transpose AT is formed by interchanging rows and columns:

AT=​a11​a12​⋮a1n​​a21​a22​⋮a2n​​……⋱…​a1m​am2​⋮amn​​​

In other words, the (i, j)th element of AT is the (j, i)th element of A, i.e.,

( AT)ij= Aji.

The transpose operation is important in various matrix operations and has several properties, such as:

  1. (AT)T = A: Transposing a matrix twice returns the original matrix.
  2. (kA)T = k(AT ): Transposing a scalar multiple of a matrix is the same as multiplying the transpose of the matrix by the scalar. 
  3. (A+B) T =AT + BT: Transposing the sum of two matrices is the same as taking the sum of their transposes.
  4. (AB)T = BTAT : Transposing the product of two matrices is equivalent to multiplying their transposes in the reverse order.

4.0Symmetric and Skew Symmetric Matrices

  1. Symmetric Matrix

A square matrix A = [aij] is said to be, symmetric if, aij =aij ∀ i and j(conjugate elements are equal). 

Hence for symmetric matrix A = A T. 

  1. Skew Symmetric Matrix

Square Matrix A = [aij] is said to be skew symmetric if, aij = –aij ∀ i and j(the pair of conjugate elements are additive inverse of each other). For a skew symmetric matrix, A = – AT. 

5.0Invertible Matrices 

A square matrix is A = [aij] is said to be invertible if |A| ≠ 0, and AA–1 = A–1A = I.

6.0Important Formula of Matrices

  • A(adj.A) = | A | In = (adj A) A
  •  | adj A | = | A |n–1 (Thus A (adj A) is always a scalar matrix)
  •  adj (adj.A) = | A | n–2 A, where |A| ≠ 0
  •  |adj (adj.A)| = A, where |A| ≠ 0
  • adj (AB) = (adj B) (adj A)
  • adj (Am) = (adj A) m,
  • adj (KA) = Kn–1 (adj A), K is scalar
  • adj (In) = In, 
  •  adj (0) = 0
  • A is symmetric ⇒ adj A is also symmetric
  • A is diagonal ⇒ adj A is also diagonal
  • A is triangular ⇒ adj A is also triangular
  • A is singular ⇒ | adj A | = 0

7.0Solved Problems on Matrices

Example 1: If A=​132​325​​ & B=​−103​−251​​ and A+ B –D = 0 (Zero matrix), then D matrix will be ?

(A) ​036​275​​

(B)​035​276​​

(C) ​035​176​​

(D) ​0−3−5​−2−7−6​​

Ans. (C)

Solution:

LetD=​ace​bdf​​

∴  A+B-D =​132​325​​+​−103​−251​​−​ace​bdf​​

⇒​1−1−a3+0−c2+3−e​3−2−b2+5−d5+1−f​​=​000​000​​

⇒ –a = 0 ⇒ a = 0, 1 –b = 0 ⇒  b = 1,

⇒  3–c = 0 ⇒ c = 3,7 – d = 0 ⇒ d = 7,

⇒ 5 – e = 0 ⇒  e = 5,6 – f = 0 ⇒ f = 6 

∴D=​035​176​​



Example 2: If A,B are two matrices such that A+B=[12​24​], A-B=[3−2​20​], then find AB.

Solution:

Given A+B=[12​24​] …(i)  &

⇒A−B=[3−2​20​] …(ii)  &

Adding (i) & (ii)

⇒2 A=[40​44​]⇒A=[20​22​]

Subtracting (ii) from (i)

⇒2 B=[−24​04​]⇒B=[−12​02​]

Now A B=

[20​22​][−12​02​]

=[24​44​]

 


Example 3: If A=[31​−4−1​], show that Ak=[1+2kk​−4k1−2k​] , where k is any positive integer.

Solution: We have 

⇒A2=[31​−4−1​][31​−4−1​]=[52​−8−3​]=[1+2×22​−4×21−2×2​]

and

⇒A3=[52​−8−3​][31​−4−1​]=[73​−12−5​]=[1+2×33​−4×31−2×3​]

Thus, it is true for indices 2 and 3. Now assume

⇒Ak=[1+2kk​−4k1−2k​]

Then,

⇒Ak+1=[1+2kk​−4k1−2k​][31​−4−1​]

=[3+2kk+1​−4(k+1)−1−2k​]

 ⇒[1+2(k+1)k+1​−4(k+1)1−2(k+1)​]


Example 4: If A is symmetric as well as skew symmetric matrix, then A is-

(A) diagonal matrix (B) null matrix

(C) triangular matrix (D) none of these

Ans. (B)

Solution: Let A = [aij] Since A is skew symmetric aij = –aji 

for  i = j, aii = –aii ⇒ aii =0

for i ≠  j, aij = – aji [∵A is skew symmetric ] and aij = aji [∵ A is symmetric]

∴ aij = 0 for all i ≠ j

So, aij = 0 for all ‘i’ and ‘j’ i.e. A is a null matrix.


Example 5: If A=​222​022​002​​, then adj (adj A) is equal to

(A) 8​111​011​001​​

(B) 16​111​011​001​​

(C) 64​111​011​001​​

(D) None of these

Ans. (B)

Solution: 

|A|=​222​022​002​​=8

Now adj (adj A) = |A|3–2A

=8​222​022​002​​=16​111​011​001​​

8.0Solved Questions on Matrices

Q1. What is an invertible matrix?

Ans: An invertible matrix, also known as a nonsingular matrix, is a square matrix that has an inverse. An invertible matrix A satisfies the condition that there exists another matrix A−1 such that AA−1 =A−1A = I, where I represent the identity matrix.


Q2. How do you find the determinant of a matrix?

Ans: The determinant of a square matrix can be found using various methods such as cofactor expansion.

For a 2 × 2 matrix [ac​bd​] , the determinant is given by ad−bc. For larger matrices, the process involves recursive calculations based on cofactors.


Table of Contents


  • 1.0Types of Matrices
  • 1.1Column Matrix
  • 1.2Row Matrix
  • 1.3Square Matrix
  • 1.4Diagonal Matrix
  • 1.5Scalar Matrix
  • 1.6Identity Matrix
  • 1.7Zero Matrix
  • 1.8Orthogonal Matrix
  • 2.0Operation on Matrices
  • 2.1Addition of two Matrices
  • 2.2 Multiplication of a matrix by a scalar
  • 2.3Multiplication of Matrices
  • 3.0Transpose of Matrices
  • 4.0Symmetric and Skew Symmetric Matrices
  • 4.1Symmetric Matrix
  • 4.2Skew Symmetric Matrix
  • 5.0Invertible Matrices 
  • 6.0Important Formula of Matrices
  • 7.0Solved Problems on Matrices
  • 8.0Solved Questions on Matrices

Frequently Asked Questions

A matrix is an organized arrangement of numbers, symbols, or expressions in a rectangular format with rows and columns.

Matrices can be added if they have the same dimensions (same number of rows and columns). To add two matrices, add corresponding elements.

Matrix multiplication involves calculating the dot product of rows from the first matrix and columns from the second matrix. For matrix multiplication to be valid, the number of columns in the first matrix must be equal to the number of rows in the second matrix.

The transpose of a matrix is derived by swapping its rows with its columns. If A is an m×n matrix, then its transpose is an n×m matrix.

The identity matrix, denoted as I, is a square matrix with main diagonal with ones and zeros elsewhere. It has the property that when multiplied by any square matrix, it gives the same matrix as the result.

Join ALLEN!

(Session 2025 - 26)


Choose class
Choose your goal
Preferred Mode
Choose State
  • About
    • About us
    • Blog
    • News
    • MyExam EduBlogs
    • Privacy policy
    • Public notice
    • Careers
    • Dhoni Inspires NEET Aspirants
    • Dhoni Inspires JEE Aspirants
  • Help & Support
    • Refund policy
    • Transfer policy
    • Terms & Conditions
    • Contact us
  • Popular goals
    • NEET Coaching
    • JEE Coaching
    • 6th to 10th
  • Courses
    • Online Courses
    • Distance Learning
    • Online Test Series
    • International Olympiads Online Course
    • NEET Test Series
    • JEE Test Series
    • JEE Main Test Series
  • Centers
    • Kota
    • Bangalore
    • Indore
    • Delhi
    • More centres
  • Exam information
    • JEE Main
    • JEE Advanced
    • NEET UG
    • CBSE
    • NCERT Solutions
    • NEET Mock Test
    • Olympiad
    • NEET 2025 Answer Key

ALLEN Career Institute Pvt. Ltd. © All Rights Reserved.

ISO