71. Composition of Linear Transformations

For two linear transformations 𝑆:𝑋𝑌 and 𝑇:𝑌𝑍, the composition 𝑇𝑆:𝑋𝑍 applies 𝑆 first, then 𝑇:

(𝑇𝑆)(𝑥)=𝑇(𝑆(𝑥))

The composition of two linear transformations is itself linear:

Additivity:

(𝑇𝑆)(𝑥+𝑦)=𝑇(𝑆(𝑥)+𝑆(𝑦))=𝑇(𝑆(𝑥))+𝑇(𝑆(𝑦))=(𝑇𝑆)(𝑥)+(𝑇𝑆)(𝑦)

Homogeneity: same argument with scalar pulled through.

71.1. Composition ↔ matrix multiplication

If 𝑆 has matrix 𝐴 (𝑚×𝑛) and 𝑇 has matrix 𝐵 (𝑙×𝑚), then:

(𝑇𝑆)(𝑥)=𝑇(𝐴𝑥)=𝐵(𝐴𝑥)=(𝐵𝐴)𝑥

So composition corresponds to matrix multiplication — with the matrices in reverse order (the transformation applied first sits on the right):

𝑇𝑆↔︎𝐵𝐴

This single observation is the entire reason matrix multiplication is defined the way it is.

71.2. Properties of composition

71.3. See also