Fatskills
Practice. Master. Repeat.
Study Guide: How to Solve: ACT Math – Matrices and Vector Operations
Source: https://www.fatskills.com/act/chapter/how-to-solve-act-math-matrices-and-vector-operations

How to Solve: ACT Math – Matrices and Vector Operations

By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.

⏱️ ~5 min read

How to Solve: ACT Math – Matrices and Vector Operations


Introduction

Mastering matrices and vectors on the ACT Math section can boost your score by 2–4 points—because these questions look scary but follow simple rules. Imagine multiplying two matrices in under 30 seconds, or adding vectors without drawing a single arrow. That’s the edge you’ll have after this guide.


What You Need To Know First

  1. Basic arithmetic (addition, subtraction, multiplication).
  2. Order of operations (PEMDAS).
  3. Coordinate plane basics (x and y axes, plotting points).

Key Vocabulary

Term Plain-English Definition Quick Example
Matrix A grid of numbers in rows and columns. [3 2] (1 row, 2 columns)
Vector A matrix with one row (row vector) or one column (column vector). [4, -1] (row vector)
Scalar A single number (not a matrix). 5
Addition Adding two matrices of the same size element by element. [1 2] + [3 4] = [4 6]
Scalar Multiplication Multiply every element in a matrix by a single number. 2 × [1 3] = [2 6]
Dot Product Multiply matching elements of two vectors, then add the results. [1, 2] • [3, 4] = (1×3) + (2×4) = 11

Formulas To Know

1. Matrix Addition

Formula: A + B = C where C[i][j] = A[i][j] + B[i][j] - A and B must have the same dimensions. - Memorise This.: You can only add matrices if they have the same number of rows and columns.

2. Scalar Multiplication

Formula: k × A = B where B[i][j] = k × A[i][j] - k = scalar (a single number). - Multiply every element in A by k.

3. Dot Product (for Vectors)

Formula: [a, b] • [c, d] = (a × c) + (b × d) - Memorise This.: Multiply matching elements, then add the results. - Only works for vectors of the same length.

4. Matrix Multiplication (2×2)

Formula: If A = [a b; c d] and B = [e f; g h], then: A × B = [ae + bg af + bh; ce + dg cf + dh] - Memorise This.: The number of columns in the first matrix must match the number of rows in the second matrix. - Given on exam sheet (but you must know how to apply it).


Step-by-Step Method

How to Solve Any Matrix/Vector Problem on the ACT

  1. Check dimensions first.
  2. Can you add/subtract? (Must be same size.)
  3. Can you multiply? (Columns of first = rows of second.)
  4. Write down the operation (addition, scalar multiplication, dot product, etc.).
  5. Apply the formula step by step.
  6. For addition/subtraction: Match elements.
  7. For scalar multiplication: Multiply every element.
  8. For dot product: Multiply matching elements, then add.
  9. For matrix multiplication: Follow the row × column rule.
  10. Double-check your work.
  11. Did you mix up rows and columns?
  12. Did you forget to multiply all elements?

Worked Example (Using the Steps)

Problem: Let A = [2 -1] and B = [3 4]. Find 2A + B.

Step 1: Check dimensions. - A and B are both 1×2 matrices → can add. - Scalar multiplication (2A) is always allowed.

Step 2: Write the operation. 2A + B = 2 × [2 -1] + [3 4]

Step 3: Apply the formula. - 2A = [2×2 2×(-1)] = [4 -2] - 2A + B = [4 + 3 -2 + 4] = [7 2]

Step 4: Double-check. - Did you multiply both elements in A by 2? ✅ - Did you add matching elements? ✅

Final Answer: [7 2]


Worked Examples

Example 1 – Basic (Scalar Multiplication)

Problem: If C = [5 0 -3], find 3C.

Solution: 1. Multiply every element by 3. 2. 3 × [5 0 -3] = [3×5 3×0 3×(-3)] = [15 0 -9]

What we did and why: - Scalar multiplication means multiplying every number in the matrix by the scalar. - No addition or subtraction—just straightforward multiplication.


Example 2 – Medium (Dot Product)

Problem: Find the dot product of [2, -1] and [4, 3].

Solution: 1. Multiply matching elements: (2 × 4) + (-1 × 3) 2. 8 + (-3) = 5

What we did and why: - The dot product is not regular multiplication—it’s element-wise multiplication then addition. - Always check that vectors have the same length (here, both are 1×2).


Example 3 – Exam-Style (Matrix Multiplication)

Problem: If A = [1 2; 3 4] and B = [0 -1; 2 1], find AB.

Solution: 1. Check dimensions: A is 2×2, B is 2×2 → can multiply. 2. Apply the formula:
- First row of A × first column of B:
(1×0) + (2×2) = 0 + 4 = 4
- First row of A × second column of B:
(1×(-1)) + (2×1) = -1 + 2 = 1
- Second row of A × first column of B:
(3×0) + (4×2) = 0 + 8 = 8
- Second row of A × second column of B:
(3×(-1)) + (4×1) = -3 + 4 = 1 3. Final matrix: [4 1; 8 1]

What we did and why: - Matrix multiplication is not element-wise—it’s row × column. - The result has the same number of rows as the first matrix and same number of columns as the second matrix.


Common Mistakes

Mistake Why it Happens Correct Approach
Adding matrices of different sizes Forgetting to check dimensions first. Only add matrices with the same number of rows and columns.
Multiplying matrices element-wise Confusing matrix multiplication with addition. Matrix multiplication is row × column, not element × element.
Forgetting to multiply all elements in scalar multiplication Rushing and missing a number. Multiply every single element by the scalar.
Mixing up rows and columns in dot product Not matching elements correctly. Always pair the first element of each vector, then the second, etc.
Assuming matrix multiplication is commutative Thinking AB = BA (it’s not!). Order matters—AB is not the same as BA.

Exam Traps

Trap How to Spot it How to Avoid it
Dimensions don’t match The problem gives two matrices with different sizes. Always check dimensions first—if they don’t match, the operation is impossible.
Disguised dot product The problem asks for a "product" of two vectors but doesn’t specify. If it’s two vectors, it’s almost always the dot product.
Scalar multiplication vs. matrix multiplication The problem says "multiply" but doesn’t specify scalar or matrix. Look for a single number (scalar) or two matrices (matrix multiplication).

1-Minute Recap

"Listen up—this is your last-minute crash course for matrices and vectors on the ACT. First, check dimensions—if they don’t match, the problem is a trick. For addition, just add matching elements. For scalar multiplication, multiply every number in the matrix by the scalar. For the dot product, multiply matching elements, then add them up. Matrix multiplication? Row × column—memorize the formula because it’s on the sheet, but you have to know how to use it. Common mistakes? Forgetting to multiply all elements, mixing up rows and columns, or assuming AB = BA (it doesn’t!). If you see two vectors, it’s probably the dot product. If you see a single number times a matrix, it’s scalar multiplication. Stay calm, follow the steps, and you’ll get these points—no problem."




ADVERTISEMENT