AMC 10 · 2015 · #10
Grade 8 geometry-2dPick an answer.
Every condition in the problem is a statement about three numbers, so the count of triangles turns into a count of integer triples. Listing them is the natural move, but a list only proves a count if nothing can hide outside it. So the real work is in two places the listing itself does not cover: bounding the search before listing, using the Extreme Principle, and then testing every survivor for a right angle rather than only recognizing the famous one.
One triangle, one sorted triple
Sorting makes each triangle appear once.
Three side lengths pin a triangle down completely, so a sorted triple works as the triangle's fingerprint.
Three side lengths pin a triangle down completely, so a sorted triple works as the triangle's fingerprint.
▸ Why?
Each triangle gives exactly one sorted triple and each legal triple gives exactly one triangle.
▸ Why?
A triple is legal exactly when any two of its lengths together reach further than the third.
Turn each word into an inequality
Every word becomes a plain inequality.
Each English phrase converts to exactly one inequality, and after that the problem is pure integer bookkeeping.
7.EE.B.4Convert To AlgebraProve the search has to stop
The search provably terminates.
Testing the extreme case shows where the search must end, which is the difference between a list and a proof.
7.EE.B.4Extreme PrincipleList both surviving cases in full
Only six triples survive the inequalities.
Reading the triangle inequality as a cap on the gap c-b makes each case a short, finite sweep.
6.EE.B.5Make A Systematic ListTest all six for a right angle
Exactly one of them has a right angle.
Only the longest side can be a hypotenuse, so one comparison of squares settles each triangle for good.
8.G.B.6Eliminate PossibilitiesCount what is left
So 5 remain, choice (D).
The fingerprint idea from the first step is what lets a count of triples be read off directly as a count of triangles.
7.G.A.2Make A Systematic ListA list only proves a count if you first prove the list has to end: here the shortest side cannot reach 4 without blowing the perimeter, so nothing can hide past a=3.
- One triangle, one sorted triple
- Turn each word into an inequality
- Prove the search has to stop
- List both surviving cases in full
- Test all six for a right angle
- Count what is left