f(g(x)) means g first: composition order on the SAT
f(g(2)) asks for g(2) first, then f of that. Compute f(2) first and you'll land exactly on the distractor.
Why it happens
English reads left to right, so f-then-g feels natural. But composition evaluates inside-out, like nested parentheses.
See the trap
f(x) = 2x + 1, g(x) = x². Find f(g(3)).
✗ The trap: f(3) = 7, then g(7) = 49.
✓ The fix: g(3) = 9, then f(9) = 19.
How to actually fix it
- Work from the innermost parentheses outward, always.
- Rewrite f(g(3)) as f(□), then fill □ = g(3) before touching f.
- Note that f(g(x)) and g(f(x)) rarely match — if your answer appears for both orders, recheck.
Made this mistake on a real question?
Practice Advanced Math questions here. Miss one and it is logged with the exact error, then brought back until you beat it.
Practice Advanced Math →FAQ
How is this tested with tables?
The SAT gives f and g as tables and asks f(g(2)) — same inside-out rule, just look up g(2) in its table first.
How do I stop repeating this mistake?
Reading the explanation isn't enough — your brain needs to beat the trap on a fresh question. Practice the skill in the kaoshen.co question bank: miss one and it is logged with the exact error, then brought back to you three days later and again after fourteen.