MATH 110 - Day 7
2024-09-18 17:33:27 -0400 EDT
Systems of Linear Equations
Definition: A linear equation is the variable x_1, x_2, x_3, is the equation of the term:
The solution to is a vector
Let
be a system of linear equations in variable where:
How can we find solutions that exist? Goal: use an algorithm
Algorithm: Infinite sequence of mathematically rigorous instructions to solve a particular problems
Matrices: Let fixed once and for all. An matrix is a rectangular array of real numbers arranged in such a way that there are rows and columns:
Given a system of linear equations in variables:
- the matrix written above is called a coefficient matrix of
- the matrix is called an augmented
Example:
An algorithm for solving linear equations
input: a system of linear equations
- From augmented matrix of
- Perform elementary row operations (EPOs) to get good form
- Solve (substitution and elimination)
EPOs
- Switching any 2 rows
- Multiplying a row by
- Add scaler multiple of a row to another row
good form := Reduced Row Echelon Form (RREF)
this is:
- in each row, left to right the first nonzero number is 1
- if an entire row is 0s, this row is at the bottom
- if a column contains a leading 1 of in the first row, all other entires in the column and row must be zero.
- the leading ones form a diagonal
Theorem: any matrix can be put into RREF by a finite number of elementary row operations