4.2 Representing & Modeling Functions: Verbal, Numerical, Graphical, Symbolic

Key Takeaways

  • The same function can be presented four ways — verbally, numerically as a table, graphically, and symbolically as a formula — and CLEP expects you to move between them.
  • To model a verbal description, name the input variable, separate the fixed amount from the per-unit rate, and translate 'for each additional' into multiplication by the count of additional units.
  • A numerical table is evaluated by direct lookup: f(a) is read from the row for x = a, and a composition g(f(2)) is two consecutive lookups performed inside-out.
  • From a graph, f(a) is the height of the curve above x = a, so comparing two functions at a point means comparing heights at that same x-value.
  • The average rate of change of f on [a, b] is (f(b) - f(a)) / (b - a), the slope of the secant line, and it can be computed from a table, a graph, or a formula.
Last updated: August 2026

4.2 Representing & Modeling Functions: Verbal, Numerical, Graphical, Symbolic

The first bullet of the Functions and Their Properties content area — the largest area on the exam at 30% — is definition, interpretation, and representation/modeling (graphical, numerical, symbolic, verbal). Section 4.1 handled the definition. This section handles the rest: recognising the same function in four different presentations and converting between them.

This matters because a large share of nonroutine CLEP items never give you a formula at all. They hand you a table, a graph, or a paragraph and ask a question that would be routine if you had the equation. The skill being tested is the translation, not the arithmetic.


The Four Representations

RepresentationWhat You Are GivenTypical Question
VerbalA sentence describing a relationship"Which of the following functions represents the cost...?"
NumericalA table of paired xx and f(x)f(x) values"Based on the table, what is g(f(2))g(f(2))?"
GraphicalA curve in the xyxy-plane"Which of the following must be true?" comparing two graphs
SymbolicAn explicit formula f(x)=f(x) = \dots"Evaluate," "simplify," "find the domain"

All four describe one object. A point on the graph, a row in the table, an output of the formula, and a phrase in the sentence are the same fact wearing different clothes.


Verbal to Symbolic: Building a Model

This is the highest-value translation on the exam. Use a fixed procedure:

  1. Name the input and write down its units. Ambiguity here causes most errors.
  2. Separate the fixed part from the varying part. A one-time charge, a base salary, or a starting population is a constant; anything described "per," "for each," or "every" is a rate that multiplies a count.
  3. Determine what the rate is counting. "For each additional unit beyond 5" multiplies (x5)(x - 5), not xx. This single distinction accounts for most of the wrong answers.
  4. Assemble, then test the model on one easy value you can verify by hand.

Worked Example 1: A Threshold Pricing Model

Problem: A shipping company charges a flat 7 dollars for the first 5 kilograms plus 1 dollar 50 cents for each additional kilogram or fraction thereof. Write the cost CC, in dollars, of shipping a package weighing kk kilograms, where kk is an integer with k5k \ge 5.

  1. Input: kk, the weight in whole kilograms, with k5k \ge 5.
  2. Fixed part: the 7 dollars covers the whole first 5 kg, so it is a constant, not a per-kilogram charge.
  3. What the rate counts: the extra kilograms beyond the first five. For a 5 kg package there are none; for an 8 kg package there are 3. That count is k5k - 5.
  4. Assemble: C(k)=7+1.5(k5)C(k) = 7 + 1.5(k - 5)
  5. Test at k=5k = 5: C(5)=7+1.5(0)=7C(5) = 7 + 1.5(0) = 7 ✓ — the flat rate alone, in dollars, exactly as described. Test at k=8k = 8: C(8)=7+1.5(3)=11.5C(8) = 7 + 1.5(3) = 11.5 ✓.

Exam Trap: The distractor C(k)=7+1.5kC(k) = 7 + 1.5k charges the per-kilogram rate on all kk kilograms, double-charging the first five. Verify at the threshold value (k=5k = 5) — the correct model returns exactly the flat fee there, and every over-counting distractor returns too much.

Common Verbal Phrasings and Their Translations

PhraseTranslation
"a flat fee of aa plus bb per unit"f(x)=a+bxf(x) = a + bx
"aa for the first nn units, then bb for each additional unit"f(x)=a+b(xn)f(x) = a + b(x - n) for xnx \ge n
"increases by pp percent each year"f(t)=P(1+p)tf(t) = P(1 + p)^t
"decreases by pp percent each year"f(t)=P(1p)tf(t) = P(1 - p)^t
"is inversely proportional to xx"f(x)=kxf(x) = \frac{k}{x}
"varies directly with the square of xx"f(x)=kx2f(x) = kx^2

Worked Example 2: A Percent-Growth Model

Problem: At the start of each year, a town's population is predicted to be 2 percent greater than at the start of the preceding year. If the population at the start of year 0 is PP, what is the predicted population at the start of year 5?

  1. Growth by 2 percent means multiplying by 1+0.02=1.021 + 0.02 = 1.02, not adding 0.020.02. Each year applies the multiplier once.
  2. Five successive years apply it five times: P1.021.021.021.021.02=(1.02)5PP \cdot 1.02 \cdot 1.02 \cdot 1.02 \cdot 1.02 \cdot 1.02 = (1.02)^5 P
  3. Answer: (1.02)5P(1.02)^5 P.

Exam Trap: (1+50.02)P=1.10P(1 + 5 \cdot 0.02)P = 1.10P treats compounding growth as linear, and (0.02)5P(0.02)^5 P forgets the base of 1. Repeated percent change is always exponential: the multiplier is raised to a power, never multiplied by the number of periods.


Numerical: Reading and Composing From a Table

A table defines a function on a finite domain. Everything is lookup — but the order of the lookups is what gets tested.

xxf(x)f(x)g(x)g(x)
091
125
213
338
  • Evaluation: f(2)=1f(2) = 1 — find the row x=2x = 2 and read the ff column.
  • Composition (inside-out): g(f(2))g(f(2)). First f(2)=1f(2) = 1. Then use 11 as the input to gg: g(1)=5g(1) = 5. So g(f(2))=5g(f(2)) = 5.
  • Order matters: f(g(2))=f(3)=3f(g(2)) = f(3) = 3, which differs from g(f(2))=5g(f(2)) = 5. Composition is not commutative, and the reversed value is always among the choices.
  • Solving from a table: "For what xx does f(x)=3f(x) = 3?" reverses the lookup — scan the ff column for 3 and read back to x=3x = 3.
  • Inverse values: f1(9)=0f^{-1}(9) = 0, because the row with f(x)=9f(x) = 9 has x=0x = 0.

Exam Trap: Reading g(f(2))g(f(2)) as "g(2)g(2) then ff" produces f(3)=3f(3) = 3. Always resolve the innermost parentheses first, then feed that output in as the next input.


Graphical: Reading Values and Comparisons

On a graph, f(a)f(a) is the height of the curve above x=ax = a (negative if below the axis). Every graphical comparison reduces to comparing heights at the same xx-value.

Suppose a parabola ff crosses the xx-axis at x=ax = a and x=bx = b with a<0<ba < 0 < b, and g(x)=cxg(x) = cx is a line through the origin with c>0c > 0.

  • At x=ax = a and x=bx = b, ff is on the axis, so f(a)=f(b)=0f(a) = f(b) = 0.
  • g(a)=ca<0g(a) = ca < 0 because aa is negative and cc is positive; g(b)=cb>0g(b) = cb > 0.
  • Therefore f(a)=0>g(a)f(a) = 0 > g(a) is guaranteed, while f(b)=0<g(b)f(b) = 0 < g(b), so a claim that f(b)>g(b)f(b) > g(b) is false.
  • At x=0x = 0, g(0)=0g(0) = 0 while f(0)f(0) is the parabola's yy-intercept, which the sketch shows is below the axis, so f(0)<g(0)f(0) < g(0).

The method generalises: convert each answer choice into a height comparison at one specific xx, then check the sign of each height. Questions asking which statement "must be true" are testing exactly this, and a single counterexample kills a choice.


Average Rate of Change: The Representation-Independent Tool

One quantity can be computed from any of the four representations, which is why it appears so often:

Average rate of change of f on [a,b]=f(b)f(a)ba\text{Average rate of change of } f \text{ on } [a, b] = \frac{f(b) - f(a)}{b - a}

This is the slope of the secant line joining (a,f(a))(a, f(a)) and (b,f(b))(b, f(b)).

  • From a formula: substitute and subtract.
  • From a table: read the two outputs and divide by the input gap.
  • From a graph: read the two heights off the axes.
  • Interpretation: the units are output units per input unit — dollars per mile, people per year.

Worked Example 3: Average Rate of Change Three Ways

Problem: For f(x)=x24x+1f(x) = x^2 - 4x + 1, find the average rate of change on [1,5][1, 5], and confirm what the sign means.

  1. Evaluate the endpoints: f(1)=14+1=2f(1) = 1 - 4 + 1 = -2 and f(5)=2520+1=6f(5) = 25 - 20 + 1 = 6.
  2. Apply the formula: f(5)f(1)51=6(2)4=84=2\frac{f(5) - f(1)}{5 - 1} = \frac{6 - (-2)}{4} = \frac{8}{4} = 2
  3. Interpret: on average, ff rises 2 units of output for each 1 unit of input across this interval. That is an average: the parabola's vertex is at x=2x = 2, so ff actually decreases on [1,2][1, 2] before increasing on [2,5][2, 5]. A positive average rate of change does not mean the function increases throughout the interval — a distinction CLEP tests directly.
Test Your Knowledge

A parking garage charges $4.00 for the first 2 hours and $2.75 for each additional hour or part of an hour. Which function gives the charge C, in dollars, for parking h whole hours, where h >= 2?

A
B
C
D
Test Your Knowledge

Using the table x = 0, 1, 2, 3 with f(x) = 9, 2, 1, 3 and g(x) = 1, 5, 3, 8, what is the value of g(f(2))?

A
B
C
D
Test Your Knowledge

A colony of bacteria increases by 6 percent every hour. If the colony starts with N cells, which expression gives the number of cells after 4 hours?

A
B
C
D
Test Your Knowledge

For f(x) = x^2 - 6x + 5, what is the average rate of change on the interval [2, 6], and what does its sign tell you?

A
B
C
D