AMC 10 · 2009 · #7

Grade 5 algebra
order-of-operationssystematic-enumeration systematic-enumeration ↑ Prerequisites: order-of-operations
📏 Medium solution 💡 2 insights
📘 View easy version →
Problem
The expression 2×3+4×5 has three operations, and inserting parentheses forces some operations to happen before others, which can change the result. The numbers and the operation signs keep their order; only the grouping may change. Over all legal ways of inserting parentheses, find how many different values the expression can equal.

Pick an answer.

(A)
2
(B)
3
(C)
4
(D)
5
(E)
6

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

How to solve
Strategy Make a Systematic List

The question is 'how many different values', so the safe route is to list every legal grouping and evaluate it (Tool #2). Four numbers in a row have exactly five full parenthesizations, a small enough set to write out completely with no guessing. Each grouping is then a short arithmetic subproblem to evaluate (Tool #7). Finally, because two groupings can land on the same number, Tool #3 (Eliminate Possibilities) is used to drop the duplicates so only distinct values remain.

1STEP 1

See what parentheses control

Parentheses cannot move the numbers; they only pick which operation runs first, and four numbers in a row group in exactly 5 ways.

2×3+4×5 → 5 possible groupings
2STEP 2

Write out the five groupings

List every full parenthesization: group left to right, split at the plus, or group right to left — five expressions in all.

((2×3)+4)×5, (2×(3+4))×5, (2×3)+(4×5), 2×((3+4)×5), 2×(3+(4×5))
3STEP 3

Evaluate each grouping

Innermost parentheses first: (6+4)×5, (2×7)×5, 6+20, 2×35, 2×23 give 50, 70, 26, 70, 46.

50, 70, 26, 70, 46
4STEP 4

Count the distinct values

Two groupings both give 70, so the distinct values are 26, 46, 50, 70 — 4 of them, choice (C).

{50,70,26,70,46}→{26,46,50,70}→ 4 (C)
Answer
4
The two multiplications 2×3 and 4×5 can each be forced or delayed by grouping, and the smallest possible result comes from doing both multiplications first, 26, while the largest comes from folding the + inside so everything gets multiplied, 70. The four surviving values 26,46,50,70 all sit inside that range and are clearly different, so 4 is believable and matches choice (C).
💡Key takeaway

Parentheses only change which operation goes first, so list every grouping, work each one out, and count the answers that are actually different.

  • See what parentheses control
  • Write out the five groupings
  • Evaluate each grouping
  • Count the distinct values