1. Example `[[8,-6,2],[-6,7,-4],[2,-4,3]]`
1. Find Pivots of a Matrix ... `[[8,-6,2],[-6,7,-4],[2,-4,3]]`Solution:First apply Gaussian Elimination method to find Pivots `A` | = | | `8` | `-6` | `2` | | | `-6` | `7` | `-4` | | | `2` | `-4` | `3` | |
|
`R_2 larr R_2+3/4xx R_1` = | | `8` | `-6` | `2` | | | `0` | `5/2` | `-5/2` | | | `2` | `-4` | `3` | |
|
`R_3 larr R_3-1/4xx R_1` = | | `8` | `-6` | `2` | | | `0` | `5/2` | `-5/2` | | | `0` | `-5/2` | `5/2` | |
|
`R_3 larr R_3+ R_2` = | | `8` | `-6` | `2` | | | `0` | `5/2` | `-5/2` | | | `0` | `0` | `0` | |
|
Pivots are the first non-zero element in each row of this eliminated matrix. `:.` Pivots are `8,5/2`
This material is intended as a summary. Use your textbook for detail explanation. Any bug, improvement, feedback then
|