01 Key Concepts
Matrix Dimensions
A matrix with m rows and n columns is called an 'm by n' matrix. Example: a 2x3 matrix has 2 rows and 3 columns.
Matrix Addition and Subtraction
Add or subtract matrices of the same dimensions by combining their corresponding entries (same row, same column).
Scalar Multiplication
Multiply every entry in a matrix by the same single number (a scalar).
Matrix Multiplication
To multiply two matrices, the number of columns in the first must equal the number of rows in the second; each entry in the result comes from multiplying and summing a row from the first by a column from the second.
Identity Matrix
A square matrix with 1s on the main diagonal and 0s everywhere else; multiplying any matrix by the identity matrix leaves it unchanged.
02 Solved Examples
- Add corresponding entries: top-left: 1+5=6. top-right: 2+6=8.
- bottom-left: 3+7=10. bottom-right: 4+8=12.
- Multiply every entry by 3: 1*3=3, 2*3=6, 3*3=9, 4*3=12.
- State rows first, then columns, following the 'm by n' convention.
03 Practice Questions
๐ Matrices โ Downloadable Worksheet
10 questions with a full answer key. Grab the PDF to print, or try the interactive version in your browser.