Function Notation
Function notation is the shorthand that makes everything after it readable. It packs three pieces of information into four characters, and once it is automatic, statements such as "solve $f(x) = 0$" stop needing translation.
Let $f(x) = x^2 + 1$. Work out $f(2) + f(3)$, and separately work out $f(2 + 3)$. Before you check, predict whether they will be equal. Then say, in one sentence, what your two answers show about the notation.
The symbol $f(x)$ does three jobs at once: $f$ names the function, the brackets announce that what follows is the input, and the whole expression stands for the output. It is never $f$ multiplied by $x$.
$$f(a) = \text{the value of } f(x) \text{ when } x = a$$
Read every statement by asking which side is known. $f(3)$ gives you the output when the input is $3$: substitute. $f(x) = 3$ gives you the output and asks for the input: solve.
Know
- That $f(x)$ names a function and announces its variable
- That $f(a)$ is the output when the input is $a$
- That several functions can be named at once, using $f$, $g$, $h$ and so on
Understand
- Why $f(a+b)$ is generally not $f(a) + f(b)$
- Why $f(3) = 0$ and $f(0) = 3$ describe different features of a graph
Can Do
- Evaluate a function at a number, a negative number or an expression
- Solve $f(x) = c$ for the inputs giving a stated output
- Read and write statements involving more than one named function
Writing
$$f(x) = 3x - 1$$
does three things at once. The letter $f$ gives the function a name, so it can be referred to later. The bracketed $x$ announces which letter is the variable. And the whole symbol $f(x)$ stands for the output, so the equation says what that output is.
$f(x)$ is not $f$ multiplied by $x$. There is no separate quantity called $f$, so there is nothing to multiply and nothing to cancel. The brackets here mean "applied to", not "times".
Any letter may be used as a name, and questions routinely use several at once:
$$f(x) = 3x - 1, \qquad g(x) = x^2, \qquad h(t) = 5 - t$$
The third of those uses $t$ as its variable, which is allowed and common when the input stands for something like time. The letter chosen for the variable carries no mathematical weight: $h(t) = 5 - t$ and $h(x) = 5 - x$ are the same function.
$f(a)$ means: replace every $x$ in the rule by $a$, then simplify. Take $f(x) = x^2 - 4x + 1$.
$$f(3) = 3^2 - 4(3) + 1 = 9 - 12 + 1 = -2$$
Negatives need brackets, every time:
$$f(-2) = (-2)^2 - 4(-2) + 1 = 4 + 8 + 1 = 13$$
Without them, $-2^2$ evaluates as $-4$ rather than $4$, and the answer is wrong by $8$.
The input need not be a number. Anything may be substituted, provided it goes in as a whole, in brackets:
$$f(2t) = (2t)^2 - 4(2t) + 1 = 4t^2 - 8t + 1$$
$$f(x+1) = (x+1)^2 - 4(x+1) + 1 = x^2 + 2x + 1 - 4x - 4 + 1 = x^2 - 2x - 2$$
Notice what the second one is not. $f(x+1)$ is not $f(x) + 1$: the addition happens to the input, before $f$ acts, not to the output afterwards. That distinction reappears in Lesson 7 as the difference between a horizontal and a vertical translation.
Every question involving the notation is one of two kinds, and telling them apart is most of the skill.
The input is given. "Find $f(4)$." Substitute $4$ and evaluate. The answer is a number, and there is exactly one, because $f$ is a function.
The output is given. "Solve $f(x) = 4$." Set the rule equal to $4$ and solve for $x$. The answer may be one value, several, or none, because nothing prevents two inputs from sharing an output.
With $f(x) = x^2 - 3$:
$$f(4) = 16 - 3 = 13 \qquad \text{one substitution, one answer}$$
$$f(x) = 13 \ \Rightarrow \ x^2 = 16 \ \Rightarrow \ x = \pm 4 \qquad \text{one equation, two answers}$$
The asymmetry is the function condition doing its work. One input gives one output; one output may come from many inputs.
Two special cases are worth naming. $f(0)$ is the $y$-intercept of the graph, and the solutions of $f(x) = 0$ are the $x$-intercepts. Those two are the ones most often confused, and they are on opposite axes.
The brackets in $f(x)$ look like the brackets in $3(x)$, and that resemblance causes a specific error: treating $f$ as though it distributes.
$$f(a+b) \neq f(a) + f(b) \qquad \text{in general}$$
One example settles it. With $f(x) = x^2$:
$$f(2+3) = f(5) = 25 \qquad \text{but} \qquad f(2) + f(3) = 4 + 9 = 13$$
Likewise $f(2x) \neq 2f(x)$ in general: for the same $f$, the left side is $4x^2$ and the right is $2x^2$.
The reason is that $f$ is an instruction, not a multiplier. "Square the input" applied to $2+3$ squares the whole of $5$; it does not square the parts and add them.
A small number of functions do happen to satisfy $f(a+b) = f(a) + f(b)$, and they are exactly those of the form $f(x) = mx$. That is a special property of straight lines through the origin, not a rule of notation, and assuming it elsewhere is the single most expensive habit in this topic.
Watch Me Solve It · 3 examples
-
1(a) Substitute the number$f(4) = 2(4)^2 - 4 + 5 = 32 - 4 + 5 = 33$Powers first, then the multiplication, then the addition.
-
2(b) Bracket the negative$f(-1) = 2(-1)^2 - (-1) + 5 = 2 + 1 + 5 = 8$$(-1)^2 = 1$, and subtracting $-1$ adds $1$. Both are places where signs are lost.
-
3(c) Substitute the whole expression$f(a+1) = 2(a+1)^2 - (a+1) + 5$The bracket goes in as a unit, everywhere $x$ appeared.
-
4(c) Expand and collect$= 2(a^2 + 2a + 1) - a - 1 + 5$$= 2a^2 + 4a + 2 - a + 4 = 2a^2 + 3a + 6$Check with $a = 3$: this gives $18 + 9 + 6 = 33$, and $f(3+1) = f(4) = 33$ from part (a). They agree.
-
1(a) The input is given, so substitute$g(0) = 0 - 0 + 5 = 5$One input, one answer.
-
2(b) The output is given, so solve$x^2 - 6x + 5 = 0$$(x-1)(x-5) = 0 \ \Rightarrow \ x = 1 \ \text{or} \ x = 5$Two inputs share the output $0$, which is permitted.
-
3(c) Solve again with a different right-hand side$x^2 - 6x + 5 = 5$$x^2 - 6x = 0 \ \Rightarrow \ x(x-6) = 0 \ \Rightarrow \ x = 0 \ \text{or} \ x = 6$Note that $x = 0$ appears, consistent with part (a): $g(0) = 5$.
-
4(d) Read off the graph features$g(0) = 5$ says the graph meets the vertical axis at $(0,5)$. The solutions of $g(x) = 0$ say it meets the horizontal axis at $(1,0)$ and $(5,0)$.
-
1(a) Evaluate each separately, then add$f(2) = 6, \quad h(2) = 4, \quad f(2) + h(2) = 10$Two independent substitutions.
-
2(b) Work from the inside out$f(2) = 6$$h(f(2)) = h(6) = 36$The output of $f$ becomes the input of $h$. Doing it in the other order would give $f(h(2)) = f(4) = 8$, a different number.
-
3(c) Set the two rules equal and solve$x + 4 = x^2$$x^2 - x - 4 = 0$This asks where the two graphs meet.
-
4(c) Use the quadratic formula$x = \frac{1 \pm \sqrt{1 + 16}}{2} = \frac{1 \pm \sqrt{17}}{2}$The discriminant is $17 > 0$, so there are two solutions. They are irrational, which is normal and not a sign of error.
Brain Trainer · 5 problems
Five items on function notation. Work each one, then reveal the answer.
-
1 $f(x) = 5x - 2$. Find $f(3)$.
Substitute $3$: $15 - 2$.$13$ -
2 $f(x) = x^2 + x$. Find $f(-3)$.
Brackets: $(-3)^2 + (-3) = 9 - 3$.$6$ -
3 $f(x) = 2x + 1$. Solve $f(x) = 11$.
The output is given, so solve $2x + 1 = 11$.$x = 5$ -
4 $f(x) = x^2$. Is $f(1+4)$ equal to $f(1) + f(4)$?
$f(5) = 25$ while $1 + 16 = 17$.No -
5 $f(x) = 3 - x$. Find $f(x+2)$ in simplest form.
Substitute the whole bracket: $3 - (x+2)$.$1 - x$
Multiple Choice · 5 questions
The notation $f(5)$ means:
If $f(x) = x^2 - 3x$, then $f(-2)$ equals:
For a function $f$, the value $f(0)$ gives:
If $f(x) = 4x$, then $f(x+3)$ equals:
For which function is $f(a+b) = f(a) + f(b)$ true for all $a$ and $b$?
Short Answer · 3 questions
(a) Find $f(0)$, $f(4)$ and $f(-3)$.
(b) Solve $f(x) = 0$.
(c) Solve $f(x) = -8$.
(d) State what your answers to (a) and (b) tell you about the graph of $y = f(x)$, naming the relevant axis in each case.
(a) Find $g(2a)$ in simplest form.
(b) Find $g(x-1)$ in expanded form.
(c) Show that $g(x+1) - g(x) = 2x + 4$.
(d) Use part (c) to find $g(101) - g(100)$ without evaluating either term.
(a) State the coordinates of three points on the graph of $y = f(x)$.
(b) Explain why the given information does not tell you whether $f(3) = 5$.
(c) A student writes "since $f(2) = 7$ and $f(7) = 2$, we have $f(f(2)) = 2$". Decide whether this is correct and explain.
(d) Another student writes "since $f(2) = 7$, we have $f(4) = 14$". Decide whether this is correct and explain.
(b) Explain what $f(f(x)) = x$ says about the graph of $f$ in terms of the points $(a,b)$ it contains.
(c) Show that $f(x) = \dfrac{1}{x}$ satisfies $f(f(x)) = x$ for every $x$ except one value, and say what happens at that value.
Three jobs
Names the function, announces the variable, stands for the output
Never multiplication
There is no number $f$ to multiply or cancel
Substitute or solve
$f(3)$ substitute; $f(x) = 3$ solve
No distributing
$f(a+b) \neq f(a) + f(b)$ in general
Your Badges
0 of 6Mark lesson as complete
Tick when you've finished Learn, Practice and the Stretch. Earns +85 XP and +25 coins.