Teacher Guide: Composite Functions
Learn how to combine two functions to create a new function using composition.
Use this lesson with your class
Free, no student accounts needed.
Share with students
Students open the lesson and practise with instant feedback.
Class quiz
10 questions on Advanced Functions. Students join with a name, you see everyone's score.
For Teachers
- Define composite functions and understand the notation
- Evaluate composite functions at specific values
- Find formulas for composite functions algebraically
- Demonstrate that composition is not commutative
- • Understanding of function notation
- • Ability to evaluate functions at given values
- • Basic algebraic manipulation skills
- • Familiarity with domain and range
- 1. Can you think of a real-life example where you do one task first, then another task that depends on the first result?
- 2. Why do you think the order of composition matters? Can you find two functions where the order doesn't matter?
- 3. If for all , what does this tell us about the relationship between and ?
- 4. How is function composition similar to following a recipe with multiple steps?
Thinking means
Assuming composition is commutative like addition
For Struggling Students:
- • Use simple linear functions first (, )
- • Draw function machines showing input/output flow
- • Practice evaluating at numbers before finding general formulas
For On-Level Students:
- • Work with polynomial and rational functions
- • Compare and for various function pairs
- • Solve problems requiring decomposition of composite functions
For Advanced Students:
- • Explore identity functions: find such that
- • Work with piecewise and absolute value compositions
- • Connect to inverse functions and the Chain Rule preview
- HSF-BF.A.1.c (CCSS.MATH.CONTENT.HSF.BF.A.1.C)
Compose functions
- HSF-BF.B.4.a (CCSS.MATH.CONTENT.HSF.BF.B.4.A)
Solve an equation of the form f(x) = c for a simple function f that has an inverse
- visualFunction Machine Chain
Visualize inputs flowing through two function machines
- activityOrder Matters Game
Compare vs with different function pairs
- worksheetReal-World Composition
Apply composite functions to unit conversions and formulas
Lesson Content
Everything students see: definition, examples, common mistakes, applications. Tap to open.
Lesson Content
Everything students see: definition, examples, common mistakes, applications. Tap to open.
Definition
Worked Examples
If and , find .
Understand the notation
→ First find , then apply
Evaluate the inner function
→
Substitute into outer function
→
Calculate final answer
→
Answer:
Common Mistakes
Confusing with
Why it's wrong: The circle notation means composition, not multiplication. , which substitutes into .
Correct: means apply first, then . Multiplication is a completely different operation.
Getting the order backwards
Why it's wrong: In , you might think comes first because it appears first.
Correct: Read inside out: means is applied first, then .
Assuming
Why it's wrong: Unlike multiplication, composition is NOT commutative in general.
Correct: Always check both orders. Usually .
Why It Matters
- Modeling Complex Processes: A temperature conversion from Celsius to Fahrenheit, then to Kelvin, is a composition of two functions
- Computer Science: Nested function calls like `print(len(str(x)))` are composite functions
- Economics: Calculating total cost involves composing unit cost with quantity functions
- Calculus: The Chain Rule for derivatives is based on understanding composite functions
Real World Applications
Unit Conversion Chains
Converting between measurement units often requires composing multiple conversion functions.
Example:
To convert miles to meters: first convert miles to kilometers with , then kilometers to meters with . So meters.
A European car speedometer shows kilometers per hour. You need to convert to meters per second. Function converts km to m. Function converts per hour to per second.
If a car travels at 90 km/h, what is its speed in m/s?
Step 1: Write the mathematical expression
Calculate :
Computer Programming
Nested function calls in programming are composite functions.
Example:
In Python, `len(str(n))` counts the digits of a number. Here converts to string, and counts characters.
A program uses to add a bonus, and to double a score. The composed function first doubles, then adds bonus.
If a player's base score is 45, what is the final score after applying ?
Step 1: Write the mathematical expression
Calculate :
Key Takeaways
- 1A composite function applies first, then to the result
- 2Order matters: is usually NOT equal to
- 3To evaluate, work from the inside out: first compute the inner function
- 4Composition is different from multiplication:
Frequently Asked Questions
How do I remember which function to apply first?
Can any two functions be composed?
Is there a shortcut to find composite functions?
Glossary
- Composite function
- A function formed by applying one function to the result of another, written or
- Inner function
- In , the inner function is evaluated first
- Outer function
- In , the outer function is applied to the result of
- Function composition
- The operation of combining two functions where the output of one becomes the input of the other