Mathematics Grade 12 15 min

Multiply two matrices

Multiply two matrices

Tutorial Preview

1

Introduction & Learning Objectives

Learning Objectives Determine if two matrices can be multiplied by checking their dimensions. State the dimensions of the resulting product matrix before performing any calculations. Accurately calculate the product of two matrices using the row-by-column method. Articulate and demonstrate that matrix multiplication is not commutative (i.e., AB ≠ BA in general). Apply the general formula for an entry in the product matrix, (AB)ij. Set up matrix multiplication to represent transformations or systems of linear equations. Ever wonder how a computer graphics engine rotates, scales, and translates a 3D model in a video game? 🎮 The secret lies in the power of multiplying matrices! This tutorial will guide you through the precise, step-by-step process of multiplying two matrices....
2

Key Concepts & Vocabulary

TermDefinitionExample Matrix Dimensions (Order)The size of a matrix, expressed as 'rows by columns' (m x n). The number of rows (m) is always stated first.A matrix with 3 rows and 4 columns has dimensions 3 x 4. Entry or ElementA single value within a matrix, identified by its row and column position.In matrix A, the entry a_{23} is the number in the 2nd row and 3rd column. Dot ProductThe result of multiplying the corresponding entries of two vectors (or a row and a column) and then summing those products. This is the fundamental operation for each entry in the product matrix.The dot product of [1, 2, 3] and [4, 5, 6] is (1*4) + (2*5) + (3*6) = 4 + 10 + 18 = 32. Product MatrixThe resulting matrix, C, obtained from the multiplication of two matrices, A and B, such that C = AB.If...
3

Core Formulas

The Compatibility Rule for Multiplication To multiply matrix A by matrix B (to find AB), the number of columns in A must be equal to the number of rows in B. This is the first and most important check. If this condition is not met, the multiplication is undefined. Think of it as the 'inner dimensions' must match: (m x n) \times (n x p). Dimensions of the Product Matrix If A is an m x n matrix and B is an n x p matrix, their product AB will be an m x p matrix. The dimensions of the resulting matrix are determined by the 'outer dimensions' of the original matrices: (m x n) \times (n x p) \rightarrow (m x p). General Formula for an Entry The entry in the i-th row and j-th column of the product matrix AB, denoted as (AB)_{ij}, is the dot product of the...

4 more steps in this tutorial

Sign up free to access the complete tutorial with worked examples and practice.

Sign Up Free to Continue

Sample Practice Questions

Challenging
Let A = \begin{pmatrix} 2 & -1 \\ 2 & -1 \end{pmatrix} and B = \begin{pmatrix} 1 & 3 \\ 2 & 6 \end{pmatrix}. The product AB is the zero matrix. What fundamental property of matrix multiplication does this demonstrate?
A.Matrix multiplication is associative: (AB)C = A(BC).
B.If AB = 0, then either A=0 or B=0.
C.The product of two non-zero matrices can be the zero matrix.
D.The identity matrix I is the multiplicative identity.
Challenging
If A is an m x n matrix, and both matrix products AB and BA are defined, what must be the dimensions of matrix B?
A.m x n
B.n x m
C.n x n
D.m x m
Challenging
Let A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}. If A² = I (the 2x2 identity matrix), which of the following conditions must be met?
A.a² + bc = 1 and d = -a
B.ad - bc = 1
C.a² + b² = 1 and c² + d² = 1
D.a = d = 1 and b = c = 0

Want to practice and check your answers?

Sign up to access all questions with instant feedback, explanations, and progress tracking.

Start Practicing Free

More from Matrices

Ready to find your learning gaps?

Take a free diagnostic test and get a personalized learning plan in minutes.