Section02 The idea of Elimination
example
upper triangular system
Pivot and Multiplier
Pivot
first nonzero in the row that does the elimination
Multiplier
(entry to eliminate) devided by (pivot)
- the pivot are on the diagonal of the triangle after elemination.
Breakdown of Elimination
Permanent failure with no solution.
- example
perspective of rows
- two lines in xy plane are parallel. => there isn't intersectional point between two lines.
perspective of columns
- two arrows with the sample direction, but the point(1,11) is not on this line.
Failure with infinitely many solutions.
- example
perspective of rows
- two lines in xy plane is the same line. => all points on this line is the solutions of equations.
perspective of columns
- two arrows with the sample direction, and the point(1,3) is on this line.
Elimination in Julia
using LinearAlgebra
L,U = lu(::matrix);
Steps of Elimination
- Use the first equations (first row) to create zeros below the first pivot.
- Use the second equations (second row) to create zeros below the second pivot.
- to . Keep going to find all pivots and the upper triangular
Properties from Exercise
Linear Combination
Equal rows and Equal columns
- is a matrix.
- When the has no pivot.
- When the has no pivot.