Evanalysis
2.3Source-backed1 Interactive checkpoints

2.3 Gaussian elimination and RREF

See Gaussian elimination as a sequence of purposeful moves, not just memorized mechanics.

Interactive textbooks

MATH1030 interactive textbook

An interactive-first linear algebra route focused on operations, structure, and interpretation.

Chapter 1

Systems of equations

Learn to read equations as full solution sets.

Chapter 2

Matrices and elimination

Build matrix intuition and use row reduction with purpose.

Chapter 5

Invertibility

Understand when a matrix can be undone and why that matters.

The goal of elimination

Gaussian elimination is a way to simplify an augmented matrix by row operations until the solution becomes easy to read.

The point is not to perform random moves. Each move should make the structure clearer.

Definition

RREF

Reduced row-echelon form, or RREF, is the simplified matrix form that makes pivots and free variables easy to read.

What to look for

In a row-reduced matrix, you want to see the pivots, the free variables, and any contradiction row such as [0 0 0 | 1].

That last kind of row tells you the system has no solution.

A simple example

Worked example

Start elimination in a small system

Take the augmented matrix

[125314].\begin{bmatrix} 1 & 2 & | & 5 \\ 3 & -1 & | & 4 \end{bmatrix}.

Use R_2 \leftarrow R_2 - 3R_1 to remove the first entry below the pivot:

[1250711].\begin{bmatrix} 1 & 2 & | & 5 \\ 0 & -7 & | & -11 \end{bmatrix}.

From here you can continue until the matrix is in RREF.

Pause here and step through one elimination path. After each move, ask which entry became easier to read and why that move was chosen.

Try it here

Row-reduction stepper

The live stepper lets you compare each row operation with the matrix it produces.

Start with the augmented matrix of the system.

12-13
2518
0124

Common mistake

Common mistake

REF is not yet RREF

It is easy to stop too early. In RREF, each pivot column has zeros everywhere else, not just below the pivot.

Quick check

Quick check

Is `[0 0 0 | 1]` a harmless row?

Solution

Answer

This page depends on 2.2 Augmented matrices and row operations.

Key terms in this unit

Source trail

reference/MATH1030/MATH1030-Notes.pdf (§2.2)

reference/MATH1030/1030gi-n02-03.pdf

reference/MATH1030/1030efghi-tutorial-week03.pdf