18 min read
Matrix Addition and Subtraction
Matrices of the same order are added or subtracted by combining their matching elements.
Matching Elements
To add or subtract two matrices, they must have the exact same order. Add (or subtract) each pair of matching elements — same row, same column — one at a time.
Example 1 — matrix addition
Find A + B, where A = and B = .
- Add matching elements: top-left: , top-right:
- Bottom-left: , bottom-right:
Answer:
Example 2 — matrix subtraction
Find A − B, where A = and B = .
- Subtract matching elements: top-left: , top-right:
- Bottom-left: , bottom-right:
Answer:
Practice
A = and B = . Find the element in row , column of A + B.
Your answer
More lessons in Matrices and Determinants · Next: Scalar Multiplication · Previous: What Is a Matrix?
