Evaluating f(−3) by hand means rewriting the whole expression with parentheses in the right places — the single most common careless-error factory on the test.
The move: Define f(x) once, then type f(number).
Why it works: Once the function is stored, every evaluation is a lookup: the calculator substitutes perfectly, every time, including nested calls.
The pattern
- Type f(x) = the rule
- Type f(number) for the value you need
- Read the result
Worked example: If f(x) = 2x² − 3x + 1, for which value of x does f(x) = 15?
- Define the function ONCE.
f(x)=2x^2-3x+1 - Now interrogate the answer choices: type f(−2).
f(-2) - f(−2) = 15. Winner. (You could also graph y = f(x) and y = 15 and tap the crossing.)
y=15,y=f(x)
Worked example 2: If f(x) = x³ − 2x + 4, what is f(−2)?
- Define it.
f(x)=x^3-2x+4 - Type f(−2). Answer prints: 0. Watch your signs — Desmos never fumbles (−2)³.
f(-2)
Remember it on test day
Define once, ask anytime. That's the whole cue — say it when you see this question type and the steps follow.
When this isn't the move
Questions about a function's structure (degree, leading coefficient) are read from the expression, not computed.
Drill it until it's reflex
This move is one of Desvantage's 18 training modules: a plain-English lesson, a type-it-yourself walkthrough inside a live Desmos calculator, and a 100-question drill bank that deals ten fresh questions per round. The first two modules — plus the 12-question diagnostic — are free.
