VOOZH about

URL: https://www.geeksforgeeks.org/maths/how-to-multiply-2-x-2-matrices/

⇱ How to Multiply 2 × 2 Matrices - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to Multiply 2 × 2 Matrices

Last Updated : 23 Jul, 2025

Matrix multiplication is a mathematical operation that combines two matrices to produce a new matrix, also known as the product matrix. This operation is defined for two matrices, A and B, if the number of columns in matrix A is equal to the number of rows in matrix B.

To multiply any two matrices, we can use the following steps:

  • Pick a row from the first matrix (Matrix A) and a column from the second matrix (Matrix B).
  • Multiply each element in the row by the corresponding element in the column.
  • Add up all those products to get a single number.
  • That number becomes the entry in the new matrix at the position corresponding to that row and column.

Repeat this for all rows and column to get your answer.


Note: Two matrices A and B can be multiplied if the number of columns in A equals the number of rows in B. If A is m × n and B is n × o, then the product AB is m × o.

  • Multiplying a 2 × 3 matrix by a 3 × 2 matrix is valid, resulting in a 2 × 2 matrix.
  • A 3 × 3 matrix cannot be multiplied by a 4 × 2 matrix because the dimensions do not align for multiplication.

Read More,

Solved Example on Multiplying 2 × 2 Matrices

Example 1: Let A = and B =, then find A × B.

Solution:

Example 2: Let A = and B =, then find A × B.

Solution:

Example 3: Let and B2 = qB. Find the value of q.

Solution:

Calculating B2

B2 = B × B =

comparing the result with qB .

we get,

Practice Questions on Multiplying 2 × 2 Matrices

Question 1: Let's Find A × B?

Question 2: Let's Find A × B?

Question 3: Let's Find A2?

Question 4: Let's Find kA?

Comment

Explore