OMMC
OMMC
1
2
Problem 1
There are an infinite number of balls in a row. Their colors from left to
right are
Cycle 1: 1 Red, 1 Green, 1 Blue
Cycle 2: 2 Red, 2 Green, 2 Blue
Cycle i: i Red, i Green, i Blue
and balls in cycle 1 come first, 2 next, and so on, in the order they were
presented within the cycle. Find the sum of the first 2025 balls if Red= 3,
Green= 2, Blue= 1.
3i(i + 1)
(1.1)
2
balls. So we need the largest i such that:
3i(i + 1)
< 2025 (1.2)
2
i(i + 1) ≤ 1350, (1.3)
35 · 36 = 1260, no (1.4)
36 · 37 = 1332, has to be it! (1.5)
3i(i + 1) (1.6)
3 · 35 · 36 + 27 · 3 = 4077 (1.7)
3
Problem 2
Three consecutive even numbers have a six-digit product whose first and
last digits are 4 and 8, respectively. Find the smallest among these three
numbers.
Now
√ note that√a3 is the main determinant of size here. So we compute
3
50, 000 and 3 62, 500 and get approximately 36.8 and 39.6 respectively.
We are far enough from 37 and 40 with these that I think we can comfortably
say those values won’t be thrown off from our guesses. Thus, only 37, 38, 39
remain. by the −a.
Modular arithmatic time! Note that:
and testing:
Number (mod 5) Works?
0 ✗
1 ✗
2 ✓
3 ✗
4 ✗
So a ≡ 2 (mod 5).
Combining the two facts that a ≡ 2 (mod 5) and a = 37, 38, 39, the only
value of a that remains is 37. Using this, the product is 404, 928 (yay!) and
the answer is 2a − 2 = 72
4
Problem 3
In rectangle ABCD, semicircles with diameters AB and CD meet at P and
Q. If P Q = 16 and AB = 20, find [ABCD].
D O2 C
Q P
M
A O1 B
Problem 4
Let N ≥ 106 and N ∈ Z. Find the minimum P over all (P, N ) with the
prior conditions such that
Now let
kN − kP = 20P + 25 (4.3)
(k + 20)P = kN − 25 (4.4)
kN − 25 25 + 20N
P = =N− (4.5)
k + 20 k + 20
and the second part, which lowers P , is monotonically decreasing with k so
we want the smallest k possible, which is 1. So, we need:
21 | N − 25 (4.6)
N ≡4 (mod 21), (4.7)
and 106 is 1 mod 21, so use 106 + 3, and the answer is:
106 − 22
= 47618 . (4.8)
21
6
Problem 18
Let p(x) be a degree 6 monic polynomial (with not necessarily real coeffi-
cients) satisfying that p(x) | p(xb ). Find the sum of all distinct values of
p(1).
Now Immeidately assume none of ri are 1 as if any of them are 1 the sum
is 0. Also assume less than a − 1 are zero as if five are equal to 0 the sixth
must have r2 = r, r = 0, 1, yielding 0 and 1 as the only possibilities.
Now say r1 = reiθ . Then, WLOG:
r1 = reiθ (18.2)
1/2 iθ/2+2πi·(0.b1 )2
r2 = r e (18.3)
1−n 1−n
rn = r2 eiθ2 e2πi·(0.bn−1 ···b1 )2 (18.4)
(there may be multiple cycles!) Then, to complete the cycle, for some n,
−n −n
reiθ = r2 eiθ2 e2πi·(0.bn ···b1 )2 . (18.5)
as:
n−1
Y 2πi 1
e− 2n −1 ·(bk ···b1 bn ···bk+1 )2 · 2 (18.15)
k=0
1
Pn−1
= e−πi· 2n −1 k=0 bk ···b1 bn ···bk+1
(18.16)
Pn−1
bk
= (−1) i=0 . (18.17)
We’ll just evaluate possibilities for sin and multiply the sum of distinct
values by −64 at the end.