72. Transformation Sum

For linear transformations 𝑇,𝑆:𝑛𝑚, define the sum 𝑇+𝑆:𝑛𝑚 pointwise:

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

The sum is itself linear.

72.1. Matrix correspondence

If 𝑇 has matrix 𝐴 and 𝑆 has matrix 𝐵 (so 𝑇(𝑥)=𝐴𝑥 and 𝑆(𝑥)=𝐵𝑥), then 𝑇+𝑆 has matrix 𝐴+𝐵:

Let 𝐴=[𝑎1𝑎2𝑎𝑛] and 𝐵=[𝑏1𝑏2𝑏𝑛] (column-wise).

(𝑇+𝑆)(𝑥)=𝑇(𝑥)+𝑆(𝑥)=𝐴𝑥+𝐵𝑥=𝑖=1𝑛𝑥𝑖𝑎𝑖+𝑖=1𝑛𝑥𝑖𝑏𝑖=𝑖=1𝑛𝑥𝑖(𝑎𝑖+𝑏𝑖)=(𝐴+𝐵)𝑥

So in matrix terms: transformation addition = matrix addition, performed entrywise.

72.2. Connections