|
|
|
Solution
|
Solution provided by AtoZmath.com
|
|
is Lower Triangle Matrix calculator
|
1. `[[1,0,0],[2,3,0],[4,5,6]]` 2. `[[1,9,0],[2,3,0],[4,5,6]]`
|
Example1. is Lower Triangle Matrix ? `[[1,0,0],[2,3,0],[4,5,6]]`Solution:A square matrix, in which all elements above the main diagonal are zero, is called a lower triangle matrix. `A` | = | | `1` | `0` | `0` | | | `2` | `3` | `0` | | | `4` | `5` | `6` | |
|
Here, all elements above the main diagonal are zero, so it is a lower triangle matrix.
|
|
|
|
|