Skip to content
mathlab
0
0
0 XP
Lvl 1
KJ
Lesson 3 ~40 min Functions · Path +85 XP

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.

Today's hook: "$f(3) = 0$" and "$f(0) = 3$" look almost identical and mean completely different things. One says the graph crosses the horizontal axis at $3$; the other says it crosses the vertical axis at $3$. Getting the notation into your hands is worth more than any single technique in this focus area.
0/5QUESTS
Think First
warm-up

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.

Record your answer in your workbook.
1
The Big Idea
+5 XP to read

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.

f ( 2 ) = 5 the function's name the input you chose the output the brackets are not multiplication — there is no number called f f(3) = 0 and f(0) = 3 say entirely different things
$f(a)$
Not multiplication
$f(x)$ never means $f$ times $x$. There is no quantity $f$ to multiply by.
Substitute in brackets
$f(-2)$ means every $x$ becomes $(-2)$, sign included.
Substitute or solve
Input given means substitute. Output given means solve an equation.
2
What You'll Master
objectives

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
3
Words You Need
vocabulary
Function notationWriting $f(x)$ to name a function and show its variable.
ArgumentWhatever is written inside the brackets. The input.
EvaluateSubstitute a value for the variable and simplify.
Zero of a functionAn input $a$ with $f(a) = 0$.
$y$-interceptThe output at input zero, that is $f(0)$.
4
Three Jobs in Four Characters
+5 XP to read

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.

$y$ and $f(x)$
For a function, $y = f(x)$, so the two symbols name the same number. Use $y$ when talking about a graph and $f(x)$ when talking about the rule. The notation $f(x)$ is more precise because it says which input produced the value.
5
Evaluating
+5 XP to read

$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.

6
Substitute or Solve
+5 XP to read

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.

7
What the Notation Does Not Distribute Over
+5 XP to read

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.

8
Common Pitfalls
+5 XP to read
Reading $f(x)$ as $f$ times $x$ and cancelling the $f$.
Fix: $f$ is a name, not a number. From $f(x) = f(3)$ you may not conclude $x = 3$, only that the two inputs share an output.
Confusing $f(0)$ with the solutions of $f(x) = 0$.
Fix: $f(0)$ is one number, the height where the graph meets the vertical axis. The solutions of $f(x) = 0$ are inputs, where it meets the horizontal axis.
Writing $f(x+3) = f(x) + 3$.
Fix: the $+3$ is inside the brackets, so it changes the input before $f$ acts. Substitute the whole bracket $(x+3)$ into the rule and expand.
Losing the sign when substituting a negative, writing $-3^2$ for $f(-3)$ where $f(x) = x^2$.
Fix: bracket the substituted value. $(-3)^2 = 9$, while $-3^2 = -9$, and only the first is the substitution.
Watch Me Solve It · Evaluating in three ways
+15 XP per step
Q1
PROBLEM
Let $f(x) = 2x^2 - x + 5$. Find (a) $f(4)$, (b) $f(-1)$, (c) $f(a+1)$ in expanded form.
  1. 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. 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. 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. 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.
Answer(a) $33$; (b) $8$; (c) $2a^2 + 3a + 6$
Watch Me Solve It · Substituting against solving
+15 XP per step
Q2
PROBLEM
Let $g(x) = x^2 - 6x + 5$. (a) Find $g(0)$. (b) Solve $g(x) = 0$. (c) Solve $g(x) = 5$. (d) State what (a) and (b) say about the graph.
  1. 1
    (a) The input is given, so substitute
    $g(0) = 0 - 0 + 5 = 5$
    One input, one answer.
  2. 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. 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. 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)$.
Answer(a) $5$; (b) $x = 1$ or $5$; (c) $x = 0$ or $6$; (d) $y$-intercept $5$, $x$-intercepts $1$ and $5$
Watch Me Solve It · Working with two functions
+15 XP per step
Q3
PROBLEM
Let $f(x) = x + 4$ and $h(x) = x^2$. Find (a) $f(2) + h(2)$, (b) $h(f(2))$, (c) all $x$ with $f(x) = h(x)$.
  1. 1
    (a) Evaluate each separately, then add
    $f(2) = 6, \quad h(2) = 4, \quad f(2) + h(2) = 10$
    Two independent substitutions.
  2. 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. 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. 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.
Answer(a) $10$; (b) $36$; (c) $x = \dfrac{1 \pm \sqrt{17}}{2}$
D
Brain Trainer · Notation at speed
5 problems

Five items on function notation. Work each one, then reveal the answer.

  1. 1 $f(x) = 5x - 2$. Find $f(3)$.

    Substitute $3$: $15 - 2$.$13$
  2. 2 $f(x) = x^2 + x$. Find $f(-3)$.

    Brackets: $(-3)^2 + (-3) = 9 - 3$.$6$
  3. 3 $f(x) = 2x + 1$. Solve $f(x) = 11$.

    The output is given, so solve $2x + 1 = 11$.$x = 5$
  4. 4 $f(x) = x^2$. Is $f(1+4)$ equal to $f(1) + f(4)$?

    $f(5) = 25$ while $1 + 16 = 17$.No
  5. 5 $f(x) = 3 - x$. Find $f(x+2)$ in simplest form.

    Substitute the whole bracket: $3 - (x+2)$.$1 - x$
Complete in your workbook.
MC1
What it means
+10 XP

The notation $f(5)$ means:

MC2
Signs
+10 XP

If $f(x) = x^2 - 3x$, then $f(-2)$ equals:

MC3
Which axis
+10 XP

For a function $f$, the value $f(0)$ gives:

MC4
Inside the brackets
+10 XP

If $f(x) = 4x$, then $f(x+3)$ equals:

MC5
Distribution
+10 XP

For which function is $f(a+b) = f(a) + f(b)$ true for all $a$ and $b$?

Q6
Evaluate and solve
+15 XP
Q6
SHORT ANSWER
Let $f(x) = x^2 - 2x - 8$.
(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.
Write your working in your book.
Q7
Substituting expressions
+15 XP
Q7
SHORT ANSWER
Let $g(x) = x^2 + 3x$.
(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.
Write your working in your book.
Q8
Reading the notation
+15 XP
Q8
SHORT ANSWER
A function $f$ satisfies $f(2) = 7$, $f(7) = 2$ and $f(0) = 0$.
(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.
Write your working in your book.
S
Stretch Challenge · Functions that undo each other
+25 XP
S
CHALLENGE
(a) A function $f$ satisfies $f(f(x)) = x$ for every $x$. Give two different examples of such a function and verify each.
(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.
R
Quick Review
recap

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 6
First Steps
3-Day Streak
3 in a Row
Lesson Ace
Stretch Seeker
Daily Warrior

Mark lesson as complete

Tick when you've finished Learn, Practice and the Stretch. Earns +85 XP and +25 coins.