Skip to main content
United StatesPrecalculusSyllabus dot point

What is a matrix, and how do you add, scale and multiply matrices?

Topic 4.10 Matrices: represent data with a matrix, and add, subtract, scale and multiply matrices, including multiplying a matrix by a vector.

A focused answer to AP Precalculus Topic 4.10, covering matrices as rectangular arrays, matrix addition and scalar multiplication, the row-by-column rule for matrix multiplication, and multiplying a matrix by a vector.

Generated by Claude Opus 4.89 min answer

Reviewed by: AI editorial process; not yet individually human-reviewed

Have a quick question? Jump to the Q&A page

Jump to a section
  1. What this topic is asking
  2. Matrices and the simple operations
  3. Matrix multiplication
  4. Multiplying a matrix by a vector
  5. Why the rule looks the way it does
  6. Try this

What this topic is asking

The College Board (Topic 4.10) wants you to work with matrices: rectangular arrays of numbers. You add and subtract matrices entrywise, multiply a matrix by a scalar, multiply two matrices using the row-by-column rule, and multiply a matrix by a vector, which is the operation that drives the transformations later in the unit.

Matrices and the simple operations

These operations behave like vector operations done on a grid: combine matching positions, or scale every position. They are the easy operations; the structure appears in multiplication.

Matrix multiplication

The row-by-column rule is the heart of the topic; getting the dimensions to match and pairing each row with each column carefully is what makes products correct.

Multiplying a matrix by a vector

This produces a new vector from an old one, which is exactly how matrices transform points and vectors in the plane (Topic 4.12).

Why the rule looks the way it does

A point worth stating once is that the row-by-column rule is exactly what makes a product of matrices represent a composition of the transformations they encode. When a matrix multiplies a vector it produces a new vector by mixing the components according to its rows; multiplying two matrices builds the single matrix that does both transformations in sequence. That is why the dimensions must align and why the order matters, applying AA then BB is different from BB then AA. Holding onto this "matrices act on vectors, products chain the actions" picture turns the mechanical rule into something you can reason about, and it is the foundation for the inverse, determinant and transformation topics that follow.

Try this

Q1. Find [1001][72]\begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix}\begin{bmatrix} 7 \\ -2 \end{bmatrix}. [1 point]

  • Cue. The identity matrix leaves the vector unchanged: [72]\begin{bmatrix} 7 \\ -2 \end{bmatrix}.

Q2. What size must BB be for ABA B to be defined if AA is 2×32 \times 3? [1 point]

  • Cue. BB must have 33 rows (matching AA's 33 columns); it can have any number of columns.

Exam-style practice questions

Practice questions written in the style of College Board exam questions on this dot point, with worked answer explainers. The year tag is the paper they imitate, not the source.

AP 2025 (style)1 marksSection I, Part A (multiple choice, no calculator). What is the product [2013][14]\begin{bmatrix} 2 & 0 \\ 1 & 3 \end{bmatrix}\begin{bmatrix} 1 \\ 4 \end{bmatrix}? (A) [213]\begin{bmatrix} 2 \\ 13 \end{bmatrix} (B) [212]\begin{bmatrix} 2 \\ 12 \end{bmatrix} (C) [613]\begin{bmatrix} 6 \\ 13 \end{bmatrix} (D) [37]\begin{bmatrix} 3 \\ 7 \end{bmatrix}
Show worked answer →

The correct answer is (A), [213]\begin{bmatrix} 2 \\ 13 \end{bmatrix}.

Multiply each row of the matrix by the column vector. Top row: 21+04=22 \cdot 1 + 0 \cdot 4 = 2. Bottom row: 11+34=1+12=131 \cdot 1 + 3 \cdot 4 = 1 + 12 = 13. The result is [213]\begin{bmatrix} 2 \\ 13 \end{bmatrix}.

AP 2025 (style)4 marksSection II (free response, no calculator). Let A=[1201]A = \begin{bmatrix} 1 & 2 \\ 0 & 1 \end{bmatrix} and B=[3124]B = \begin{bmatrix} 3 & 1 \\ 2 & 4 \end{bmatrix}. (a) Find A+BA + B and 2A2A. (b) Find the product ABAB.
Show worked answer →

A 4-point question on matrix operations.

(a) Sum and scalar multiple (2 points): add entrywise, A+B=[4325]A + B = \begin{bmatrix} 4 & 3 \\ 2 & 5 \end{bmatrix}. Scale every entry, 2A=[2402]2A = \begin{bmatrix} 2 & 4 \\ 0 & 2 \end{bmatrix}.
(b) Product (2 points): row-by-column, AB=[13+2211+2403+1201+14]=[7924]AB = \begin{bmatrix} 1\cdot3 + 2\cdot2 & 1\cdot1 + 2\cdot4 \\ 0\cdot3 + 1\cdot2 & 0\cdot1 + 1\cdot4 \end{bmatrix} = \begin{bmatrix} 7 & 9 \\ 2 & 4 \end{bmatrix}.

Related dot points

Sources & how we know this