Matrix Operations and Applications
Matrices give you a structured way to organize numbers into rows and columns, then perform operations on them as a single object. In this unit, they become your primary tool for representing and solving systems of linear equations, which connects everything you've learned about systems into a compact, powerful framework.

Matrix arithmetic operations
Addition and subtraction only work when both matrices have the same dimensions. You add (or subtract) the corresponding entries, position by position. A matrix can only be added to another matrix, and the result is also .
For example:
Scalar multiplication means multiplying every element in the matrix by a single constant:
The result keeps the same dimensions as the original.
Properties to know:
- Commutative property of addition:
- Associative property of addition:
- Distributive property of scalar multiplication over addition:
- Associative property of scalar multiplication:
These behave just like the properties you already know from regular algebra, which makes them straightforward to apply.

Conditions for matrix multiplication
Matrix multiplication is where things get more involved. Two matrices can only be multiplied if the number of columns in the first matrix equals the number of rows in the second. A matrix can multiply a matrix, and the result will be .
Think of it as: inner dimensions must match, outer dimensions give the result size.
To compute each entry of the product, follow this process:
- Pick a row from the first matrix and a column from the second matrix.
- Multiply corresponding elements together.
- Add up all those products. That sum is one entry in the result.
- Repeat for every row-column combination.
For example, if you're finding entry of the product :
Properties of matrix multiplication:
- Not commutative: in general. This is a big difference from regular number multiplication. Even when both products are defined, they usually give different results.
- Associative:
- Distributive over addition: and
The identity matrix is the matrix equivalent of the number 1. It's a square matrix with 1s along the main diagonal and 0s everywhere else, denoted for an matrix:
Multiplying any matrix by the identity (with compatible dimensions) returns unchanged: .

Applications in linear systems
Matrices let you rewrite an entire system of equations as a single matrix equation. Take the system:
You can break this into three matrices:
- Coefficient matrix : (the numbers in front of the variables)
- Variable matrix :
- Constant matrix : (the right-hand side values)
The system becomes . To solve:
- Write the system as .
- Find the inverse of the coefficient matrix, (this only exists if is invertible).
- Multiply both sides on the left by : .
- Since , this simplifies to .
Existence and uniqueness of solutions:
- Unique solution: The coefficient matrix is invertible (its determinant is nonzero).
- Infinitely many solutions: The rank of the augmented matrix equals the rank of , but both are less than the number of variables.
- No solution: The rank of is greater than the rank of , meaning the equations contradict each other.
Advanced matrix concepts
These topics go beyond the core operations but show up in honors-level problems and connect to future coursework.
Determinant: A scalar value computed from a square matrix. For a matrix , the determinant is . If the determinant is zero, the matrix has no inverse and the corresponding system either has no solution or infinitely many.
Transpose: Flip a matrix over its main diagonal so that rows become columns and columns become rows. Denoted . For example:
Eigenvalues and eigenvectors: For a square matrix , an eigenvector is a nonzero vector that, when multiplied by , only gets scaled (not rotated). The scaling factor is the eigenvalue , satisfying . You'll encounter these more in linear algebra, but they're worth knowing exist since they're central to analyzing transformations.