1. Example `[[1,-2,0,3,-4],[3,2,8,1,4],[2,3,7,2,3],[-1,2,0,4,-3]]` (Previous example) | 3. Example `[[3,-1,-1],[2,-2,1]]` (Next example) |
2. Example `[[1,2,3,2],[3,0,1,8],[2,-2,-2,6]]`
Find Column Space ... `[[1,2,3,2],[3,0,1,8],[2,-2,-2,6]]`
Solution:
| `1` | `2` | `3` | `2` | | | `3` | `0` | `1` | `8` | | | `2` | `-2` | `-2` | `6` | |
Now, reduce the matrix to row echelon form `R_2 larr R_2-3xx R_1`
= | | `1` | `2` | `3` | `2` | | | `0` | `-6` | `-8` | `2` | | | `2` | `-2` | `-2` | `6` | |
|
`R_3 larr R_3-2xx R_1`
= | | `1` | `2` | `3` | `2` | | | `0` | `-6` | `-8` | `2` | | | `0` | `-6` | `-8` | `2` | |
|
`R_3 larr R_3- R_2`
= | | `1` | `2` | `3` | `2` | | | `0` | `-6` | `-8` | `2` | | | `0` | `0` | `0` | `0` | |
|
The rank of a matrix is the number of non all-zeros rows `:. Rank = 2`
Column Space : The matrix has 2 pivots and Pivots are in the columns 1 and 2. We know that these columns in the original matrix define the column space of the matrix. `:.` The Column Space is
`[[1],[3],[2]],[[2],[0],[-2]]`
This material is intended as a summary. Use your textbook for detail explanation. Any bug, improvement, feedback then
1. Example `[[1,-2,0,3,-4],[3,2,8,1,4],[2,3,7,2,3],[-1,2,0,4,-3]]` (Previous example) | 3. Example `[[3,-1,-1],[2,-2,1]]` (Next example) |
|