Precalculus — Functions
Composition — machines feeding machines
continues from lesson 1 — values defined earlier in the course stay live here
f(g(x)) wires g's output into f's input. Order matters — composition is not commutative, and the checks prove it with a concrete x:
a second machine
= g first: g(3) = 7, then f(7) = 28
= f first: f(3) = 0, then g(0) = 1
✓ pass f∘g at 3
✓ pass order matters: f(g(3)) ≠ g(f(3))