Function Notation
Function notation looks intimidating — $f(x)$, $f(g(x))$, $f^{-1}(x)$ — but it's just a labeling system that lets you talk about functions cleanly. Once you know what each symbol *means*, the questions become procedural.
A function is a rule that takes an input and gives back exactly one output. We label functions with letters (usually , , ) and write [the rule] to define one.
means: whatever you plug in for , multiply by 2 and add 3.
Reading function notation:
- = the output when you plug 5 in for .
- = the output when you plug in for . Substitute exactly what's inside the parentheses.
- = a composition. Compute first, then plug that into .
| Notation | Means | Example with $f(x) = 2x + 1$ |
|---|---|---|
| $f(5)$ | Plug 5 in for $x$ | $f(5) = 2(5) + 1 = 11$ |
| $f(a)$ | Plug $a$ in for $x$ | $f(a) = 2a + 1$ |
| $f(x + 2)$ | Plug $(x+2)$ in for $x$ | $f(x+2) = 2(x+2) + 1 = 2x + 5$ |
| $f(g(x))$ | Composition: do $g$ first, then $f$ | If $g(x) = x^2$: $f(x^2) = 2x^2 + 1$ |
| $f^{-1}(y)$ | Inverse: input $y$, output the $x$ that gave it | $y = 2x+1$ → $x = (y-1)/2$, so $f^{-1}(y) = (y-1)/2$ |
Plugging in is the key skill. When you see , replace EVERY in the function's rule with — including the parentheses. If , then
Composition: . Read it inside-out. If and :
- Compute first.
- Plug that into : .
- So .
Note: and are usually different! Order matters.
Reading from a graph or table:
- "Find from this graph" → look at , read off the -value.
- "Find when " → look at , read off the -value (could be more than one).
Inverse functions : the function that undoes . If , then . To find algebraically: write , swap and , then solve for .
Quick check. Function notation = substitute. Wrap whatever's inside the parentheses with its own parentheses, then evaluate carefully.
If f(x) = 4x + 2 and g(x) = 4x + 4, what is f(g(4))?
Worked examples
If , what is ?
If and , what is ?
Common pitfalls
with is , NOT or . Always wrap the substitution in parentheses, expand carefully, then simplify.
is multiplication. is composition (plug 's output into ). They're completely different operations.
is read inside-out: first, then . Don't compute and then plug into — that's , which usually gives a different answer.
means evaluate at input 2 — substitute. means multiply by 2 — different. The parentheses indicate function evaluation, not multiplication.
Key takeaways
is a function — a rule mapping each input to one output. The letter (, , ) is just the function's label.
Substitution: replace every in the rule with whatever's inside the parentheses, using parentheses to keep order of operations.
Composition is inside-out: first, then . Order matters.
From a graph: is the -value at . To find when , look at and read off the .
Inverse undoes : if , then .
Watch & learn
Curated Khan Academy walkthroughs on Function Notation. They're complementary to this lesson — watch one if a written explanation isn't clicking, or after to reinforce.
Try it yourself
5 practice questions on Function Notation, drawn from the question bank. The tutor is one click away if you get stuck.