- When all the non-diagonal entries are zero.
- Represented as diag(d11,..., dnn) since the only entries that matter are the ones on the diagonal.
Properties
- Sum: since the non-diagonal entries are zero, we are basically doing dnn+cnn.
- Product: looks very nice. Computing the mat-vec product, then this makes sense.
- Power: raise each entry to k. Extends the product property from above.
- If D is invertible, this property works even for negative powers.
- For D to be invertible, all the diagonal entries must be non-zero (why?).
- For inverse, the determinant must not be zero cuz A−1=detAadj A
- Det = 0; for that the diagonal entries must not be zero.
Why Care?
- Simple computation.
- Useful to understand matrix properties. All the stuff happens across the main axis.