Statistics questions punish hand arithmetic: one addition slip ruins an easy point. The calculator has built-in functions most students never open.
The move: Type mean() / median() / stdev().
Why it works: mean(), median(), and stdev() compute the statistic exactly from the list you type — there is no arithmetic left to slip on.
The pattern
- Put the numbers in a list
- Type the stat function on the list
- Read the exact result
Worked example: What is the mean of 85, 92, 78, 90, and 85?
- Type mean( and put the list in square brackets.
mean([85,92,78,90,85]) - The answer prints on the right: 86. Done — no adding, no dividing.
- Same move works for median(...) and stdev(...). Try median on this list right now.
median([85,92,78,90,85])
Worked example 2: What is the median of 12, 7, 19, 3, 15?
- Don't sort anything by hand. Type median([12,7,19,3,15]).
median([12,7,19,3,15]) - 12. Desmos sorted the list internally — the classic “forgot to sort” trap can't touch you.
Remember it on test day
List it, then function it. That's the whole cue — say it when you see this question type and the steps follow.
When this isn't the move
Conceptual questions — “what happens to the median if…” — are about reasoning, not computation; know what each measure means.
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.
