AMC // 10
LEARN>ALGEBRA>FUNCTIONS
// CONCEPT // ALGEBRA

FUNCTIONS

Understanding function notation, composition, inverses, and graph transformations for AMC10 success.

Overview

A function ff is a rule that assigns exactly one output to each input. On the AMC10, functions appear in three main flavors: explicit rules like f(x)=2x23f(x) = 2x^2 - 3, recursive or relational rules like f(x+1)=f(x)+5f(x+1) = f(x) + 5, and functional equations that constrain ff without writing it down explicitly. In every case, the key skill is careful substitution — replacing xx with whatever expression the problem hands you.

Composition and inverses are the two operations that link functions together. f(g(x))f(g(x)) means "apply gg first, then ff"; it's not the same as g(f(x))g(f(x)) unless ff and gg happen to commute. The inverse f1f^{-1} "undoes" ff: if f(a)=bf(a) = b then f1(b)=af^{-1}(b) = a. Recognizing when a problem is really asking you to invert or compose — rather than evaluate from scratch — often cuts the work in half.

Graph transformations round out the AMC10 toolkit. When you replace xx with xhx - h, the graph slides right by hh. Multiplying the whole expression by 1-1 flips it over the xx-axis. These rules feel arbitrary until you see them as consequences of substitution: the graph of y=f(x3)y = f(x-3) hits the same yy-values as y=f(x)y = f(x), just shifted so the "action" happens 3 units to the right.

Key facts

  • Evaluation: to find f(a)f(a), substitute aa everywhere xx appears in the rule.
  • Composition: (fg)(x)=f(g(x))(f \circ g)(x) = f(g(x)). Evaluate gg first, feed the result to ff.
  • Inverse exists when: ff is one-to-one (passes the horizontal-line test). Then f1(b)=a    f(a)=bf^{-1}(b) = a \iff f(a) = b.
  • Finding the inverse algebraically: write y=f(x)y = f(x), swap xyx \leftrightarrow y, solve for yy.
  • Composition of inverses: f(f1(x))=xf(f^{-1}(x)) = x and f1(f(x))=xf^{-1}(f(x)) = x for all xx in the domain.
  • Functional equations: if f(x)+f(1x)=kf(x) + f(1-x) = k, pair up inputs that sum to 11 to evaluate ff at specific points without knowing ff explicitly.
  • Graph shifts: y=f(xh)y = f(x - h) shifts the graph right by hh; y=f(x+h)y = f(x + h) shifts left by hh.
  • Graph stretches/reflections: y=f(x)y = -f(x) reflects over the xx-axis; y=f(x)y = f(-x) reflects over the yy-axis; y=cf(x)y = cf(x) stretches vertically by factor cc.

Worked example 1

If f(x)=2x+3x1f(x) = \dfrac{2x + 3}{x - 1}, find f1(7)f^{-1}(7).

We could find the full formula for f1f^{-1}, but it's faster to ask: "What input gives output 7?"

Set f(a)=7f(a) = 7:

2a+3a1=7    2a+3=7(a1)=7a7    10=5a    a=2.\frac{2a + 3}{a - 1} = 7 \implies 2a + 3 = 7(a - 1) = 7a - 7 \implies 10 = 5a \implies a = 2.

So f1(7)=2f^{-1}(7) = 2. Check: f(2)=71=7f(2) = \frac{7}{1} = 7. ✓

Worked example 2

Let f(x)=x2+2xf(x) = x^2 + 2x and g(x)=x+3g(x) = x + 3. Find all values of xx for which f(g(x))=0f(g(x)) = 0.

First, compute f(g(x))f(g(x)):

f(g(x))=f(x+3)=(x+3)2+2(x+3)=x2+6x+9+2x+6=x2+8x+15.f(g(x)) = f(x + 3) = (x+3)^2 + 2(x+3) = x^2 + 6x + 9 + 2x + 6 = x^2 + 8x + 15.

Set this equal to zero:

x2+8x+15=0    (x+3)(x+5)=0    x=3 or x=5.x^2 + 8x + 15 = 0 \implies (x+3)(x+5) = 0 \implies x = -3 \text{ or } x = -5.

The answer is x{5,3}x \in \{-5, -3\}.

Common traps

  • Reversing composition order. f(g(x))f(g(x)) means apply gg first. Writing g(f(x))g(f(x)) instead is the single most common function error on the AMC10.
  • Confusing f1(x)f^{-1}(x) with 1f(x)\frac{1}{f(x)}. The 1-1 in f1f^{-1} denotes the inverse function, not a reciprocal. f1(x)1f(x)f^{-1}(x) \neq \frac{1}{f(x)}.
  • Forgetting to check one-to-oneness. A function like f(x)=x2f(x) = x^2 has no inverse over all reals because it's not one-to-one. AMC problems that ask for "the inverse" always implicitly assume the domain is restricted so the function is one-to-one.
  • Direction of horizontal shifts. y=f(x3)y = f(x - 3) shifts the graph RIGHT (not left) by 3. Substituting x=3x = 3 into x3x - 3 gives 00, so the old behavior at x=0x = 0 now appears at x=3x = 3.
  • Misreading functional equations. When f(2x+1)=somethingf(2x+1) = \text{something}, to find f(5)f(5) you must solve 2x+1=52x+1 = 5 first, then plug that xx into the right side — don't substitute 55 directly into the right side.