Functions and Function Notation

Learn f(x) notation, domain/range, composition, and transformations for ACT Math with worked examples and practice.

Functions and function notation are staple topics on the ACT Math section, appearing in approximately 6–10 questions out of 60 on every administration. The ACT tests functions under the Intermediate Algebra and Modeling categories, and these questions span the full difficulty range — from basic evaluation (easy, appearing early in the test) to composition and transformations (medium-to-hard, appearing in the second half). Understanding f(x)f(x) notation, domain and range, function composition, and graph transformations is essential for any student targeting a score of 24 or above.

The ACT Math section gives you 60 questions in 60 minutes, calculators are allowed on every question (unlike the SAT, which has a no-calculator section), and there is no penalty for wrong answers — so answer every question. Function questions appear throughout the test, with straightforward evaluation problems in the first third and more complex composition, transformation, and abstract problems in the second half.

A key point about the ACT: it does not provide a formula sheet. You need to know function concepts from memory, though the good news is that function problems rely more on understanding notation and process than on memorizing formulas.

In this guide, you will master f(x)f(x) notation and evaluation, learn to determine domain and range, compose functions, understand common transformations, work with inverse functions, and apply ACT-specific strategies throughout. Every concept is illustrated with worked examples and followed by realistic practice problems.

Core Concepts

What Is a Function?

A function is a rule that assigns exactly one output to each input. Think of it as a machine: you feed in a number (the input), the machine processes it according to its rule, and it produces exactly one number (the output).

If f(x)=2x+3f(x) = 2x + 3, then for every value of xx there is exactly one value of f(x)f(x):

  • Input x=1x = 1 → Output f(1)=2(1)+3=5f(1) = 2(1) + 3 = 5
  • Input x=4x = -4 → Output f(4)=2(4)+3=5f(-4) = 2(-4) + 3 = -5

The notation f(x)f(x) is read "f of x." The xx inside the parentheses is the input (also called the argument or independent variable), and f(x)f(x) is the output (also called the dependent variable or the value of the function at xx). The letter ff is simply the name of the function — other common names are gg, hh, pp, etc.

Critical point: f(x)f(x) does NOT mean "ff times xx." It is not multiplication. It means "the function named ff evaluated at the input xx." This notational confusion trips up many students.

Evaluating Functions

To evaluate f(a)f(a), replace every xx in the function's formula with aa, then simplify.

If f(x)=x23x+5f(x) = x^2 - 3x + 5:

  • f(2)=(2)23(2)+5=46+5=3f(2) = (2)^2 - 3(2) + 5 = 4 - 6 + 5 = 3
  • f(1)=(1)23(1)+5=1+3+5=9f(-1) = (-1)^2 - 3(-1) + 5 = 1 + 3 + 5 = 9
  • f(0)=(0)23(0)+5=00+5=5f(0) = (0)^2 - 3(0) + 5 = 0 - 0 + 5 = 5
  • f(a+1)=(a+1)23(a+1)+5=a2+2a+13a3+5=a2a+3f(a + 1) = (a+1)^2 - 3(a+1) + 5 = a^2 + 2a + 1 - 3a - 3 + 5 = a^2 - a + 3

The last example shows that you can evaluate a function at an algebraic expression, not just a number. The ACT tests this — for instance, asking you to find f(2x)f(2x) or f(x+h)f(x+h).

Evaluating Functions from Tables and Graphs

The ACT frequently presents functions as tables or graphs rather than equations.

From a table: If a table shows f(3)=7f(3) = 7, then the input 3 produces the output 7. To find f(3)f(3), look up x=3x = 3 and read the corresponding f(x)f(x) value. To find xx when f(x)=7f(x) = 7, look for 7 in the output column and read the corresponding xx.

From a graph: f(a)f(a) is the yy-coordinate of the graph at x=ax = a. To find f(3)f(3), go to x=3x = 3 on the horizontal axis, move up (or down) to the curve, and read the yy-value.

Domain and Range

The domain is the set of all valid inputs (xx-values for which the function is defined). The range is the set of all possible outputs (yy-values or f(x)f(x)-values that the function actually produces).

Common domain restrictions:

  • Division by zero: The denominator cannot equal zero. For f(x)=1x3f(x) = \frac{1}{x-3}, the domain excludes x=3x = 3.
  • Square roots of negatives: The expression under a square root must be 0\geq 0. For f(x)=x2f(x) = \sqrt{x - 2}, the domain is x2x \geq 2.
  • Logarithms: The argument must be positive. For f(x)=ln(x+4)f(x) = \ln(x + 4), the domain is x>4x > -4.
  • No restrictions: Polynomials like f(x)=x2+3x1f(x) = x^2 + 3x - 1 have domain = all real numbers.

Finding the range: Consider what output values are possible.

  • For f(x)=x2f(x) = x^2: the range is y0y \geq 0 (squaring always gives non-negative results)
  • For f(x)=x2+4f(x) = -x^2 + 4: the maximum value is 4 (at x=0x = 0), so range is y4y \leq 4
  • For f(x)=xf(x) = |x|: the range is y0y \geq 0

Composition of Functions

Composition means applying one function and then feeding the result into another function. The notation is f(g(x))f(g(x)) or (fg)(x)(f \circ g)(x), which means: first apply gg to xx, then apply ff to the result.

If f(x)=2x+1f(x) = 2x + 1 and g(x)=x2g(x) = x^2:

Numerical composition:

  • f(g(3))=f(32)=f(9)=2(9)+1=19f(g(3)) = f(3^2) = f(9) = 2(9) + 1 = 19
  • g(f(3))=g(2(3)+1)=g(7)=72=49g(f(3)) = g(2(3)+1) = g(7) = 7^2 = 49

Notice: f(g(3))g(f(3))f(g(3)) \neq g(f(3)). The order of composition matters!

Algebraic composition: f(g(x))=f(x2)=2(x2)+1=2x2+1f(g(x)) = f(x^2) = 2(x^2) + 1 = 2x^2 + 1 g(f(x))=g(2x+1)=(2x+1)2=4x2+4x+1g(f(x)) = g(2x+1) = (2x+1)^2 = 4x^2 + 4x + 1

Again, different results depending on the order.

Function Transformations

Understanding how changes to the equation affect the graph is a crucial and frequently tested ACT skill:

Transformation Effect on Graph
f(x)+kf(x) + k Shift up kk units
f(x)kf(x) - k Shift down kk units
f(x+h)f(x + h) Shift left hh units
f(xh)f(x - h) Shift right hh units
f(x)-f(x) Reflect over the xx-axis (flip vertically)
f(x)f(-x) Reflect over the yy-axis (flip horizontally)
af(x)af(x) where a>1a > 1 Vertical stretch by factor aa
af(x)af(x) where 0<a<10 < a < 1 Vertical compression by factor aa

The counterintuitive rule: f(x+h)f(x + h) shifts left, not right. The sign inside the parentheses is opposite to the direction of the horizontal shift. This is because adding hh to xx makes the function reach the "same value" sooner (earlier on the xx-axis).

How to remember: Vertical changes (+k+k, k-k, multiplication by aa) do what you expect. Horizontal changes (+h+h, h-h inside the argument) do the opposite of what you expect.

Inverse Functions

The inverse function f1(x)f^{-1}(x) "undoes" what ff does. If f(a)=bf(a) = b, then f1(b)=af^{-1}(b) = a. The function and its inverse "cancel each other out."

To find the inverse algebraically:

  1. Replace f(x)f(x) with yy
  2. Swap xx and yy
  3. Solve for yy
  4. Rename yy as f1(x)f^{-1}(x)

Example: Find the inverse of f(x)=3x7f(x) = 3x - 7. y=3x7y = 3x - 7 x=3y7(swap x and y)x = 3y - 7 \quad \text{(swap } x \text{ and } y\text{)} x+7=3yx + 7 = 3y y=x+73y = \frac{x + 7}{3} f1(x)=x+73f^{-1}(x) = \frac{x + 7}{3}

Verify: f(f1(x))=3x+737=(x+7)7=xf(f^{-1}(x)) = 3 \cdot \frac{x+7}{3} - 7 = (x+7) - 7 = x

Quick method for finding f1(c)f^{-1}(c): Instead of finding the full inverse formula, set f(x)=cf(x) = c and solve for xx. For example, to find f1(12)f^{-1}(12) when f(x)=5x3f(x) = 5x - 3: solve 5x3=125x - 3 = 12, getting x=3x = 3. So f1(12)=3f^{-1}(12) = 3.

Even and Odd Functions

  • Even functions: f(x)=f(x)f(-x) = f(x) for all xx. The graph is symmetric about the yy-axis. Examples: f(x)=x2f(x) = x^2, f(x)=xf(x) = |x|, f(x)=cosxf(x) = \cos x.
  • Odd functions: f(x)=f(x)f(-x) = -f(x) for all xx. The graph is symmetric about the origin. Examples: f(x)=x3f(x) = x^3, f(x)=xf(x) = x, f(x)=sinxf(x) = \sin x.
  • Neither: Most functions are neither even nor odd. Example: f(x)=x2+xf(x) = x^2 + x.

Piecewise Functions

A piecewise function uses different rules for different intervals of xx:

f(x)={2x+1if x<0x2if x0f(x) = \begin{cases} 2x + 1 & \text{if } x < 0 \\ x^2 & \text{if } x \geq 0 \end{cases}

To evaluate f(3)f(-3): since 3<0-3 < 0, use the first rule: f(3)=2(3)+1=5f(-3) = 2(-3) + 1 = -5.

To evaluate f(4)f(4): since 404 \geq 0, use the second rule: f(4)=42=16f(4) = 4^2 = 16.

Always check which interval your input falls in before applying a rule.

Strategy Tips

Tip 1: Substitute Carefully with Parentheses

The most common function questions simply ask you to evaluate f(a)f(a). The key is using parentheses when substituting, especially with negative numbers. Write f(3)=(3)2=9f(-3) = (-3)^2 = 9, not f(3)=32=9f(-3) = -3^2 = -9. Those parentheses make all the difference.

Tip 2: For Composition, Work Inside-Out

In f(g(2))f(g(2)), first compute g(2)g(2), then plug the result into ff. Always start with the innermost function. Do not try to combine steps — that is where errors creep in.

Tip 3: Remember Transformation Directions

Horizontal shifts are counterintuitive: f(x3)f(x - 3) shifts right 3, and f(x+3)f(x + 3) shifts left 3. Vertical shifts are intuitive: f(x)+3f(x) + 3 shifts up 3. If you ever get confused, test with a specific point: if (2,5)(2, 5) is on f(x)f(x), then (5,5)(5, 5) is on f(x3)f(x-3) (shifted right 3).

Tip 4: Use the Vertical Line Test for Graphs

If the ACT shows a graph and asks "which could be f(x)f(x)?", apply the vertical line test. If any vertical line crosses the graph more than once, it is not a function (each input must have exactly one output).

Tip 5: Plug In for Abstract Function Questions

When a question involves abstract expressions like f(x+h)f(x)f(x+h) - f(x) or asks about properties of functions, assign ff a simple specific function like f(x)=x2f(x) = x^2 and compute concrete numbers to match answer choices.

Worked Example: Example 1

Problem

If f(x)=3x22x+1f(x) = 3x^2 - 2x + 1, what is f(2)f(-2)?

Solution

f(2)=3(2)22(2)+1=3(4)+4+1=12+4+1=17f(-2) = 3(-2)^2 - 2(-2) + 1 = 3(4) + 4 + 1 = 12 + 4 + 1 = 17

Note the parentheses around 2-2 — they are essential.

Worked Example: Example 2

Problem

If f(x)=x+4f(x) = x + 4 and g(x)=2x2g(x) = 2x^2, what is f(g(3))f(g(3))?

Solution

Step 1 — evaluate the inner function: g(3)=2(3)2=2(9)=18g(3) = 2(3)^2 = 2(9) = 18

Step 2 — plug into the outer function: f(18)=18+4=22f(18) = 18 + 4 = 22

Worked Example: Example 3

Problem

What is the domain of f(x)=x+1x3f(x) = \frac{\sqrt{x+1}}{x-3}?

Solution

There are two restrictions to consider:

  1. Square root: x+10x + 1 \geq 0, so x1x \geq -1
  2. Denominator: x30x - 3 \neq 0, so x3x \neq 3

Combining: the domain is all x1x \geq -1 except x=3x = 3. In interval notation: [1,3)(3,)[-1, 3) \cup (3, \infty).

Worked Example: Example 4

Problem

The graph of y=f(x)y = f(x) passes through the point (2,5)(2, 5). Which equation represents the graph shifted 2 units to the right and 3 units up?

Solution

Shift right 2: replace xx with (x2)(x-2), giving f(x2)f(x-2).

Shift up 3: add 3 to the output, giving f(x2)+3f(x-2) + 3.

Verify with the point: the original point (2,5)(2, 5) maps to (2+2,5+3)=(4,8)(2+2, 5+3) = (4, 8). Check: f(42)+3=f(2)+3=5+3=8f(4-2) + 3 = f(2) + 3 = 5 + 3 = 8

Worked Example: Example 5

Problem

If f(x)=5x3f(x) = 5x - 3, what is f1(12)f^{-1}(12)?

Solution

Method 1 (Quick): Set f(x)=12f(x) = 12 and solve: 5x3=125x=15x=35x - 3 = 12 \Rightarrow 5x = 15 \Rightarrow x = 3. So f1(12)=3f^{-1}(12) = 3.

Method 2 (Full inverse): y=5x3x=y+35y = 5x - 3 \Rightarrow x = \frac{y+3}{5}, so f1(x)=x+35f^{-1}(x) = \frac{x+3}{5}. Then f1(12)=12+35=155=3f^{-1}(12) = \frac{12+3}{5} = \frac{15}{5} = 3.

Worked Example: Example 6

Problem

A piecewise function is defined as f(x)=2x+5f(x) = 2x + 5 for x1x \leq 1 and f(x)=x2+2f(x) = x^2 + 2 for x>1x > 1. What is f(3)+f(4)f(-3) + f(4)?

Solution

f(3)f(-3): Since 31-3 \leq 1, use the first rule: f(3)=2(3)+5=1f(-3) = 2(-3) + 5 = -1.

f(4)f(4): Since 4>14 > 1, use the second rule: f(4)=42+2=18f(4) = 4^2 + 2 = 18.

f(3)+f(4)=1+18=17f(-3) + f(4) = -1 + 18 = 17.

Practice Problems

  1. Problem 1

    If f(x)=4x7f(x) = 4x - 7, what is f(f(3))f(f(3))?

    A) 5 \quad B) 13 \quad C) 20 \quad D) 45 \quad E) 73

    Answer: B) 13. First: f(3)=127=5f(3) = 12 - 7 = 5. Then: f(5)=207=13f(5) = 20 - 7 = 13.

    Problem 2

    What is the range of f(x)=x2+4f(x) = -x^2 + 4?

    A) y4y \leq 4 \quad B) y4y \geq 4 \quad C) All real numbers \quad D) y0y \leq 0 \quad E) y0y \geq 0

    Answer: A) y4y \leq 4. The parabola opens downward with vertex at (0,4)(0, 4), so the maximum output is 4 and the range is y4y \leq 4.

    Problem 3

    If g(x)=2x+1g(x) = \frac{2}{x+1}, for what value of xx is g(x)g(x) undefined?

    A) 2-2 \quad B) 1-1 \quad C) 00 \quad D) 11 \quad E) 22

    Answer: B) 1-1. The denominator x+1=0x + 1 = 0 when x=1x = -1, causing division by zero.

    Problem 4

    The graph of y=f(x)y = f(x) passes through (2,5)(2, 5). Through which point does the graph of y=f(x3)+1y = f(x - 3) + 1 pass?

    A) (5,6)(5, 6) \quad B) (1,6)(-1, 6) \quad C) (5,4)(5, 4) \quad D) (1,4)(-1, 4) \quad E) (2,6)(2, 6)

    Answer: A) (5,6)(5, 6). Shift right 3: xx goes from 2 to 5. Shift up 1: yy goes from 5 to 6.

    Problem 5

    If f(x)=3x+2f(x) = 3x + 2 and g(x)=x5g(x) = x - 5, what is (fg)(4)(f \circ g)(4)?

    A) 1-1 \quad B) 55 \quad C) 99 \quad D) 3-3 \quad E) 1414

    Answer: A) 1-1. (fg)(4)=f(g(4))=f(45)=f(1)=3(1)+2=1(f \circ g)(4) = f(g(4)) = f(4-5) = f(-1) = 3(-1) + 2 = -1.

Want to check your answers and get step-by-step solutions?

Get it on Google PlayDownload on the App Store

Common Mistakes

  • Treating f(x)f(x) as multiplication. f(x+2)f(x+2) means "evaluate ff at the input x+2x+2," not "f(x+2)f \cdot (x+2)." This is a fundamental notational misunderstanding.
  • Wrong order in composition. f(g(x))f(g(x)) means apply gg first, then ff. Read from the inside out. g(f(x))g(f(x)) is a completely different function.
  • Sign errors when substituting negative values. Always use parentheses when substituting: (3)2=9(-3)^2 = 9, but 32=9-3^2 = -9. This distinction is crucial.
  • Horizontal shift direction confusion. f(x3)f(x-3) shifts RIGHT 3, not left. f(x+3)f(x+3) shifts LEFT 3, not right. The direction is opposite to the sign. When in doubt, test with a known point.
  • Forgetting domain restrictions. Always check for zero denominators and negative values under square roots. A function is undefined at these inputs.
  • Confusing f1(x)f^{-1}(x) with 1f(x)\frac{1}{f(x)}. The inverse function f1(x)f^{-1}(x) undoes ff — it is NOT the reciprocal. 1f(x)\frac{1}{f(x)} is a completely different expression.

Frequently Asked Questions

How many function questions appear on the ACT?

Approximately 6–10 questions per test. Function evaluation is one of the most common question types in the Intermediate Algebra category. If you include graph-based function questions and transformation questions, the count is at the higher end of this range.

Do I need to know how to read function values from tables and graphs?

Yes, absolutely. The ACT frequently gives a table of (x,f(x))(x, f(x)) pairs or a graph and asks you to evaluate f(3)f(3), find xx when f(x)=5f(x) = 5, or determine f(g(2))f(g(2)) using two different tables. Practice reading these formats.

What is the difference between $f(x+2)$ and $f(x) + 2$?

f(x+2)f(x+2) shifts the graph left 2 units (it is a horizontal input change). f(x)+2f(x) + 2 shifts the graph up 2 units (it is a vertical output change). They produce very different results and affect the graph differently.

Will I see piecewise functions on the ACT?

Yes, piecewise functions appear on most ACTs. The key is to identify which interval your input belongs to before applying the rule. Read the conditions (x<0x < 0, x0x \geq 0, etc.) carefully.

How important are inverse functions for the ACT?

They appear in 1–2 questions on most tests. You should understand the concept (that f1f^{-1} undoes ff) and be able to find f1(c)f^{-1}(c) by solving f(x)=cf(x) = c. Full algebraic inverse computation is less common.

Key Takeaways

  • f(x)f(x) is notation, not multiplication. It means "the output of function ff when the input is xx." Treat the parentheses as an input container, not as algebraic multiplication.

  • Evaluate functions by substituting carefully. Replace every xx with the given value, using parentheses generously to avoid sign errors. This is the most common function question type.

  • Composition works inside-out. For f(g(x))f(g(x)), compute g(x)g(x) first, then apply ff to the result. Order matters — f(g(x))g(f(x))f(g(x)) \neq g(f(x)) in general.

  • Domain asks "what can xx be?" Exclude values that cause division by zero or negative square root arguments. Range asks "what values can f(x)f(x) produce?"

  • Horizontal transformations are counterintuitive. f(xh)f(x - h) shifts right hh units; f(x+h)f(x + h) shifts left hh units. Vertical transformations are intuitive. Test with a specific point if you are unsure.

  • Use the vertical line test for graphs. If any vertical line crosses a graph more than once, it does not represent a function.

  • Function problems are very learnable. Despite intimidating notation, most ACT function questions boil down to careful substitution. Practice the mechanics until they become automatic.

  • Read function questions carefully. The ACT may ask for f(3)f(3), f1(3)f^{-1}(3), f(g(3))f(g(3)), or f(3)+g(3)f(3) + g(3) — each is a different calculation. Pay attention to exactly what is being requested.

Ready to Ace Your ACT math?

Get instant step-by-step solutions to any problem. Snap a photo and learn with Tutor AI — your personal exam prep companion.

Get it on Google PlayDownload on the App Store