43. Triangular Matrix

A square matrix in which all entries on one side of the main diagonal are zero.

43.1. Upper triangular ()

All entries below the main diagonal are zero: for .

43.2. Lower triangular ()

All entries above the main diagonal are zero: for .

43.3. Properties (apply to both upper and lower)

43.4. Why they matter

Triangular systems are easy to solve by back substitution (upper) or forward substitution (lower):

Solve from the bottom row up — each row has one new unknown.

43.5. Where they show up