AMC 10 · 2011 · #21

Grade 9 algebrapattern
domain-restrictionfunction-compositionrecursive-sequence work-backwardspattern-recognition ↑ Prerequisites: function-composition
📏 Long solution 💡 4 insights
Problem
Each function nests inside the next through a square root, shrinking the allowed inputs. Find the last one and its single input.

Pick an answer.

(A)
-226
(B)
-144
(C)
-20
(D)
20
(E)
144
How to solve
Strategy Work Backwards

Tool #11 (Work Backwards): the function is a nest of square roots, and the only fixed fact is the requirement at the innermost layer of the definition, f₁. Writing D_n for the domain of f_n, the recursion lets each domain be pulled back from the one before it, so the whole problem becomes a chain D₁→ D₂→ D₃→… instead of one monstrous inequality. Tool #4 (Introduce a Variable): naming t=√(n²-x) converts a test on x into a construction from t, and the substitution x=n²-t² makes the pullback an exact equality of sets rather than a list of necessary conditions. Tool #9 (Solve an Easier Related Problem): running n=2 and n=3 by hand shows the shape of the recursion before the numbers turn ugly. Tool #5 (Look for a Pattern): the same one-line rule generates every domain, including the induction that shows an empty domain stays empty forever. Tool #14 (Extreme Principle): the problem ends at a boundary case — a domain that touches 0 from below has exactly one usable value, and that single value pins everything afterwards. Tool #6 (Guess and Check): set algebra alone does not prove a number exists, so the surviving candidate is substituted back into the full nested radical.

1STEP 1

Write the domain rule exactly

One rule describes every allowed input.

D_n={x : x ≤ n² and √(n²-x)∈ D_n-1}
2STEP 2

Only the nonnegative part is reachable

Only the nonnegative part is ever reachable.

R_n-1=D_n-1∩[0,∞), D_n={ n²-t² : t∈ R_n-1 }
3STEP 3

Start the chain at f₁

The chain starts as a whole interval.

D₁=(-∞,1], R₁=[0,1]
4STEP 4

Run two steps of the recursion

Two turns of the recursion shift it left.

D₂={4-t²:t∈[0,1]}=[3,4], D₃={9-t²:t∈[3,4]}=[-7,0]
5STEP 5

The collapse: R₃ is a single point

Then the reachable set collapses to a single point.

R₃=[-7,0]∩[0,∞)={0}
6STEP 6

Push the single point forward

Pushing it forward gives one last input.

D₄={16}, R₄={16}, D₅={-231}, R₅=∅, D₆=∅
7STEP 7

Empty stays empty

After that everything stays empty.

D_m=∅ → R_m=∅ → D_m+1=∅ for every m
8STEP 8

Check −231 really works, then add

Adding gives -226, choice (A).

f₅(-231)=1-√(4-√(9-√(16-√(25+231))))=0, N+c=5+(-231)=-226 (A)
Answer
-226
The designed trap is choice (D). The domain of f₄ is the single point {16}, and 4+16=20, which is exactly answer (D). A solver who reads "the domain of f_N is {c}" as permission to stop at the first singleton domain lands there. So the singleton clue in the statement does not identify N at all; what identifies N is that D₅={-231} is still nonempty while D₆ and everything after it is empty. Choice (C) -20 is just the sign flip of that same trap, and (B) -144 and (E) 144 match no stage of the chain. Two arithmetic checks on the survivor: 25-256=-231, and 5-231=-226, so the sum is dominated by c, which is why the answer is a large negative number rather than something near the small choices. A structural check also fits: the sizes of D₁,D₂,… go ray, interval, interval, point, point, empty — never growing back once the collapse at R₃={0} happens, which is what the bijection in step two predicts.
💡Key takeaway

A square root can only ever hand back a number that is zero or bigger, so any negative part of the previous domain is useless — and the moment the usable leftover shrinks to the single value 0, the whole chain is locked onto one number until it runs out.

  • Write the domain rule exactly
  • Only the nonnegative part is reachable
  • Start the chain at f₁
  • Run two steps of the recursion
  • The collapse: R₃ is a single point
  • Push the single point forward
  • Empty stays empty
  • Check −231 really works, then add