🏡 Back Home

Section 1.2 : Row Reduction and Echelon Forms

Topics

Echelon Form and RREF

A rectangular matrix is in echelon form if

  1. All zero rows (if any are present) are at the bottom.
  2. The first non-zero entry (or leading entry) of a row is to the right of any leading entries in the row above it (if any).
  3. All elements below a leading entry (if any) are zero.

A matrix in echelon form is in row reduced echelon form (RREF) if

  1. All leading entries, if any, are equal to 1.
  2. Leading entries are the only nonzero entry in their respective column.

Note, it is not required for each column to have a leading term

Pasted image 20220517201157.png
Example of a matrix in echelon form

Fun fact: The zero matrix and identity is a matrix in RREF, recall notation for both zero and identity matrices

Pivot Position, Pivot Column

A pivot position in a matrix A is a location in A that corresponds to a
leading 1 in the reduced echelon form of A.

A pivot column is a column of A that contains a pivot position.

Exercise: Express the matrix in row reduced echelon form and identify
the pivot columns.

→ Solution, matrix with pivot columns for , , and

Row Reduction Algorithm

Row equivalence: Matrices that can be converted between each other through elemetary row operations*

The algorithm we used in the previous example produces a matrix in RREF. Its steps can be stated as follows.

Step 1a. Swap the 1st row with a lower one so the leftmost nonzero entry is in the 1st row
Step 1b. Scale the 1st row so that its leading entry is equal to 1
Step 1c. Use row replacement so all entries below this 1 are 0
Step 2a. Swap the 2nd row with a lower one so that the leftmost nonzero entry below 1st row is in the 2nd row

etc. . . .
Now the matrix is in echelon form, with leading entries equal to 1.

Last step. Use row replacement so all entries above each leading entry are 0, starting from the right.

Basic and Free Variables

Consider the augmented matrix
Pasted image 20220517201624.png

The leading one’s are in first, third, and fifth columns. So:

Note that does not have basic variables or free variables. Systems have variables.

By the way, I think this is neat

Good to keep in mind notation and what we are doing. We solve for , which represents a vector when multiplied by matrix A, yields vector .

Existence and Uniqueness

Theorem

A linear system is consistent if and only if (exactly when) the last column of the augmented matrix does not have a pivot.

This is the same as saying that the RREF of the augmented matrix does not have a row of the form

Moreover, if a linear system is consistent, then it has one of the following

  1. A unique solution if and only if there are no free variables.
  2. Infinitely many solutions that are parameterized by free variables.

Section 1.3 : Vector Equations

Topics

Motivation

We want to think about the algebra in linear algebra (systems of equations and their solution sets) in terms of geometry (points, lines, planes, etc).

Pasted image 20220517204934.png

Vectors… how does this fit into ?

Ordered n-tuples of real numbers ()

Recall that denotes the collection of all real numbers

Let be a positive whole number. We then define:
= all ordered -tuples of real numbers

Representations

Vectors

Pasted image 20220517205726.png

Vector algebra

Pasted image 20220517205648.png|200
Parallelogram rule for vector addition

Pasted image 20220517205817.png

Vectors have the following properties

Scalar multiple:

Vector addition:

→ Note that vectors in higher dimensions have the same properties!

Linear Combinations and Span

Definition: Linear Combination

Given vectors and scalars ,

Definition: Span

The set of all linear combinations of the given vectors is the span of the vectors

Visualization in interactive textbook

Geometric Interpretation of Linear Combinations

Pasted image 20220517210137.png

Example - Span

Pasted image 20220517210159.png

Solution
Construct an augmented matrix, use row reduction to arrive at RREF

→ The matrix is inconsistent, meaning the vector is not within the span

For this problem, the augmented matrix represents

The Span of Two Vectors in R^3

In the previous example, did we find that is in the span of and ?

In general: Any two non-parallel vectors in span a plan that passes through the origin. Any vector in that plane is also in the span of the two vectors.

Pasted image 20220517210237.png


Next lecture: 05.20 Lecture - MATH1554