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: 𝑈𝑖𝑗=0 for 𝑖>𝑗.

𝑈=[𝑢11𝑢12𝑢130𝑢22𝑢2300𝑢33]

43.2. Lower triangular (𝐿)

All entries above the main diagonal are zero: 𝐿𝑖𝑗=0 for 𝑖<𝑗.

𝐿=[𝑙1100𝑙21𝑙220𝑙31𝑙32𝑙33]

43.3. Properties (apply to both upper and lower)

det(𝐿)=𝑖=1𝑛𝑙𝑖𝑖

43.4. Why they matter

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

[231011004]𝑥=[728]𝑥3=2,𝑥2=4,𝑥1=2

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

43.5. Where they show up