|
7. Triangular Matrix example
( Enter your problem )
|
- Example `[[8,-6,2],[-6,7,-4],[2,-4,3]]`
- Example `[[3,2,4],[2,0,2],[4,2,3]]`
- Example `[[1,1,1],[-1,-3,-3],[2,4,4]]`
- Example `[[2,3],[4,10]]`
|
|
1. Example `[[8,-6,2],[-6,7,-4],[2,-4,3]]`
Find Upper Triangular Matrix ... `[[8,-6,2],[-6,7,-4],[2,-4,3]]`Solution:| `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` | |
|
| `:.U` | = | | `8` | `-6` | `2` | | | `0` | `5/2` | `-5/2` | | | `0` | `0` | `0` | |
|
This material is intended as a summary. Use your textbook for detail explanation.Any bug, improvement, feedback then Submit Here
|
|
|