Matrices are a 2D arrangement of numbers which can be used to represents systems of equations through an augmented matrix.
This is represented as the form . Where is the coefficient matrix and is the vector of solutions.
If is the , then the system is called a Homogeneous System.
Elementary Row Operations
Matrices have the ERO which can be used to eliminate rows and solve systems of equations.
- Multiply a row by a non-zero scalar
- Swap rows
- Add a multiple of a row to another
REF and RREF
The point of doing the elementary row operations is to take a matrix to one of these forms. These are Row Echelon Form and Reduced Row Echelon Form.
REF
- All zero rows must appear under non-zero rows
- The rows must be in order of leading coefficients
RREF
- All leading entries must be 1’s
- In a column with a leading 1, all other entries are 0
Solution Sets
A system of equations has 3 possibilities.
- No solution.
- Infinitely many solutions, here the entire row is 0.
- Uniquely many solutions, here the row is not all 0’s and the augmented side is non-zero. I.e, if all of the variables have a leading entry in REF.
Rank
If the matrix is in RREF, the number of leading 1s is called the rank of the matrix.
Related