4. Example `[[1,2,3],[0,1,0],[2,3,1]]`
Find Expanding determinant along row / column ... `[[1,2,3],[0,1,0],[2,3,1]]` Expanding determinant along row 2Solution:| `|A|` | = | | `1` | `2` | `3` | | | `0` | `1` | `0` | | | `2` | `3` | `1` | |
|
`=0+1 xx (1 xx 1 - 3 xx 2)+0` `=0+1 xx (1 -6)+0` `=0+1 xx (-5)+0` `=0-5+0` `=-5`
This material is intended as a summary. Use your textbook for detail explanation. Any bug, improvement, feedback then
|