AMC 10 · 2025 · #3

Grade 7 geometry-2d
isosceles-trianglepolygon-inequalitysystematic-enumeration casework ↑ Prerequisites: isosceles-trianglepolygon-inequality
📏 Medium solution 💡 3 insights
Problem
Count the whole-number-sided isosceles triangles that have positive area and whose longest side is exactly 2025.

Pick an answer.

(A)
2025
(B)
2026
(C)
3012
(D)
3037
(E)
4050

AMC 10 2025 problem © Mathematical Association of America (MAA AMC). Reproduced for educational use.

How to solve
Strategy Identify Subproblems

An isosceles triangle has an equal pair A, A and a third side B. The number 2025 is the longest side, and it can play one of two roles: it is one of the equal sides, or it is the single unequal side. Those two roles never happen at the same time, so splitting the count into these two separate subproblems lets us count each cleanly and add. Inside each case, naming the sides with a variable and pushing to the triangle-inequality boundary turns the count into counting a run of consecutive integers.

1STEP 1

Name the sides

Write the sides as A, A, B with A and B positive integers; one of them is 2025 and no side exceeds it.

sides = A, A, B (A, B ∈ Z^+), longest = 2025
2STEP 2

Split by the role of 2025

2025 is either one of the two equal sides or the single odd side — two exclusive cases, count each and add.

Case 1: 2025, 2025, B Case 2: A, A, 2025
3STEP 3

Case 1: equal sides are 2025

For 2025, 2025, B any B from 1 to 2025 keeps 2025 longest, so there are 2025 triangles (B = 2025 is the equilateral one).

1 ≤ B ≤ 2025 → 2025 values
4STEP 4

Case 2: base is 2025

For A, A, 2025 the legs must reach across: A + A greater than 2025 gives A from 1013 to 2024, so 1012 triangles.

2A > 2025 → A ≥ 1013, A ≤ 2024 → 2024 - 1013 + 1 = 1012
5STEP 5

Add the two cases

The two cases share no triangle, so add them: 2025 + 1012 = 3037, choice (D).

2025 + 1012 = 3037
Answer
3037
The two cases are genuinely disjoint (the equal pair is either 2025 or strictly below 2025), so no triangle is double counted, and the boundary A = 1013 barely satisfies 2A = 2026 > 2025, confirming none of the Case 2 triangles are flat. The total 3037 matches choice (D). The tempting wrong answers line up with common slips: 2025 forgets Case 2, and 3012 is a near miss produced by an off-by-one in one of the two case counts.
💡Key takeaway

Ask where the longest side can sit in the pattern A, A, B, count each spot with the triangle inequality, and add.

  • Name the sides
  • Split by the role of 2025
  • Case 1: equal sides are 2025
  • Case 2: base is 2025
  • Add the two cases