Skip to content

ACT Functions

Last updated: May 2, 2026

Functions questions are one of the highest-leverage areas to study for the ACT. This guide breaks down the rule, the elements you need to recognize, the named traps that catch most students, and a memory aid that scales to test day. Read it once, then practice the same sub-topic adaptively in the app.

The rule

A function $f$ is a rule that assigns exactly one output to each input in its domain. On the ACT, you must (1) evaluate functions at specific inputs, (2) compose functions like $f(g(x))$, (3) read function behavior from graphs and tables, and (4) recognize how transformations change graphs. Whatever is in the parentheses is the input — substitute it everywhere $x$ appears in the rule, then simplify.

Elements breakdown

Function Notation and Evaluation

Replacing the input variable with a value, expression, or another function output.

  • Identify what is inside the parentheses
  • Substitute that into every $x$
  • Apply order of operations carefully
  • Watch signs when input is negative

Common examples:

  • If $f(x) = 2x^2 - 5$, then $f(-3) = 2(9) - 5 = 13$

Composition $f(g(x))$

Plug $g(x)$ into $f$ as the new input — work from the inside out.

  • Compute the inner function first
  • Use that result as input to outer
  • Do not multiply $f$ and $g$
  • Order matters: $f(g(x)) \ne g(f(x))$ usually

Domain and Range

Domain is the set of allowable inputs; range is the set of possible outputs.

  • Exclude inputs that make denominator $0$
  • Exclude inputs under even roots if negative
  • Read range from graph's vertical extent
  • Check endpoints — open vs. closed

Graph Reading

Translate visual features into numerical answers.

  • $f(a)$ = $y$-value when $x = a$
  • $f(x) = c$ asks where graph crosses $y = c$
  • Zeros are $x$-intercepts
  • Increasing/decreasing intervals tracked left to right

Transformations

Predictable shifts, stretches, and reflections of $f(x)$.

  • $f(x) + k$ shifts up by $k$
  • $f(x - h)$ shifts right by $h$
  • $-f(x)$ reflects across $x$-axis
  • $a \cdot f(x)$ stretches vertically by $|a|$

Piecewise and Table Functions

Functions defined by cases or by a finite lookup table.

  • Match input to correct case interval
  • Read table row exactly — no interpolating
  • Check boundary points carefully
  • Compose by chaining table lookups

Common patterns and traps

The Reversed-Composition Distractor

When the question asks for $f(g(x))$ at a specific value, one of the wrong answers will be the result of computing $g(f(x))$ at that same value. The ACT picks numbers where both compositions yield clean integers, so you can't catch the error by 'looks weird.' You catch it by reading the nesting carefully.

An answer choice that equals $g(f(a))$ rather than $f(g(a))$ when both happen to be small integers.

The Coordinate Swap

A graph-reading question asks for $f(3)$ — meaning the $y$-value when $x = 3$ — but a wrong answer gives the $x$-value at which $y = 3$. Both are visible on the same graph, so a hurried reader picks the wrong one. The fix: lock in 'input goes in, output comes out' before you look.

Two of the choices are $x$-coordinates from the graph; two are $y$-coordinates. The correct one matches the question's actual ask.

The Shift-Direction Flip

Transformations of the form $f(x - h)$ shift right, while $f(x + h)$ shifts left — opposite of what students often expect because the sign inside the parentheses is opposite the direction. Wrong answers exploit this by giving a graph or equation shifted in the wrong direction.

An answer choice that has the correct shape and magnitude of shift but in the opposite horizontal direction.

The Domain-Hole Miss

Rational and radical functions exclude certain inputs. A wrong answer will treat the function as defined everywhere, ignoring values that make a denominator zero or a square root negative. You spot this by always checking what kills the function before answering domain questions.

A choice that lists 'all real numbers' when the function has an obvious vertical asymptote or radical restriction.

The Plug-In-the-Choices Heuristic

When a function problem asks 'for which value of $x$ does $f(x) = $ something,' it's often faster to test each answer choice in $f$ than to solve algebraically. This is a strategy, not a trap — but missing it costs time on a clock-sensitive section.

A problem with 5 numerical answer choices and a function rule that's easy to evaluate but hard to invert algebraically.

How it works

Treat function notation as a substitution machine. If $f(x) = 3x + 1$ and the question asks for $f(2k - 1)$, replace every $x$ with the entire expression $2k - 1$: $f(2k - 1) = 3(2k - 1) + 1 = 6k - 2$. For composition, work inside-out. With $f(x) = x^2$ and $g(x) = x + 4$, the value $f(g(3))$ means: first $g(3) = 7$, then $f(7) = 49$. The most common ACT mistake is computing $g(f(3))$ instead — read the order of nested parentheses carefully. For graphs, remember $f(a)$ asks for a height (a $y$-value), while $f(x) = c$ asks for a horizontal location (an $x$-value); these are inverse questions and the ACT loves to swap them in distractors.

Worked examples

Worked Example 1

The functions $f$ and $g$ are defined by $f(x) = x^2 - 4$ and $g(x) = 2x + 1$. What is the value of $f(g(3))$?

What is the value of $f(g(3))$?

  • A $13$
  • B $21$
  • C $45$ ✓ Correct
  • D $49$
  • E $53$

Why C is correct: Work inside-out. First compute $g(3) = 2(3) + 1 = 7$. Then $f(7) = 7^2 - 4 = 49 - 4 = 45$. So $f(g(3)) = 45$, which is choice C.

Why each wrong choice fails:

  • A: This is $g(f(3)) = g(5) = 11$ computed incorrectly, or a partial-step error. Either way, it ignores the inside-out order. (The Reversed-Composition Distractor)
  • B: This is $g(f(3)) = 2(5) + 1 = 11$… no — actually this comes from $g(f(3))$ if you mis-square: it represents reversing the composition order. (The Reversed-Composition Distractor)
  • D: This is $7^2 = 49$ — the student stopped one step early and forgot to subtract $4$ in the outer $f$.
  • E: This adds $4$ instead of subtracting in $f(7) = 49 + 4 = 53$, a sign error inside the outer function.
Worked Example 2

The function $h$ is defined by $h(x) = \dfrac{x + 5}{x - 2}$. Which of the following is the domain of $h$?

Which of the following is the domain of $h$?

  • A All real numbers
  • B All real numbers except $x = -5$
  • C All real numbers except $x = 2$ ✓ Correct
  • D All real numbers except $x = -2$
  • E All real numbers except $x = -5$ and $x = 2$

Why C is correct: The domain of a rational function excludes any input that makes the denominator zero. Setting $x - 2 = 0$ gives $x = 2$, so $h$ is undefined only at $x = 2$. The numerator zero at $x = -5$ produces a value of $0$, not an undefined output, so it stays in the domain.

Why each wrong choice fails:

  • A: Ignores that the denominator becomes zero at $x = 2$, leaving $h$ undefined there. (The Domain-Hole Miss)
  • B: Excludes the numerator's zero. But $h(-5) = 0$, a perfectly valid output — only denominator zeros break the domain. (The Domain-Hole Miss)
  • D: Sign error on the denominator zero: solving $x - 2 = 0$ gives $x = 2$, not $x = -2$.
  • E: Combines the correct exclusion with the spurious numerator exclusion. Numerator zeros give outputs of $0$, not undefined points. (The Domain-Hole Miss)
Worked Example 3

The function $f$ has the values shown in the table below. | $x$ | $-2$ | $-1$ | $0$ | $1$ | $2$ | |---|---|---|---|---|---| | $f(x)$ | $5$ | $1$ | $-1$ | $1$ | $5$ | Let $g(x) = f(x - 1) + 3$. What is the value of $g(2)$?

What is the value of $g(2)$?

  • A $-1$
  • B $2$
  • C $4$ ✓ Correct
  • D $8$
  • E $9$

Why C is correct: Substitute carefully. $g(2) = f(2 - 1) + 3 = f(1) + 3$. From the table, $f(1) = 1$, so $g(2) = 1 + 3 = 4$, which is choice C.

Why each wrong choice fails:

  • A: Reads $f(0) = -1$ from the table — this would be $g(1)$, not $g(2)$, and forgets to add $3$. (The Coordinate Swap)
  • B: Uses $f(2 + 1) = f(3)$, which isn't in the table, or shifts in the wrong direction. Treating $f(x - 1)$ as a leftward shift instead of rightward. (The Shift-Direction Flip)
  • D: Computes $f(2) + 3 = 5 + 3 = 8$, ignoring the inner $x - 1$ entirely.
  • E: Computes $f(2 + 1)$ — but that input isn't tabulated — and pairs it with a guessed value, or reads $f(-2) = 5$ then adds $4$ instead of $3$. (The Shift-Direction Flip)

Memory aid

INSIDE-OUT, SUB-EVERY-X: for compositions work inside the parentheses first; for any evaluation, substitute the input into every occurrence of $x$, then simplify.

Key distinction

$f(g(x))$ is not the same as $f(x) \cdot g(x)$ and is usually not the same as $g(f(x))$ — composition is plugging in, not multiplying or reordering.

Summary

Whatever is in the parentheses is the input — substitute it cleanly, work inside-out for compositions, and read graphs as 'height when $x$ is here.'

Practice functions adaptively

Reading the rule is the start. Working ACT-format questions on this sub-topic with adaptive selection, watching your mastery score climb in real time, and seeing the items you missed return on a spaced-repetition schedule — that's where score lift actually happens. Free for seven days. No credit card required.

Start your free 7-day trial

Frequently asked questions

What is functions on the ACT?

A function $f$ is a rule that assigns exactly one output to each input in its domain. On the ACT, you must (1) evaluate functions at specific inputs, (2) compose functions like $f(g(x))$, (3) read function behavior from graphs and tables, and (4) recognize how transformations change graphs. Whatever is in the parentheses is the input — substitute it everywhere $x$ appears in the rule, then simplify.

How do I practice functions questions?

The fastest way to improve on functions is targeted, adaptive practice — working questions that focus on your specific weak spots within this sub-topic, getting immediate feedback, and revisiting items you missed on a spaced-repetition schedule. Neureto's adaptive engine does this automatically across the ACT; start a free 7-day trial to see your sub-topic mastery climb in real time.

What's the most important distinction to remember for functions?

$f(g(x))$ is not the same as $f(x) \cdot g(x)$ and is usually not the same as $g(f(x))$ — composition is plugging in, not multiplying or reordering.

Is there a memory aid for functions questions?

INSIDE-OUT, SUB-EVERY-X: for compositions work inside the parentheses first; for any evaluation, substitute the input into every occurrence of $x$, then simplify.

What is "The reversed-composition trap" in functions questions?

solving $g(f(x))$ when the problem asks $f(g(x))$.

What is "The $y$-vs-$x$ swap" in functions questions?

reading $f(a)$ as 'where $y = a$' instead of 'the height when $x = a$'.

Ready to drill these patterns?

Take a free ACT assessment — about 15 minutes and Neureto will route more functions questions your way until your sub-topic mastery score reflects real improvement, not luck. Free for seven days. No credit card required.

Start your free 7-day trial