By Jon Zamboni, Updated Aug 30, 2022
When a single algebraic expression proves too unwieldy to solve directly, decomposition lets you split it into a hierarchy of simpler functions. By handling each piece separately, you can solve complex problems with clarity and confidence.
A function f(x) can be expressed as a composition of two or more inner functions when part of its formula can itself be defined as a separate function of x. For example:
f(x) = ½ / (x² – 2)
We first identify the sub‑expression x² – 2 as a new function:
g(x) = x² – 2
Thus, f(x) = 1 / g(x). We can further simplify by defining a reciprocal function:
h(x) = 1 / x
Now the original function is a nested composition:
f(x) = h(g(x))
When solving, evaluate from the inside out. For instance, if x = 4:
g(4) = 4² – 2 = 16 – 2 = 14h(14) = 1 / 14f(4) = h(g(4)) = 1 / 14Many functions can be decomposed in more than one way. An alternate decomposition for the example above is:
j(x) = x²
k(x) = 1 / (x – 2)
Substituting j(x) into k(x) yields the same result:
f(x) = k(j(x)) = 1 / (x² – 2)
By mastering decomposition, you’ll solve algebraic equations faster, reduce error, and build a stronger foundation for higher‑level math.