Back to Lesson

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.

Printable worksheet

All practice problems on paper, with a separate answer key.

Class quiz

10 questions on Advanced Functions. Students join with a name, you see everyone's score.

For Teachers

Learning Objectives
  • 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
Prerequisites
  • Understanding of function notation
  • Ability to evaluate functions at given values
  • Basic algebraic manipulation skills
  • Familiarity with domain and range
Discussion Starters
  • 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?
Common Misconceptions

Thinking means

Assuming composition is commutative like addition

Differentiation Ideas

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
Standards Alignment
  • 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

Lesson Resources
  • 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.

Definition

A composite function is created when one function is applied to the result of another function. We write this as or , read as "f of g of x."
Key Idea: In , we first evaluate , then use that result as the input for .
Important: Order matters! in general.

Worked Examples

If and , find .

1

Understand the notation

First find , then apply

2

Evaluate the inner function

3

Substitute into outer function

4

Calculate final 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

Composite functions are essential for:
  • 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
Think of it like following GPS directions: first go to the store (function ), then from the store go home (function ). The order matters!

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.

1Try It Yourself

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.

2Try It Yourself

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?

Think "inside out." In , is inside, so it's applied first. Then is applied to that result. The function closest to goes first.

Can any two functions be composed?

The range (outputs) of the inner function must be in the domain (allowed inputs) of the outer function. For example, if and , then is undefined because and we can't take the square root of a negative number.

Is there a shortcut to find composite functions?

Yes! Simply substitute the entire expression for wherever you see in . Then simplify the result.

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

More in This Topic