Overview

As the name suggest this focuses on Linear Equations explicitly.

A Linear Equation is one that contains variables manipulated by reversable operations. Variables can be manipulated by constants which are multiplied, divided, added, and subtracted.

Systems of Linear Equations

There are 3 operations that can be performed on Linear Systems:

  1. Interchanging two equations
  2. Multiply one equations by a nonzero number
  3. Add the multiple of one equation to another

All linear equations will fall under one of these three types of solutions:

  1. No solution
  2. One unique solution
  3. solutions

NOTE: This will not occur for non-linear equations

Solving Systems of Linear Equations

Linear equations should only be simplified using invertible processes. This can be one of the three following operations:

Augmented Matrix Notation

Elementary Operations

  1. Interchange two rows
  2. Multiply one row by a scalar
  3. Add a multiple of one row to another

Examples

Interchange Two Rows

RiRj

Multiply a Row by a Scalar C

RiCRi

e.g. R1R1

Add a multiple of a Row to Another

RiCRj+Ri

Definitions:

Augmented Matrices:

Pasted image 20230823113640.png

Gaussian Elimination:
#gaussian-elim

  1. Put 1 in the top left col.
  2. Use this leading 1 to eliminate all other value in that column
  3. Repeat this process for each remaining row.

Row Echelon Form (REF) :
#echelon-form

A matrix is in echelon form if:

Reduced Row Echelon Form (RREF):

A matrix is reduced if:

Using row elimination operations, any system can be simplified in RREF. Moreover this reduced form is unique.

This process is also called gaussian elimination #gaussian-elim

Theorem: If A is Invertible then RREF of A is I

Leading Variable:

A leading variable is one that is defined by other variables and constants. If represented in REF this would be the variable represented by a column with a leading 1 (pivot point).

Free Variable:

A free variable one is that is defined by other variables and constants. If represented in REF this would be the variable represented by a column with a leading 1 (pivot point).

Homogeneous Systems

A homogeneous (linear) system is one in which every RHS is 0

e.g.

|120220060|

Note: Homogeneous system have many nice (special) properties!

Basic Properties of Homogeneous Systems:

Applications

Ancient Greeks

Any two distinct points determine a line.

Any 3 points that do not lie on the same line determine a circle.

Any 5 points provided that any 4 are not co-linear determine a conic.

Topics