πŸ‡ΊπŸ‡Έ AMC 8 ⇄ switch contest
AMC 8

2014 AMC 8

25 problems — read each, give it a real try, then peek at the hints.

Practice: Take as test →
Problem 1 · 2014 AMC 8 Easy
Arithmetic & Operations order-of-operations

Harry and Terry are each told to calculate 8 − (2 + 5). Harry gets the correct answer. Terry ignores the parentheses and calculates 8 − 2 + 5. If Harry's answer is H and Terry's answer is T, what is the difference HT?

Show answer
Answer: A — −10.
Show hints
Hint 1 of 2
A minus sign in front of a parenthesis flips the sign of everything inside. Dropping the parentheses doesn't just add the 5 differently — it changes 8 − 2 − 5 into 8 − 2 + 5.
Still stuck? Show hint 2 →
Hint 2 of 2
Compute both values; the gap between them is exactly twice the number that got its sign flipped (the 5).
Show solution
Approach: subtracting a group flips every sign inside it
  1. Harry (correct): H = 8 − (2 + 5) = 8 − 7 = 1. Subtracting the whole group means subtracting both the 2 and the 5.
  2. Terry (drops the parentheses): T = 8 − 2 + 5 = 6 + 5 = 11. Now the 5 is added instead of subtracted.
  3. HT = 1 − 11 = −10.
  4. Why this transfers: only the 5 changed roles — it went from −5 to +5, a swing of 10. That's why the answers differ by exactly 10. Whenever you remove parentheses after a minus sign, every term inside must flip.
Mark: · log in to save
Problem 2 · 2014 AMC 8 Easy
Arithmetic & Operations extremes-min-max

Paul owes Paula 35 cents and has a pocket full of 5-cent coins, 10-cent coins, and 25-cent coins that he can use to pay her. What is the difference between the largest and the smallest number of coins he can use to pay her?

Show answer
Answer: E — 5 coins difference.
Show hints
Hint 1 of 2
"Most coins" and "fewest coins" are opposite greedy goals for the same total: to pile up the most, use the smallest coin every time; to use the fewest, grab the biggest coin that still fits.
Still stuck? Show hint 2 →
Hint 2 of 2
Find each count separately, then subtract.
Show solution
Approach: two opposite greedy choices
  1. Most coins ⇒ use only the smallest coin (5 cents): 35 ÷ 5 = 7 coins.
  2. Fewest coins ⇒ grab the largest coins first: 25 + 10 = 35 uses just 2 coins.
  3. Difference: 7 − 2 = 5.
  4. You'll see this again: "maximize the count" and "minimize the count" almost always mean "use the smallest pieces" vs. "use the largest pieces" — a greedy idea that works for making change, stamps, and weights.
Mark: · log in to save
Problem 3 · 2014 AMC 8 Easy
Arithmetic & Operations average-times-count

Isabella had a week to read a book for a school assignment. She read an average of 36 pages per day for the first three days and an average of 44 pages per day for the next three days. She then finished the book by reading 10 pages on the last day. How many pages were in the book?

Show answer
Answer: B — 250 pages.
Show hints
Hint 1 of 2
An average is a stand-in for the real total: "36 pages a day for 3 days" carries the same total as 36 + 36 + 36. So average × days rebuilds each block's pages.
Still stuck? Show hint 2 →
Hint 2 of 2
Add the three blocks: first 3 days, next 3 days, and the final single day.
Show solution
Approach: average × count rebuilds each block's total
  1. First three days: 36 × 3 = 108 pages (the average undoes back into a total).
  2. Next three days: 44 × 3 = 132 pages.
  3. Total: 108 + 132 + 10 = 250.
  4. Key idea you'll reuse: total = average × count. Knowing any two of {total, average, count} gives the third — the same lever solves "find the missing test score" problems.
Mark: · log in to save
Problem 4 · 2014 AMC 8 Easy
Number Theory parityprimes

The sum of two prime numbers is 85. What is the product of these two prime numbers?

Show answer
Answer: E — 166.
Show hints
Hint 1 of 2
85 is odd. Two odds add to an even and two evens add to an even — so an odd total forces one even number and one odd number.
Still stuck? Show hint 2 →
Hint 2 of 2
Among all primes only 2 is even, so one prime is pinned down instantly. No searching required.
Show solution
Approach: an odd sum forces one even addend, and 2 is the only even prime
  1. 85 is odd. Odd + odd = even and even + even = even, so to get an odd sum exactly one prime must be even.
  2. The only even prime is 2, so that prime is 2; the other is 85 − 2 = 83 (prime — check).
  3. Product: 2 × 83 = 166.
  4. Why this transfers: "even prime" almost always means just "2". Watch the parity of a sum and you can often nail one number before doing any real work.
Mark: · log in to save
Problem 5 · 2014 AMC 8 Easy
Ratios, Rates & Proportions unit-rate

Margie's car can go 32 miles on a gallon of gas, and gas currently costs $4 per gallon. How many miles can Margie drive on $20 worth of gas?

Show answer
Answer: C — 160 miles.
Show hints
Hint 1 of 2
Chain the units: dollars → gallons → miles. Each arrow is one given rate, so you never have to guess what to multiply.
Still stuck? Show hint 2 →
Hint 2 of 2
Dollars to gallons uses $4/gallon; gallons to miles uses 32 miles/gallon.
Show solution
Approach: chain the rates: dollars → gallons → miles
  1. Dollars → gallons: 20 ÷ 4 = 5 gallons.
  2. Gallons → miles: 5 × 32 = 160 miles.
  3. Reusable trick: line up the units so the ones you don't want cancel ($ × gal/$ × mi/gal leaves just miles). Then the arithmetic takes care of itself.
Another way — miles per dollar in one step:
  1. Each dollar buys 32 ÷ 4 = 8 miles of driving.
  2. $20 × 8 miles/$ = 160 miles.
Mark: · log in to save
Problem 6 · 2014 AMC 8 Easy
Arithmetic & Operations factoringsum-of-squares

Six rectangles each with a common base width of 2 have lengths of 1, 4, 9, 16, 25, and 36. What is the sum of the areas of the six rectangles?

Show answer
Answer: D — 182.
Show hints
Hint 1 of 2
Every rectangle shares the same width 2, so instead of computing six areas and adding, factor the 2 out: total = 2 × (sum of all the lengths). One multiply at the end.
Still stuck? Show hint 2 →
Hint 2 of 2
Bonus: the lengths 1, 4, 9, 16, 25, 36 are the first six perfect squares.
Show solution
Approach: factor out the common width (distributive property)
  1. All widths equal 2, so total area = 2×1 + 2×4 + … + 2×36 = 2 × (1 + 4 + 9 + 16 + 25 + 36).
  2. The lengths are the first six squares; their sum is 91.
  3. Total area: 2 × 91 = 182.
  4. Why this transfers: a common factor in every term can always be pulled outside the sum — that's the distributive property doing the heavy lifting, turning six multiplications into one.
Mark: · log in to save
Problem 7 · 2014 AMC 8 Easy
Algebra & Patterns sum-and-difference

There are four more girls than boys in Ms. Raub's class of 28 students. What is the ratio of number of girls to the number of boys in her class?

Show answer
Answer: B — 4 : 3.
Show hints
Hint 1 of 2
Picture setting the 4 extra girls aside first. The remaining 28 − 4 = 24 students split evenly into boys and (the rest of the) girls.
Still stuck? Show hint 2 →
Hint 2 of 2
That gives the smaller group = (sum − difference)/2; add the 4 back for the larger group.
Show solution
Approach: sum-and-difference (peel off the gap, then split evenly)
  1. Set aside the 4 "extra" girls. The other 24 students are half boys, half girls: 12 each. So boys = 12, girls = 12 + 4 = 16.
  2. Ratio girls : boys = 16 : 12 = 4 : 3.
  3. Reusable formula: with a known sum S and difference D, the two amounts are (S+D)/2 and (SD)/2 — no equation-solving needed.
Another way — one equation:
  1. Let boys = b; girls = b + 4. Then b + (b + 4) = 28, so 2b = 24 and b = 12.
  2. Girls = 16, ratio = 16 : 12 = 4 : 3.
Mark: · log in to save
Problem 8 · 2014 AMC 8 Easy
Number Theory divisibility-by-11

Eleven members of the Middle School Math Club each paid the same integer amount for a guest speaker to talk about problem solving at their math club meeting. In all, they paid their guest speaker $1A2. What is the missing digit A of this 3-digit number?

Show answer
Answer: D — A = 3.
Show hints
Hint 1 of 2
"11 people each paid the same whole amount" is the whole clue: the total is 11 × something, so 1A2 must be a multiple of 11.
Still stuck? Show hint 2 →
Hint 2 of 2
Test divisibility by 11 with the alternating digit sum: add every other digit, subtract the rest, and check for a multiple of 11.
Show solution
Approach: translate the word clue into a divisibility-by-11 test
  1. Equal split among 11 people ⇒ total is a multiple of 11, so 1A2 must be divisible by 11.
  2. Alternating sum (test for 11): 1 − A + 2 = 3 − A must be a multiple of 11.
  3. A is one digit (0–9), so the only way 3 − A hits a multiple of 11 is 3 − A = 0, giving A = 3.
  4. Check: 132 = 11 × 12. ✓
  5. You'll reuse this: "n equal shares" always means "total divisible by n" — the fastest way to turn a money/sharing sentence into a number-theory condition.
Mark: · log in to save
Problem 9 · 2014 AMC 8 Easy
Geometry & Measurement isosceles-trianglelinear-pair

In ▵ABC, D is a point on side AC such that BD = DC and ∠BCD measures 70°. What is the degree measure of ∠ADB?

Figure for AMC 8 2014 Problem 9
Show answer
Answer: D — 140 degrees.
Show hints
Hint 1 of 2
BD = DC makes ▵BDC isosceles, so the 70° at C is mirrored at B — you instantly get a second 70° for free.
Still stuck? Show hint 2 →
Hint 2 of 2
ADB sits on the straight line AC next to ▵BDC, so it's the exterior angle — equal to the sum of the two far (remote) interior angles.
Show solution
Approach: exterior angle of an isosceles triangle
  1. BD = DC ⇒ ▵BDC is isosceles, so its base angles match: ∠DBC = ∠DCB = 70°. (Equal sides face equal angles.)
  2. ADB is the exterior angle of ▵BDC at D. The exterior angle equals the sum of the two remote interior angles: 70° + 70° = 140°.
  3. Why this transfers: the exterior-angle rule (exterior = sum of the two non-adjacent interiors) lets you skip finding the apex angle entirely — it's a shortcut worth spotting whenever an angle hangs off a straight side.
Another way — linear pair after computing the apex angle:
  1. Base angles 70° each give apex ∠BDC = 180° − 140° = 40°. Then ∠ADB = 180° − 40° = 140°.
Mark: · log in to save
Problem 10 · 2014 AMC 8 Easy
Arithmetic & Operations year-arithmetic

The first AMC 8 was given in 1985 and it has been given annually since that time. Samantha turned 12 years old the year that she took the seventh AMC 8. In what year was Samantha born?

Show answer
Answer: A — 1979.
Show hints
Hint 1 of 2
Watch the off-by-one: the 1st contest was 1985, so the 7th is only 6 years later (not 7). Add the gap, not the count.
Still stuck? Show hint 2 →
Hint 2 of 2
Once you have the year she took it, subtract her age to land on her birth year.
Show solution
Approach: fencepost-careful year arithmetic
  1. The 7th AMC 8 is 6 gaps after the 1st: 1985 + 6 = 1991. (1st→7th is 6 steps, not 7 — the classic fencepost.)
  2. She turned 12 that year, so she was born 1991 − 12 = 1979.
  3. Reusable caution: the n-th item in a yearly sequence starting at year Y falls in Y + (n − 1). Counting endpoints instead of gaps is the most common slip in these problems.
Mark: · log in to save
Problem 11 · 2014 AMC 8 Medium
Counting & Probability lattice-pathscomplementary-counting

Jack wants to bike from his house to Jill's house, which is located three blocks east and two blocks north of Jack's house. After biking each block, Jack can continue either east or north, but he needs to avoid a dangerous intersection one block east and one block north of his house. In how many ways can he reach Jill's house by biking a total of five blocks?

Show answer
Answer: A — 4 ways.
Show hints
Hint 1 of 2
Forbidding a point is hard to count head-on, so flip it: count all paths, then throw away the bad ones. (Count what you don't want — complementary counting.)
Still stuck? Show hint 2 →
Hint 2 of 2
A path through (1,1) splits into two independent legs: ways to reach (1,1) times ways to continue from (1,1) to the goal. Multiply them.
Show solution
Approach: total − paths through (1,1)
  1. Total E/N paths to (3,2): choose which 2 of the 5 steps are North, C(5, 2) = 10.
  2. Paths that hit the bad corner (1,1): (ways to reach (1,1)) × (ways from (1,1) to (3,2)) = C(2,1) × C(3,1) = 2 × 3 = 6. Multiplying works because the two legs are independent.
  3. Allowed = total − bad = 10 − 6 = 4.
  4. Why this transfers: "must avoid X" almost always means "all paths minus paths through X," and any path through a checkpoint factors into (reach it) × (leave it).
Another way — case split on first two moves:
  1. To avoid (1,1) Jack's first two moves must be either EE or NN.
  2. After EE he is at (2, 0) and needs 1 E + 2 N in some order: C(3,1) = 3 paths. After NN he is at (0, 2) and needs 3 E + 0 N: 1 path.
  3. Total: 3 + 1 = 4.
Mark: · log in to save
Problem 12 · 2014 AMC 8 Easy
Counting & Probability permutationsprobability-basic

A magazine printed photos of three celebrities along with three photos of the celebrities as babies. The baby pictures did not identify the celebrities. Readers were asked to match each celebrity with the correct baby pictures. What is the probability that a reader guessing at random will match all three correctly?

Show answer
Answer: B — 1/6.
Show hints
Hint 1 of 2
There's exactly one correct matching, so the probability is just 1 ÷ (number of possible matchings). The whole problem is counting the orderings.
Still stuck? Show hint 2 →
Hint 2 of 2
Three baby photos can be lined up against the three celebrities in 3! ways.
Show solution
Approach: one favorable outcome over all equally likely orderings
  1. Order the 3 baby photos against the celebrities: 3! = 6 equally likely ways.
  2. Exactly 1 of those 6 is the all-correct matching, so probability = 1/6 = 1/6.
  3. Reusable idea: when every arrangement is equally likely and only one wins, P(win) = 1/(total arrangements). The hard part is always the count, never the division.
Another way — match one celebrity at a time:
  1. First celebrity: 1 of 3 baby photos is right ⇒ chance 1/3.
  2. Given that, the second celebrity: 1 of the 2 remaining is right ⇒ chance 1/2 (and the third is then forced).
  3. Multiply: (1/3)(1/2) = 1/6.
Mark: · log in to save
Problem 13 · 2014 AMC 8 Medium
Number Theory parity

If n and m are integers and n2 + m2 is even, which of the following is impossible?

Show answer
Answer: D — n + m cannot be odd.
Show hints
Hint 1 of 2
Squaring never changes even/odd: an even number stays even when squared, an odd stays odd. So n2+m2 behaves exactly like n+m for parity — the exponents are a red herring.
Still stuck? Show hint 2 →
Hint 2 of 2
An even sum forces n and m to share parity. Now check which listed statement that rules out.
Show solution
Approach: a square keeps the parity of its base
  1. Squaring preserves parity, so n2+m2 even means n+m is even too ⇒ n and m have the same parity (both even or both odd).
  2. Same parity always sums to an even number, so n + m can never be odd — that's the impossible choice.
  3. Sanity check on the others: both even (2,2) works; both odd (1,1) works; an even sum is exactly what's forced. Only "sum is odd" is impossible.
  4. Takeaway: for parity questions you can erase squares, products, and other parity-preserving steps and just track even/odd directly.
Mark: · log in to save
Problem 14 · 2014 AMC 8 Medium
Geometry & Measurement area-formulapythagorean-triple

Rectangle ABCD and right triangle DCE have the same area. They are joined to form a trapezoid, as shown. What is DE?

Figure for AMC 8 2014 Problem 14
Show answer
Answer: B — DE = 13.
Show hints
Hint 1 of 2
"Same area" is the bridge: compute the rectangle's area, then that number is the triangle's area too. The shared side DC = 5 is one leg, so the area equation hands you the other leg CE.
Still stuck? Show hint 2 →
Hint 2 of 2
With both legs known, DE is the hypotenuse — watch for a familiar Pythagorean triple before reaching for the calculator.
Show solution
Approach: transfer the area across, then Pythagoras
  1. Rectangle area = 5 × 6 = 30. The triangle has the same area, so ▵DCE = 30.
  2. DCE is right-angled at C with legs DC = 5 and CE: (1/2)(5)(CE) = 30 ⇒ CE = 12.
  3. DE = √(52 + 122) = √169 = 13. (Recognize the 5-12-13 triple and skip the square root.)
  4. Why this transfers: "equal areas" (or equal perimeters, equal anything) is a free equation — set the two expressions equal and an unknown pops out. And memorizing 3-4-5, 5-12-13, 8-15-17 turns many right-triangle problems into instant recall.
Mark: · log in to save
Problem 15 · 2014 AMC 8 Medium
Geometry & Measurement central-angleisosceles-triangle

The circumference of the circle with center O is divided into 12 equal arcs, marked the letters A through L as seen below. What is the number of degrees in the sum of the angles x and y?

Figure for AMC 8 2014 Problem 15
Show answer
Answer: C — 90 degrees.
Show hints
Hint 1 of 2
The 12 equal arcs turn the picture into a clock: each arc is 360°÷12 = 30°. Counting arcs gives you every central angle for free.
Still stuck? Show hint 2 →
Hint 2 of 2
Each marked triangle has two radii as sides, so it's isosceles — once you know the apex (central) angle, the two base angles are each (180° − apex)/2.
Show solution
Approach: central angles from arc-counting, then isosceles base angles
  1. x sits in ▵OAE. Arc AE spans 4 arcs, so the central angle ∠AOE = 4 × 30° = 120°. Two radii make it isosceles, so x = (180° − 120°)/2 = 30°.
  2. y sits in ▵OIG. Arc GI spans 2 arcs, so ∠GOI = 60° and y = (180° − 60°)/2 = 60°.
  3. x + y = 30° + 60° = 90°.
Another way — add the central angles first, then halve:
  1. Both x and y are base angles of isosceles triangles, so each equals (180° − its central angle)/2.
  2. Adding: x + y = [(180° − 120°) + (180° − 60°)]/2 = (60° + 120°)/2 = 180°/2 = 90°.
  3. Spotting that the two leftover arc-angles (120° and 60°) total 180° collapses the work to one division.
Mark: · log in to save
Problem 16 · 2014 AMC 8 Medium
Counting & Probability round-robinavoid-double-counting

The "Middle School Eight" basketball conference has 8 teams. Every season, each team plays every other conference team twice (home and away), and each team also plays 4 games against non-conference opponents. What is the total number of games in a season involving the "Middle School Eight" teams?

Show answer
Answer: B — 88 games.
Show hints
Hint 1 of 2
The trap is double-counting: a conference game is shared by two MSE teams, but a non-conference game touches only one. Count the two kinds with different rules.
Still stuck? Show hint 2 →
Hint 2 of 2
Conference games are pairs of teams (each pair twice); non-conference games belong to a single team, so just add 8 × 4 with no halving.
Show solution
Approach: count conference pairs × 2, plus non-conference (no double-count)
  1. Conference: number of team-pairs is C(8, 2) = 28, and each pair plays twice (home and away) ⇒ 28 × 2 = 56 games.
  2. Non-conference: each of the 8 teams plays 4, and the opponent is outside MSE, so every such game is counted once — 8 × 4 = 32 games.
  3. Total: 56 + 32 = 88.
  4. Why this transfers: when both participants are inside your group, you divide by 2 (or use C(n,2)) to avoid double-counting; when only one participant is inside, you don't. Always ask "is this game shared?"
Another way — count by home games (each conference game has exactly one host):
  1. Every conference game is hosted by exactly one team, and each team hosts the other 7 once: 8 × 7 = 56 conference games — no double-counting since "host" is unique.
  2. Add the 8 × 4 = 32 non-conference games: 56 + 32 = 88.
Mark: · log in to save
Problem 17 · 2014 AMC 8 Medium
Ratios, Rates & Proportions distance-speed-time

George walks 1 mile to school. He leaves home at the same time each day, walks at a steady speed of 3 miles per hour, and arrives just as school begins. Today he was distracted by the pleasant weather and walked the first 12 mile at a speed of only 2 miles per hour. At how many miles per hour must George run the last 12 mile in order to arrive just as school begins today?

Show answer
Answer: B — 6 mph.
Show hints
Hint 1 of 2
Time is the fixed budget here, not speed. He must arrive at the usual moment, so his total travel time is locked at the normal value — figure that out first.
Still stuck? Show hint 2 →
Hint 2 of 2
Subtract the time the slow first half ate up; whatever's left is all he has to cover the last half-mile. Speed = distance ÷ that leftover time.
Show solution
Approach: time is the fixed budget — subtract what's spent
  1. Normal trip: 1 mile at 3 mph takes 1/3 hr. That's the total time budget he must hit today.
  2. Slow first half: (1/2 mile) ÷ (2 mph) = 1/4 hr used up.
  3. Time left for the second half-mile: 1/3 − 1/4 = 4/12 − 3/12 = 1/12 hr.
  4. Required speed = (1/2 mile) ÷ (1/12 hr) = 6 mph.
  5. Why this transfers: in "arrive on time" problems, hold time constant and treat it as a budget. Don't average the speeds — dawdling on the first half costs disproportionately more time, which is why he must nearly triple his pace, not just speed up a little.
Mark: · log in to save
Problem 18 · 2014 AMC 8 Medium
Counting & Probability binomial-counting

Four children were born at City Hospital yesterday. Assume each child is equally likely to be a boy or a girl. Which of the following outcomes is most likely?

Show answer
Answer: D — 3 of one gender and 1 of the other is most likely.
Show hints
Hint 1 of 2
Outcomes feel unequal because they're not single sequences — the fair coins are the 16 ordered strings BBBB…GGGG. Count how many strings each description sweeps up.
Still stuck? Show hint 2 →
Hint 2 of 2
Watch the hidden lump: "3 of one gender and 1 of the other" secretly covers BOTH 3 boys-1 girl AND 3 girls-1 boy, so it gathers twice as many strings as you'd guess.
Show solution
Approach: count favorable sequences out of 16
  1. All 16 birth orders are equally likely; count how many each option covers. All 4 boys: 1 string. All 4 girls: 1 string.
  2. 2-and-2: choose which 2 of the 4 are girls, C(4, 2) = 6 strings.
  3. 3-and-1: this lumps BOTH directions — C(4, 1) (one girl) + C(4, 3) (three girls) = 4 + 4 = 8 strings.
  4. Largest count is 3 of one gender, 1 of the other with 8 strings (and 1 + 1 + 6 + 8 = 16 — check, all cases accounted for).
  5. Why this transfers: "most likely" means "covers the most equally-likely outcomes," and an option phrased as "k of one, the rest of the other" quietly bundles two binomial counts. The counts 1, 4, 6, 4, 1 are row 4 of Pascal's triangle.
Mark: · log in to save
Problem 19 · 2014 AMC 8 Medium
Geometry & Measurement hide-faces-in-3doptimization

A cube with 3-inch edges is to be constructed from 27 smaller cubes with 1-inch edges. Twenty-one of the cubes are colored red and 6 are colored white. If the 3-inch cube is constructed to have the smallest possible white surface area showing, what fraction of the surface area is white?

Show answer
Answer: A — 5/54.
Show hints
Hint 1 of 2
Not all 27 positions are equal: a unit cube shows 3 faces at a corner, 2 on an edge, 1 in the middle of a face, and 0 in the dead center. To hide white, fill the lowest-exposure slots first.
Still stuck? Show hint 2 →
Hint 2 of 2
There's exactly one 0-face slot (center) and six 1-face slots (face-centers) — just enough for the 6 white cubes. Then divide the visible white by the total surface 6 × 9 = 54.
Show solution
Approach: greedily put white cubes in the least-exposed positions
  1. Rank positions by faces showing: center (0), 6 face-centers (1 each), 12 edges (2 each), 8 corners (3 each). White should claim the cheapest slots.
  2. Put 1 white cube in the dead center (0 faces show) and the other 5 in face-centers (1 face each) ⇒ only 5 white faces are visible — the smallest possible.
  3. Total surface area = 6 faces × 32 = 54 unit squares.
  4. White fraction = 5/54.
  5. Why this transfers: minimizing or maximizing exposure on a cube always comes down to sorting positions by how many faces show — corners are expensive, the center is free — then filling greedily.
Mark: · log in to save
Problem 20 · 2014 AMC 8 Medium
Geometry & Measurement quarter-circle-areapi-approximation

Rectangle ABCD has sides CD = 3 and DA = 5. A circle of radius 1 is centered at A, a circle of radius 2 is centered at B, and a circle of radius 3 is centered at C. Which of the following is closest to the area of the region inside the rectangle but outside all three circles?

Figure for AMC 8 2014 Problem 20
Show answer
Answer: B — 4.0.
Show hints
Hint 1 of 3
Each circle is centered at a corner of the rectangle — and a corner is a 90° right angle. What fraction of a full circle does a 90° wedge capture? That fraction of each circle is the only part inside the rectangle.
Still stuck? Show hint 2 →
Hint 2 of 3
So you don't subtract three whole circles — you subtract a quarter of each: area = rectangle − (¼)(sum of the three circle areas).
Still stuck? Show hint 3 →
Hint 3 of 3
The radii (1, 2, 3) all fit without the quarters overlapping, so just add πr2/4 for each.
Show solution
Approach: a corner captures exactly one quarter of each circle
  1. Each circle sits at a corner, where the two rectangle sides meet at 90°. A 90° angle is ¼ of the full 360°, so exactly one quarter of each circle pokes into the rectangle.
  2. Quarter areas: (¼)π(1)2 + (¼)π(2)2 + (¼)π(3)2 = (¼)π(1 + 4 + 9) = 14π/4 = 7π/2.
  3. Region outside all circles = rectangle − quarters = (3 × 5) − 7π/2 = 15 − 7π/2.
  4. 7π/2 ≈ 7(3.14)/2 ≈ 11.0, so the answer ≈ 15 − 11.0 = 4.0.
  5. Spot it next time: a circle centered at a polygon's corner always contributes a wedge equal to (corner angle ÷ 360°) of the circle — quarter at a square corner, third at an equilateral-triangle corner, and the three corner-angles of any triangle even sum to a half-circle.
Another way — estimate with π ≈ 22/7:
  1. Quarters total 7π/2. Using π ≈ 22/7: (7/2)(22/7) = 11 exactly.
  2. Rectangle 15 − 11 = 4.0 — the 22/7 estimate lands the multiple-choice answer with no decimals.
Mark: · log in to save
Problem 21 · 2014 AMC 8 Hard
Number Theory divisibility-by-3mod-arithmetic

The 7-digit numbers 74A52B1 and 326AB4C are each multiples of 3. Which of the following could be the value of C?

Show answer
Answer: A — C = 1.
Show hints
Hint 1 of 2
You can't find A and B individually — and you don't need to. Both numbers share the same A + B, so write each divisibility-by-3 condition and subtract them to cancel A + B entirely.
Still stuck? Show hint 2 →
Hint 2 of 2
What's left is a single condition on C mod 3. Only one answer choice fits.
Show solution
Approach: subtract the two digit-sum conditions so the shared A+B cancels
  1. Divisibility by 3 = digit sum divisible by 3. First number: 7+4+5+2+1 = 19, so 19 + A + B ≡ 0 ⇒ A + B ≡ 2 (mod 3).
  2. Second number: 3+2+6+4 = 15, so 15 + A + B + C ≡ 0 ⇒ A + B + C ≡ 0 (mod 3).
  3. Subtract the first from the second: the A + B cancels, leaving C ≡ −2 ≡ 1 (mod 3).
  4. Among the choices {1, 2, 3, 5, 8}, only C = 1 is ≡ 1 (mod 3).
  5. Why this transfers: when an unknown blocks two equations the same way, subtract to eliminate it — the same move that solves systems of equations works on mod conditions too.
Mark: · log in to save
Problem 22 · 2014 AMC 8 Medium
Algebra & Patterns place-value-algebra

A 2-digit number is such that the product of the digits plus the sum of the digits is equal to the number. What is the units digit of the number?

Show answer
Answer: E — Units digit 9.
Show hints
Hint 1 of 2
The notice is that "digits" means place value: a 2-digit number is 10×(tens) + (units). Write the condition that way and watch how much cancels.
Still stuck? Show hint 2 →
Hint 2 of 2
The units digit b appears on both sides and vanishes; so does most of the rest, leaving a tiny equation that pins down one digit.
Show solution
Approach: place value, then cancel
  1. Write the number as 10a + b (tens digit a, units digit b). The condition "product + sum = number" becomes ab + a + b = 10a + b.
  2. The b on each side cancels, leaving ab = 9a.
  3. Since a ≠ 0 (it's the leading digit), divide by a: b = 9. The units digit is forced — the tens digit can be anything.
  4. Check: 1·9 + 1 + 9 = 19 ✓ (and 29, 39, … all work too).
  5. Why this transfers: turning "the digits" into 10a + b converts a word puzzle into algebra, and the magic here is that the answer doesn't depend on a at all — a sign the question only ever cared about the units digit.
Mark: · log in to save
Problem 23 · 2014 AMC 8 Hard
Logic & Word Problems logic-puzzleprimes-list

Three members of the Euclid Middle School girls' softball team had the following conversation.
Ashley: I just realized that our uniform numbers are all 2-digit primes.
Bethany: And the sum of your two uniform numbers is the date of my birthday earlier this month.
Caitlin: That's funny. The sum of your two uniform numbers is the date of my birthday later this month.
Ashley: And the sum of your two uniform numbers is today's date.
What number does Caitlin wear?

Show answer
Answer: A — 11.
Show hints
Hint 1 of 3
The dates do double duty as ordering clues: every pairwise sum is a calendar date (1–31), and the words "earlier" / "later" / "today" rank those three sums smallest < middle < largest.
Still stuck? Show hint 2 →
Hint 2 of 3
Sums ≤ 31 squeeze the three primes down to a tiny list — find a triple of two-digit primes whose three pairwise sums all fit and are distinct.
Still stuck? Show hint 3 →
Hint 3 of 3
Each girl names the sum of the OTHER two. So the girl with the largest sum-of-others must herself be the smallest number — the big two are added without her.
Show solution
Approach: shrink the prime list, then use date order to rank the sums
  1. Each pairwise sum is a date ≤ 31. Two-digit primes are 11, 13, 17, 19, 23, 29, but any pair using 23 or 29 overshoots 31, so the three numbers come from {11, 13, 17, 19}.
  2. Pick a triple with three distinct sums: {11, 13, 17} gives 11+13 = 24, 11+17 = 28, 13+17 = 30 — all distinct and ≤ 31. ✓
  3. Order the clues: Bethany's date (earlier) is the smallest sum 24, today is the middle 28, Caitlin's date (later) is the largest 30. Each girl quotes the sum of the OTHER two.
  4. Caitlin's date = 30 = sum of the other two = Ashley + Bethany, so Ashley and Bethany are the two larger numbers {13, 17}, leaving Caitlin = 11.
  5. Cross-check: Bethany's date 24 = Ashley + Caitlin = Ashley + 11 ⇒ Ashley = 13, so Bethany = 17, and today = Ashley + Bethany... wait, today = Bethany + Caitlin = 17 + 11 = 28. ✓ All three statements hold.
  6. Caitlin wears 11.
  7. Why this transfers: when each clue references "the others," the person tied to the biggest total is the one left out of it — so largest sum-of-others ↔ smallest own value. Spotting that inverse ordering cracks many "sum of the other two" puzzles.
Mark: · log in to save
Problem 24 · 2014 AMC 8 Hard
Logic & Word Problems optimizationmedian-of-100

One day the Beverage Barn sold 252 cans of soda to 100 customers, and every customer bought at least one can of soda. What is the maximum possible median number of cans of soda bought per customer on that day?

Show answer
Answer: C — 3.5.
Show hints
Hint 1 of 3
The median of 100 sorted values only looks at the 50th and 51st. Everything below the 50th is dead weight you control — so spend as few cans as possible there to free up cans for the middle.
Still stuck? Show hint 2 →
Hint 2 of 3
"At least one each" means the floor is 1, so set the bottom 49 customers to 1 can. That's the cheapest legal way to clear them out of the way.
Still stuck? Show hint 3 →
Hint 3 of 3
Now push the 50th and 51st as high as the leftover cans allow, remembering every customer above the 50th must be ≥ the 50th's value.
Show solution
Approach: minimize the first 49, push the median pair as high as possible
  1. The median of 100 sorted counts is the average of the 50th and 51st. To maximize it, minimize everyone below: set customers 1–49 to the legal minimum of 1 can each (uses 49 cans, leaves 252 − 49 = 203 for the top 51).
  2. Let the 50th count be a and the 51st be b with ab. To spend the fewest cans above the median, make customers 51–100 all equal to b. Then the last 51 use a + 50b ≤ 203.
  3. Push b up. b = 4: need a + 200 ≤ 203 ⇒ a ≤ 3, so take a = 3 (and 3 ≤ 4 ✓). Median = (3 + 4)/2 = 3.5.
  4. b = 5 would need a + 250 ≤ 203 — impossible, so 3.5 is the ceiling.
  5. Sanity check: 49(1) + 3 + 50(4) = 49 + 3 + 200 = 252 cans — exactly the total. ✓
  6. Why this transfers: to maximize a median, starve the bottom half down to the minimum so the saved resource can lift the two middle values — the same "rob the cheap end to fund the position you care about" trick appears all over optimization problems.
Mark: · log in to save
Problem 25 · 2014 AMC 8 Hard
Geometry & Measurement semicircle-lengthscaling-by-pi-over-2

A straight one-mile stretch of highway, 40 feet wide, is closed. Robert rides his bike on a path composed of semicircles as shown. If he rides at 5 miles per hour, how many hours will it take to cover the one-mile stretch? Note: 1 mile = 5280 feet.

Figure for AMC 8 2014 Problem 25
Show answer
Answer: B — π/10 hours.
Show hints
Hint 1 of 3
Don't compute how many semicircles there are — you don't need to. Each semicircle just replaces a straight diameter d with its half-circumference (π/2)d, so the curvy path is the straight path stretched by the same factor π/2, whatever the diameter.
Still stuck? Show hint 2 →
Hint 2 of 3
That means the 40-foot width and the 5280-feet conversion are red herrings — the answer is (π/2 × 1 mile) ÷ speed.
Still stuck? Show hint 3 →
Hint 3 of 3
Time = distance ÷ speed; you already know the straight mile would take 1/5 hour.
Show solution
Approach: the path is the straight distance scaled by π/2
  1. For a semicircle of diameter d, the curved length is half the circumference = (1/2)πd = (π/2)d — exactly π/2 times the straight diameter it sits on.
  2. Laid end to end, every diameter adds up to the full 1 mile, so the whole bike path = (π/2) × 1 mile = π/2 miles. (The 40-ft width and the foot conversion never enter — only the π/2 ratio matters.)
  3. Time = distance ÷ speed = (π/2) ÷ 5 = π/10 hours.
  4. Sanity check: the straight mile takes 1/5 hr; the path is π/2 ≈ 1.57 times longer, and (1/5)(π/2) = π/10 — consistent.
  5. Why this transfers: when a shape is built from pieces that each scale a base length by the same fixed ratio, the whole thing scales by that ratio — so you can replace the wiggly path with π/2 of the straight one and ignore the count of pieces entirely.
Mark: · log in to save