What Are Composite Functions?
When we chain two functions together so that the output of one becomes the input of the next, we create a composite function.
Composite Function: Given two functions and , the composite function is defined by We first apply to , then apply to the result. Read as " composed with " or " after ".
Think of it as a pipeline: .
The order matters critically , means acts first, then . This is the opposite of how it reads left to right, which trips up many students.
Composition is not commutative in general: . Always identify which function acts first.
Working With Composite Functions
Let and . Find and .
Finding :
Finding :
Clearly in general , composition is order-dependent.
Let and . Evaluate .
Step 1: Apply first:
Step 2: Apply :
So .
Alternatively, find the composite rule first: , then substitute : . ✓
Composing three functions: Let , , . Find .
Work from the innermost function outward:
Step 1: Apply first:
Step 2: Apply :
Step 3: Apply :
So .
When evaluating a composite at a specific value, it is often faster to work numerically step by step rather than finding the general formula first.