🇺🇸 AMC 8 ⇄ switch contest
2019 AMC 8

Problem 25

Problem 25 · 2019 AMC 8 Hard
Counting & Probability stars-and-barscareful-counting

Alice has 24 apples. In how many ways can she share them with Becky and Chris so that each of the three people has at least two apples?

Show answer
Answer: C — 190 ways.
Show hints
Hint 1 of 2
The "at least 2 each" rule is the only obstacle — so satisfy it up front. Hand everyone their 2 apples first; whatever's left can be split with no rules at all.
Still stuck? Show hint 2 →
Hint 2 of 2
Now it's "split N identical apples among 3 people, zero allowed." That's stars and bars: lay out the apples in a row and choose where 2 dividers go.
Show solution
Approach: give the minimum first, then unrestricted stars and bars
  1. Pre-give 2 apples to each person (6 used), so the floor is automatically met. That leaves 18 apples to hand out among the three with no lower limit — the hard constraint is gone.
  2. Picture the 18 apples in a row; placing 2 dividers among them splits them into the three shares (a person can get 0). Choosing 2 divider slots out of 18 + 2 = 20 positions gives C(20, 2) = 190.
  3. Why this transfers: a "each gets at least k" condition is removed by pre-allotting k to everyone, converting it to the standard zero-allowed stars-and-bars count C(n + r − 1, r − 1).
Mark: · log in to save