Chapter MAA62
Matrices
Advanced Topics
Introduction to Matrices
A matrix is a rectangular array of numbers, symbols, or expressions arranged in rows and columns. Matrices provide a concise way to represent and solve systems of linear equations. The size of a matrix is described by its dimensions: the number of rows and columns.
A matrix with
rows and
columns is called an
matrix. When
, the matrix is a square matrix. The element in the
-th row and
-th column is denoted by
.
Systems of Linear Equations
One of the most important applications of matrices is representing systems of linear equations. Consider a system of
linear equations with
unknowns:
This system can be represented using an augmented matrix, which combines the coefficient matrix and the constant vector:
Elementary Row Operations
To solve systems of linear equations using matrices, we use elementary row operations that transform the matrix while maintaining the equivalence of the represented system. These operations are:
Elementary Row Operations:
1. Row Swap
Interchange two rows:
2. Row Scaling
Multiply a row by a non-zero scalar:
where
3. Row Addition
Add a multiple of one row to another:
where
These operations do not change the solution set of the system, making them powerful tools for solving linear equations.
Gaussian Elimination
Gaussian elimination is a systematic method for solving systems of linear equations. The goal is to transform the augmented matrix into row echelon form (REF) or reduced row echelon form (RREF), from which the solution can be easily determined.
Row Echelon Form (REF) Properties
1. All rows consisting entirely of zeros are at the bottom of the matrix.
2. The leading entry (first non-zero element) of each non-zero row appears to the right of the leading entry of the row above it.
3. The leading entry in each non-zero row is 1.
Reduced Row Echelon Form (RREF) Properties
1. The matrix is in row echelon form.
2. Each leading 1 is the only non-zero entry in its column.
To perform Gaussian elimination, we follow these steps:
Gaussian Elimination Algorithm:
Step 1: Identify the leftmost column that doesn't consist entirely of zeros.
Step 2: Find a non-zero element in this column (pivot element). If necessary, swap rows to move this element to the top row being considered.
Step 3: Scale the pivot row to make the pivot element equal to 1.
Step 4: Use row operations to create zeros in all other entries in the pivot column.
Step 5: Ignore the row containing the pivot and repeat steps 1-4 on the submatrix consisting of the remaining rows.
Step 6: After achieving row echelon form, work backward from the bottom row to create zeros above each leading 1 to obtain reduced row echelon form (Gauss-Jordan elimination).
Solving Systems with Gaussian Elimination
Problem: Solve the following system of linear equations using Gaussian elimination:
1
First, we write the augmented matrix for the system:
2
We start by creating a pivot in the first position. Since there's already a 2 in the top-left, we scale the first row by
to get a leading 1:
3
Eliminate the entries below the first pivot by adding multiples of the first row:
:
:
4
Now we create a pivot in the second position. Multiply the second row by 2 to get a leading 1:
5
Eliminate the entry below the second pivot:
:
6
Scale the third row to get a leading 1:
:
7
Now we work backwards (Gauss-Jordan elimination) to create zeros above each pivot:
:
:
8
Finally, eliminate the remaining non-zero element above the second pivot:
:
9
From the final matrix, we can read the solution directly:
Types of Solutions
When solving systems of linear equations, we may encounter three possible scenarios:
Solution Possibilities:
1. Unique Solution
The system has exactly one solution. This occurs when no zero rows appear in the reduced row echelon form.
2. Infinitely Many Solutions
The system has infinitely many solutions. This happens when at least one bottom row is entirely zeros (like
). Each such row creates a free variable, resulting in parameterized solutions.
3. No Solution
The system is inconsistent and has no solution. This occurs when any row has all zeros on the left side but a non-zero constant on the right (like
), creating a contradiction.
Problem: Solve the following system, which has infinitely many solutions:
1
Write the augmented matrix:
2
Eliminate entries below the first pivot:
:
:
3
Scale the third row to get a pivot of 1:
:
4
Eliminate the entry above the third pivot:
:
5
The system is now in row echelon form. Notice that there are only 2 pivots for 3 variables, which means there will be infinitely many solutions with one free variable.
6
We can parameterize the solution. Let
where
is a free parameter. From the first row, we get
, so
. From the third row, we have
.
7
The complete solution is: