


Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
These lecture slides are very easy to understand the computer operating system.The major points in these lecture slides are:Echelon Form, Rectangular Matrix, Properties, Nonzero, Leading, Terminology, Pivots, Pivot Columns, Reduced Row Echelon Form, Satisfies
Typology: Slides
1 / 4
This page cannot be seen from the preview
Don't miss anything!



THE ECHELON FORM [1.2]
The standard echelon form A rectangular matrix is in echelon form (or row echelon form) if it has the following three properties:
ä Each is a nonzero (lead- ing) entry. ä A ∗ can be a non-zero or a zero entry.
D-
Terminology: Pivots, and pivot columns
PIVOTS
PIVOT COLUMNS
ä Important in capturing the span of the columns of A (called the range of A - to be covered in detail later)
The reduced row echelon form
If a matrix in echelon form satisfies the following additional conditions, then it is in reduced echelon form (or reduced row echelon form): Matlab: rref
ä Any nonzero matrix may be row reduced (i.e., trans- formed by elementary row operations) into more than one matrix in echelon form, using different sequences of row operations.
ä However, the reduced echelon form one obtains from a matrix is unique:
Each matrix is row equivalent to one and only one reduced echelon matrix.
ä Remember that the permissible row operations are:
D-
Pivot position
ä 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.
The pivot columns are 1, 3, 7, and 10
D-
Pivot position : Example
Example: Row reduce the matrix A below to echelon form, and locate the pivot columns of A.
Solution: The top of the leftmost nonzero column is the first pivot position. A nonzero entry, or pivot, must be placed in this position.
ä Interchange rows 1 and 4 (note: in reality we should interchange rows 1 and 3. Why?)
↓ Pivot
↑ Pivot Column ä Create zeros below the pivot, 1, by adding multiples of the first row to the rows below −→ Next matrix:
Next pivot column
Step 3 Write solutions: solutions depend on parameters which are the free variables.
ä Express basic variables in terms of the free variables
ä For any values given to the free variables you will get a solution
ä For example for the above picture: x 10 = b 4 ; x 7 = b 3 − scalar.x 8 − scalar.x 9 etc..
D-
ä Get the reduced echelon form [use matlab!]
1 2 0 0 0 0 1 − 5 0 0 1 2 0 0 − 8 6 0 0 0 0 1 0 − 1 3 0 0 0 0 0 1 − 2 1 0 0 0 0 0 0 0 0
ä Basic variables: 1, 3, 5, 6 ä Free variables: 2, 4, 7 ä Right-hand side : 8
(1): x 1 +2x 2 +x 7 = − 5 (2): x 3 +2x 4 − 8 x 7 = 6 (3): x 5 − x 7 = 3 (4): x 6 − 2 x 7 = 1 (5): 0 = 0 (vacuous)
x 1 = − 5 − 2 x 2 − x 7 x 3 = 6 − 2 x 4 + 8x 7 x 5 = 3 + x 7 x 6 = 1 + 2x 7
Note: It is also possible to use the standard (non-reduced) row-echelon form - Requires back substitution. Result is the same.
D-