Function Operations and Composition
Function composition lets you chain two functions together so that the output of one becomes the input of the next. This shows up constantly in later math courses and in real-world modeling, where multi-step processes naturally feed into each other. Before getting to composition, though, you need to be comfortable combining functions with basic arithmetic.
Combining Functions Algebraically
You can add, subtract, multiply, or divide two functions and by performing that operation on their outputs for the same input .
- Sum:
- Difference:
- Product:
- Quotient: , where
For the sum, difference, and product, the domain is the intersection of the domains of and . Both functions have to be defined at a given for the combined function to work there.
For the quotient, you take that same intersection but also exclude any -values where , since division by zero is undefined.
Example: If (domain: ) and (domain: all reals), then the domain of is . The domain of is with .
Creation of Composite Functions
Composition creates a new function by feeding the output of one function into another:
Read this as " composed with of ." The key idea: evaluate the inner function first, then plug that result into the outer function .
To evaluate a composite function at a specific value:
- Calculate .
- Take that result and plug it into . Your answer is .
Example: If and , then .
Order matters. Composition is not commutative. Using the same functions above, , which is a completely different answer. Always pay close attention to which function is inner and which is outer.

Domain of Composite Functions
Finding the domain of requires a two-part check:
- Start with the domain of the inner function . The input must be in 's domain.
- Check that lands in the domain of . The output of has to be a valid input for .
- The domain of is the set of all -values that satisfy both conditions.
Example: Let and . The domain of is all reals. But requires its input to be , so you need , meaning , which gives . That's the domain of .
Components of Composite Functions
Sometimes you'll be given a composite function and asked to break it into its component parts. The strategy is to identify what happens "inside" versus "outside."
- The inner function is applied first (it's the part closest to ).
- The outer function is applied last (it's the operation that wraps around everything).
Example: If , you could decompose this as and , so . There's sometimes more than one valid decomposition, but look for the most natural split.

Applications of Function Composition
Composition models any situation where one process feeds into another:
- Unit conversion: If converts inches to feet and converts feet to meters, then converts inches directly to meters.
- Course grades: If converts raw scores to percentages and converts percentages to letter grades, then takes raw scores straight to letter grades.
- Business calculations: If gives revenue from units sold and gives cost, you could compose these with other functions to model multi-step financial processes.
The pattern is always the same: identify which process happens first (that's your inner function) and which happens second (that's your outer function).
Special Functions and Relationships
- A one-to-one function produces a unique output for every unique input. Only one-to-one functions have inverse functions.
- An inverse function "undoes" the original. If , then . When you compose a function with its inverse, you get back to where you started: .
- The identity function leaves every input unchanged. It plays a role similar to multiplying by 1 or adding 0: composing any function with the identity function returns the original function.