problem
stringlengths 14
7.96k
| solution
stringlengths 3
10k
| answer
stringlengths 1
91
| problem_is_valid
stringclasses 1
value | solution_is_valid
stringclasses 1
value | question_type
stringclasses 1
value | problem_type
stringclasses 8
values | problem_raw
stringlengths 14
7.96k
| solution_raw
stringlengths 3
10k
| metadata
dict | uuid
stringlengths 36
36
| id
int64 22.6k
612k
|
|---|---|---|---|---|---|---|---|---|---|---|---|
Three not necessarily distinct positive integers between 1 and 99, inclusive, are written in a row on a blackboard. Then, the numbers, without including any leading zeros, are concatenated to form a new integer $N$. For example, if the integers written, in order, are 25, 6, and 12, then $N=25612$ (and not $N=250612$ ). Determine the number of possible values of $N$.
|
825957 We will divide this into cases based on the number of digits of $N$.
- Case 1: 6 digits. Then each of the three numbers must have two digits, so we have 90 choices for each. So we have a total of $90^{3}=729000$ possibilities.
- Case 2: 5 digits. Then, exactly one of the three numbers is between 1 and 9 , inclusive. We consider cases on the presence of 0 s in $N$.
- No 0s. Then, we have 9 choices for each digit, for a total of $9^{5}=59049$ choices.
- One 0 . Then, the 0 can be the second, third, fourth, or fifth digit, and 9 choices for each of the other 4 digits. Then, we have a total of $4 \times 9^{4}=26244$ choices.
- Two 0s. Then, there must be at least one digit between them and they cannot be in the first digit, giving us 3 choices for the positioning of the 0 s . Then, we have a total of $3 * 9^{3}=2187$ choices.
So we have a total of $59049+26244+2187=87480$ choices in this case.
- Case 3: 4 digits. Again, we casework on the presence of 0s.
- No 0s. Then, we have $9^{4}=6561$ choices.
- One 0 . Then, the 0 can go in the second, third, or fourth digit, so we have $3 \times 9^{3}=2187$ choices.
So we have a total of $6561+2187=8748$ choices in this case.
- Case 4: 3 digits. Then, we cannot have any 0s, so we have a total of $9^{3}=729$ choices.
Hence, we have a total of $729000+87480+8748+729=825957$ choices for $N$.
|
825957
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Three not necessarily distinct positive integers between 1 and 99, inclusive, are written in a row on a blackboard. Then, the numbers, without including any leading zeros, are concatenated to form a new integer $N$. For example, if the integers written, in order, are 25, 6, and 12, then $N=25612$ (and not $N=250612$ ). Determine the number of possible values of $N$.
|
825957 We will divide this into cases based on the number of digits of $N$.
- Case 1: 6 digits. Then each of the three numbers must have two digits, so we have 90 choices for each. So we have a total of $90^{3}=729000$ possibilities.
- Case 2: 5 digits. Then, exactly one of the three numbers is between 1 and 9 , inclusive. We consider cases on the presence of 0 s in $N$.
- No 0s. Then, we have 9 choices for each digit, for a total of $9^{5}=59049$ choices.
- One 0 . Then, the 0 can be the second, third, fourth, or fifth digit, and 9 choices for each of the other 4 digits. Then, we have a total of $4 \times 9^{4}=26244$ choices.
- Two 0s. Then, there must be at least one digit between them and they cannot be in the first digit, giving us 3 choices for the positioning of the 0 s . Then, we have a total of $3 * 9^{3}=2187$ choices.
So we have a total of $59049+26244+2187=87480$ choices in this case.
- Case 3: 4 digits. Again, we casework on the presence of 0s.
- No 0s. Then, we have $9^{4}=6561$ choices.
- One 0 . Then, the 0 can go in the second, third, or fourth digit, so we have $3 \times 9^{3}=2187$ choices.
So we have a total of $6561+2187=8748$ choices in this case.
- Case 4: 3 digits. Then, we cannot have any 0s, so we have a total of $9^{3}=729$ choices.
Hence, we have a total of $729000+87480+8748+729=825957$ choices for $N$.
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-guts-solutions.jsonl",
"problem_match": "\n24. [12]",
"solution_match": "\nAnswer: "
}
|
7198e080-9d6a-561c-a67a-a6c4f925ab62
| 608,926
|
Let $X Y Z$ be an equilateral triangle, and let $K, L, M$ be points on sides $X Y, Y Z, Z X$, respectively, such that $X K / K Y=B, Y L / L Z=1 / C$, and $Z M / M X=1$. Determine the ratio of the area of triangle $K L M$ to the area of triangle $X Y Z$.
|
$\frac{1}{5}$ First, we note that
$$
[K L M]=[X Y Z]-[X K M]-[Y L K]-[Z M L]
$$
Then, note that
$$
\begin{gathered}
{[X K M]=\frac{X K}{X Y} \cdot \frac{X M}{X Z} \cdot[X Y Z]=\frac{B}{B+1} \cdot \frac{1}{2} \cdot[X Y Z]} \\
{[Y L K]=\frac{Y L}{Y Z} \cdot \frac{Y K}{Y X} \cdot[X Y Z]=\frac{1}{C+1} \cdot \frac{1}{B+1} \cdot[X Y Z]} \\
{[Z M L]=\frac{Z M}{Z X} \cdot \frac{Z L}{Z Y} \cdot[X Y Z]=\frac{1}{2} \cdot \frac{1}{C+1} \cdot[X Y Z]}
\end{gathered}
$$
Consequently,
$$
\begin{aligned}
A & =\frac{[K L M]}{[X Y Z]} \\
& =1-\frac{B}{B+1} \cdot \frac{1}{2}-\frac{1}{C+1} \cdot \frac{1}{B+1}-\frac{C}{C+1} \cdot \frac{1}{2} \\
& =\frac{B+C}{(B+1)(C+1)(2)}
\end{aligned}
$$
If we solve our system of equations for $A, B, C$, we get that $A=\frac{1}{5}$.

|
\frac{1}{5}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $X Y Z$ be an equilateral triangle, and let $K, L, M$ be points on sides $X Y, Y Z, Z X$, respectively, such that $X K / K Y=B, Y L / L Z=1 / C$, and $Z M / M X=1$. Determine the ratio of the area of triangle $K L M$ to the area of triangle $X Y Z$.
|
$\frac{1}{5}$ First, we note that
$$
[K L M]=[X Y Z]-[X K M]-[Y L K]-[Z M L]
$$
Then, note that
$$
\begin{gathered}
{[X K M]=\frac{X K}{X Y} \cdot \frac{X M}{X Z} \cdot[X Y Z]=\frac{B}{B+1} \cdot \frac{1}{2} \cdot[X Y Z]} \\
{[Y L K]=\frac{Y L}{Y Z} \cdot \frac{Y K}{Y X} \cdot[X Y Z]=\frac{1}{C+1} \cdot \frac{1}{B+1} \cdot[X Y Z]} \\
{[Z M L]=\frac{Z M}{Z X} \cdot \frac{Z L}{Z Y} \cdot[X Y Z]=\frac{1}{2} \cdot \frac{1}{C+1} \cdot[X Y Z]}
\end{gathered}
$$
Consequently,
$$
\begin{aligned}
A & =\frac{[K L M]}{[X Y Z]} \\
& =1-\frac{B}{B+1} \cdot \frac{1}{2}-\frac{1}{C+1} \cdot \frac{1}{B+1}-\frac{C}{C+1} \cdot \frac{1}{2} \\
& =\frac{B+C}{(B+1)(C+1)(2)}
\end{aligned}
$$
If we solve our system of equations for $A, B, C$, we get that $A=\frac{1}{5}$.

|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-guts-solutions.jsonl",
"problem_match": "\n25. [12]",
"solution_match": "\nAnswer: "
}
|
02376220-c79b-5cc1-b0b9-4ebd0e362cb8
| 608,927
|
Determine the positive real value of $x$ for which
$$
\sqrt{2+A C+2 C x}+\sqrt{A C-2+2 A x}=\sqrt{2(A+C) x+2 A C} .
$$
|
4 Note that if we have $\sqrt{a}+\sqrt{b}=\sqrt{a+b}$ for non-negative reals $a, b$, then squaring gives us that $2 \sqrt{a b}=0$, so that either $a=0$ or $b=0$.
Now, note that
$$
(2+A C+2 C x)+(A C-2+2 A x)=(2(A+C) x+2 A C)
$$
Consequently, either $(2+A C+2 C x)$ or $(A C-2+2 A x)$ must be equal to 0 . However, we observe from the problems that both $A, C$, and $x$ must be non-negative, so $(2+A C+2 C x)>0$. As a result, we know that $A C-2+2 A x=0$, or that
$$
B=x=\frac{2-A C}{2 A}
$$
If we solve our system of equations for $A, B, C$, we get that $B=4$.
|
4
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Determine the positive real value of $x$ for which
$$
\sqrt{2+A C+2 C x}+\sqrt{A C-2+2 A x}=\sqrt{2(A+C) x+2 A C} .
$$
|
4 Note that if we have $\sqrt{a}+\sqrt{b}=\sqrt{a+b}$ for non-negative reals $a, b$, then squaring gives us that $2 \sqrt{a b}=0$, so that either $a=0$ or $b=0$.
Now, note that
$$
(2+A C+2 C x)+(A C-2+2 A x)=(2(A+C) x+2 A C)
$$
Consequently, either $(2+A C+2 C x)$ or $(A C-2+2 A x)$ must be equal to 0 . However, we observe from the problems that both $A, C$, and $x$ must be non-negative, so $(2+A C+2 C x)>0$. As a result, we know that $A C-2+2 A x=0$, or that
$$
B=x=\frac{2-A C}{2 A}
$$
If we solve our system of equations for $A, B, C$, we get that $B=4$.
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-guts-solutions.jsonl",
"problem_match": "\n26. [12]",
"solution_match": "\nAnswer: "
}
|
ea1760b7-7d60-52b8-baf6-c190709e1615
| 608,928
|
In-Young generates a string of $B$ zeroes and ones using the following method:
- First, she flips a fair coin. If it lands heads, her first digit will be a 0 , and if it lands tails, her first digit will be a 1.
- For each subsequent bit, she flips an unfair coin, which lands heads with probability $A$. If the coin lands heads, she writes down the number (zero or one) different from previous digit, while if the coin lands tails, she writes down the previous digit again.
What is the expected value of the number of zeroes in her string?
|
2 Since each digit is dependent on the previous, and the first digit is random, we note that the probability that In Young obtains a particular string is the same probability as that she obtains the inverse string (i.e. that where the positions of the 0 s and 1 s are swapped). Consequently, we would expect that half of her digits are 0s, so that
$$
C=\frac{B}{2} .
$$
If we solve our system of equations for $A, B, C$, we get that $C=2$.
Solution of the system of equations for Problems 25, 26, 27:
Thus, we have the three equations
$$
A=\frac{B+C}{(B+1)(C+1)(2)}, B=\frac{2-A C}{2 A}, C=\frac{B}{2}
$$
Plugging the last equation into the first two results in
$$
A=\frac{3 B}{(B+1)(B+2)(2)} \Rightarrow B=\frac{4-A B}{4 A}
$$
Rearranging the second equation gives
$$
4 A B=4-A B \Rightarrow A B=\frac{4}{5} \Rightarrow A=\frac{4}{5 B}
$$
Then, plugging this into the first equation gives
$$
\begin{gathered}
\frac{4}{5 B}=\frac{3 B}{(B+1)(B+2)(2)} \\
\Rightarrow 15 B^{2}=8 B^{2}+24 B+16 \\
\Rightarrow 7 B^{2}-24 B-16=0 \\
\Rightarrow(7 B+4)(B-4)=0
\end{gathered}
$$
Since we know that $B>0$, we get that $B=4$. Plugging this back in gives $A=\frac{1}{5}$ and $C=2$.
|
2
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
In-Young generates a string of $B$ zeroes and ones using the following method:
- First, she flips a fair coin. If it lands heads, her first digit will be a 0 , and if it lands tails, her first digit will be a 1.
- For each subsequent bit, she flips an unfair coin, which lands heads with probability $A$. If the coin lands heads, she writes down the number (zero or one) different from previous digit, while if the coin lands tails, she writes down the previous digit again.
What is the expected value of the number of zeroes in her string?
|
2 Since each digit is dependent on the previous, and the first digit is random, we note that the probability that In Young obtains a particular string is the same probability as that she obtains the inverse string (i.e. that where the positions of the 0 s and 1 s are swapped). Consequently, we would expect that half of her digits are 0s, so that
$$
C=\frac{B}{2} .
$$
If we solve our system of equations for $A, B, C$, we get that $C=2$.
Solution of the system of equations for Problems 25, 26, 27:
Thus, we have the three equations
$$
A=\frac{B+C}{(B+1)(C+1)(2)}, B=\frac{2-A C}{2 A}, C=\frac{B}{2}
$$
Plugging the last equation into the first two results in
$$
A=\frac{3 B}{(B+1)(B+2)(2)} \Rightarrow B=\frac{4-A B}{4 A}
$$
Rearranging the second equation gives
$$
4 A B=4-A B \Rightarrow A B=\frac{4}{5} \Rightarrow A=\frac{4}{5 B}
$$
Then, plugging this into the first equation gives
$$
\begin{gathered}
\frac{4}{5 B}=\frac{3 B}{(B+1)(B+2)(2)} \\
\Rightarrow 15 B^{2}=8 B^{2}+24 B+16 \\
\Rightarrow 7 B^{2}-24 B-16=0 \\
\Rightarrow(7 B+4)(B-4)=0
\end{gathered}
$$
Since we know that $B>0$, we get that $B=4$. Plugging this back in gives $A=\frac{1}{5}$ and $C=2$.
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-guts-solutions.jsonl",
"problem_match": "\n27. [12]",
"solution_match": "\nAnswer: "
}
|
991495f8-0e69-5377-826a-bc99f000bfac
| 608,929
|
Determine the value of
$$
\sum_{k=1}^{2011} \frac{k-1}{k!(2011-k)!} .
$$
|
$\frac{2009\left(2^{2010}\right)+1}{2011!}$ We note that
$$
\begin{aligned}
(2011!) \sum_{k=1}^{2011} \frac{k-1}{k!(2011-k)!} & =\sum_{k=1}^{2011} \frac{(2011!)(k-1)}{k!(2011-k)!} \\
& =\sum_{k=1}^{2011} \frac{k(2011)!}{k!(2011-k)!}-\sum_{k=1}^{2011} \frac{2011!}{k!(2011-k)!} \\
& =\sum_{k=1}^{2011} k\binom{2011}{k}-\sum_{k=1}^{2011}\binom{2011}{k} \\
& =(2011)\left(2^{2010}\right)-\left(2^{2011}-1\right)
\end{aligned}
$$
Thus, we get an answer of $\left(2009\left(2^{2010}\right)+1\right) /(2011!)$.
Note: To compute the last two sums, observe that
$$
\sum_{k=0}^{2011}\binom{2011}{k}=(1+1)^{2011}=2^{2011}
$$
by the Binomial Theorem, and that
$$
\sum_{k=0}^{2011} k\binom{2011}{k}=\frac{1}{2}\left(\sum_{k=0}^{2011} k\binom{2011}{k}+\sum_{k=0}^{2011}(2011-k)\binom{2011}{2011-k}\right)=2011\left(2^{2010}\right)
$$
|
\frac{2009\left(2^{2010}\right)+1}{2011!}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Determine the value of
$$
\sum_{k=1}^{2011} \frac{k-1}{k!(2011-k)!} .
$$
|
$\frac{2009\left(2^{2010}\right)+1}{2011!}$ We note that
$$
\begin{aligned}
(2011!) \sum_{k=1}^{2011} \frac{k-1}{k!(2011-k)!} & =\sum_{k=1}^{2011} \frac{(2011!)(k-1)}{k!(2011-k)!} \\
& =\sum_{k=1}^{2011} \frac{k(2011)!}{k!(2011-k)!}-\sum_{k=1}^{2011} \frac{2011!}{k!(2011-k)!} \\
& =\sum_{k=1}^{2011} k\binom{2011}{k}-\sum_{k=1}^{2011}\binom{2011}{k} \\
& =(2011)\left(2^{2010}\right)-\left(2^{2011}-1\right)
\end{aligned}
$$
Thus, we get an answer of $\left(2009\left(2^{2010}\right)+1\right) /(2011!)$.
Note: To compute the last two sums, observe that
$$
\sum_{k=0}^{2011}\binom{2011}{k}=(1+1)^{2011}=2^{2011}
$$
by the Binomial Theorem, and that
$$
\sum_{k=0}^{2011} k\binom{2011}{k}=\frac{1}{2}\left(\sum_{k=0}^{2011} k\binom{2011}{k}+\sum_{k=0}^{2011}(2011-k)\binom{2011}{2011-k}\right)=2011\left(2^{2010}\right)
$$
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-guts-solutions.jsonl",
"problem_match": "\n28. [14]",
"solution_match": "\nAnswer: "
}
|
dd0131c5-92ce-5d82-a722-f28cd44269dd
| 608,930
|
Let $A B C$ be a triangle with $A B=4, B C=8$, and $C A=5$. Let $M$ be the midpoint of $B C$, and let $D$ be the point on the circumcircle of $A B C$ so that segment $A D$ intersects the interior of $A B C$, and $\angle B A D=\angle C A M$. Let $A D$ intersect side $B C$ at $X$. Compute the ratio $A X / A D$.
|
| $\frac{9}{41}$ |
| :---: |
| Let $E$ be the intersection of $A M$ with the circumcircle of $A B C$. We note that, by | equal angles $A D C \sim A B M$, so that
$$
A D=A C\left(\frac{A B}{A M}\right)=\frac{20}{A M}
$$
Using the law of cosines on $A B C$, we get that
$$
\cos B=\frac{4^{2}+8^{2}-5^{2}}{2(4)(8)}=\frac{55}{64}
$$
Then, using the law of cosines on $A B M$, we get that
$$
A M=\sqrt{4^{2}+4^{2}-2(4)(4) \cos B}=\frac{3}{\sqrt{2}} \Rightarrow A D=\frac{20 \sqrt{2}}{3} .
$$
Applying Power of a Point on $M$,
$$
(A M)(M E)=(B M)(M C) \Rightarrow M E=\frac{16 \sqrt{2}}{3} \Rightarrow A E=\frac{41 \sqrt{2}}{6}
$$
Then, we note that $A X B \sim A C E$, so that
$$
A X=A B\left(\frac{A C}{A E}\right)=\frac{60 \sqrt{2}}{41} \Rightarrow \frac{A X}{A D}=\frac{9}{41}
$$

|
\frac{9}{41}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $A B C$ be a triangle with $A B=4, B C=8$, and $C A=5$. Let $M$ be the midpoint of $B C$, and let $D$ be the point on the circumcircle of $A B C$ so that segment $A D$ intersects the interior of $A B C$, and $\angle B A D=\angle C A M$. Let $A D$ intersect side $B C$ at $X$. Compute the ratio $A X / A D$.
|
| $\frac{9}{41}$ |
| :---: |
| Let $E$ be the intersection of $A M$ with the circumcircle of $A B C$. We note that, by | equal angles $A D C \sim A B M$, so that
$$
A D=A C\left(\frac{A B}{A M}\right)=\frac{20}{A M}
$$
Using the law of cosines on $A B C$, we get that
$$
\cos B=\frac{4^{2}+8^{2}-5^{2}}{2(4)(8)}=\frac{55}{64}
$$
Then, using the law of cosines on $A B M$, we get that
$$
A M=\sqrt{4^{2}+4^{2}-2(4)(4) \cos B}=\frac{3}{\sqrt{2}} \Rightarrow A D=\frac{20 \sqrt{2}}{3} .
$$
Applying Power of a Point on $M$,
$$
(A M)(M E)=(B M)(M C) \Rightarrow M E=\frac{16 \sqrt{2}}{3} \Rightarrow A E=\frac{41 \sqrt{2}}{6}
$$
Then, we note that $A X B \sim A C E$, so that
$$
A X=A B\left(\frac{A C}{A E}\right)=\frac{60 \sqrt{2}}{41} \Rightarrow \frac{A X}{A D}=\frac{9}{41}
$$

|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-guts-solutions.jsonl",
"problem_match": "\n29. [14]",
"solution_match": "\nAnswer: "
}
|
1fa128b4-fc66-5baa-9b2c-f7dd2a3c451a
| 608,931
|
Let $S$ be a set of consecutive positive integers such that for any integer $n$ in $S$, the sum of the digits of $n$ is not a multiple of 11. Determine the largest possible number of elements of $S$.
|
38 We claim that the answer is 38 . This can be achieved by taking the smallest integer in the set to be 999981. Then, our sums of digits of the integers in the set are
$$
45, \ldots, 53,45, \ldots, 54,1, \ldots, 10,2, \ldots, 10
$$
none of which are divisible by 11 .
Suppose now that we can find a larger set $S$ : then we can then take a 39-element subset of $S$ which has the same property. Note that this implies that there are consecutive integers $a-1, a, a+1$ for which $10 b, \ldots, 10 b+9$ are all in $S$ for $b=a-1, a, a+1$. Now, let $10 a$ have sum of digits $N$. Then, the sums of digits of $10 a+1,10 a+2, \ldots, 10 a+9$ are $N+1, N+2, \ldots, N+9$, respectively, and it follows that $n \equiv 1(\bmod 11)$.
If the tens digit of $10 a$ is not 9 , note that $10(a+1)+9$ has sum of digits $N+10$, which is divisible by 11 , a contradiction. On the other hand, if the tens digit of $10 a$ is 9 , the sum of digits of $10(a-1)$ is $N-1$, which is also divisible by 11 . Thus, $S$ has at most 38 elements.
Motivation: We want to focus on subsets of $S$ of the form $\{10 a, \ldots, 10 a+9\}$, since the sum of digits goes up by 1 most of the time. If the tens digit of $10 a$ is anything other than 0 or 9 , we see that $S$ can at most contain the integers between $10 a-8$ and $10 a+18$, inclusive. However, we can attempt to make $10(a-1)+9$ have sum of digits congruent to $N+9$ modulo 11 , as to be able to add as many integers to the beginning as possible, which can be achieved by making $10(a-1)+9$ end in the appropriate number of nines. We see that we want to take $10(a-1)+9=999999$ so that the sum of digits upon adding 1 goes down by $53 \equiv 9(\bmod 11)$, giving the example we constructed previously.
|
38
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Let $S$ be a set of consecutive positive integers such that for any integer $n$ in $S$, the sum of the digits of $n$ is not a multiple of 11. Determine the largest possible number of elements of $S$.
|
38 We claim that the answer is 38 . This can be achieved by taking the smallest integer in the set to be 999981. Then, our sums of digits of the integers in the set are
$$
45, \ldots, 53,45, \ldots, 54,1, \ldots, 10,2, \ldots, 10
$$
none of which are divisible by 11 .
Suppose now that we can find a larger set $S$ : then we can then take a 39-element subset of $S$ which has the same property. Note that this implies that there are consecutive integers $a-1, a, a+1$ for which $10 b, \ldots, 10 b+9$ are all in $S$ for $b=a-1, a, a+1$. Now, let $10 a$ have sum of digits $N$. Then, the sums of digits of $10 a+1,10 a+2, \ldots, 10 a+9$ are $N+1, N+2, \ldots, N+9$, respectively, and it follows that $n \equiv 1(\bmod 11)$.
If the tens digit of $10 a$ is not 9 , note that $10(a+1)+9$ has sum of digits $N+10$, which is divisible by 11 , a contradiction. On the other hand, if the tens digit of $10 a$ is 9 , the sum of digits of $10(a-1)$ is $N-1$, which is also divisible by 11 . Thus, $S$ has at most 38 elements.
Motivation: We want to focus on subsets of $S$ of the form $\{10 a, \ldots, 10 a+9\}$, since the sum of digits goes up by 1 most of the time. If the tens digit of $10 a$ is anything other than 0 or 9 , we see that $S$ can at most contain the integers between $10 a-8$ and $10 a+18$, inclusive. However, we can attempt to make $10(a-1)+9$ have sum of digits congruent to $N+9$ modulo 11 , as to be able to add as many integers to the beginning as possible, which can be achieved by making $10(a-1)+9$ end in the appropriate number of nines. We see that we want to take $10(a-1)+9=999999$ so that the sum of digits upon adding 1 goes down by $53 \equiv 9(\bmod 11)$, giving the example we constructed previously.
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-guts-solutions.jsonl",
"problem_match": "\n30. [14]",
"solution_match": "\nAnswer: "
}
|
90a85356-0dfb-5fb9-b57e-36a84987f94c
| 608,932
|
Let $A B C$ be a triangle with $A B=5, B C=8$, and $C A=7$. Let $\Gamma$ be a circle internally tangent to the circumcircle of $A B C$ at $A$ which is also tangent to segment $B C$. $\Gamma$ intersects $A B$ and $A C$ at points $D$ and $E$, respectively. Determine the length of segment $D E$.
|
$\frac{40}{9}$

First, note that a homothety $h$ centered at $A$ takes $\Gamma$ to the circumcircle of $A B C, D$ to $B$ and $E$ to $C$, since the two circles are tangent. As a result, we have $D E \| B C$. Now, let $P$ be the center of $\Gamma$ and $O$ be the circumcenter of $A B C$ : by the homothety $h$, we have $D E / B C=A P / A O$.
Let $\Gamma$ be tangent to $B C$ at $X$, and let ray $\overrightarrow{A X}$ meet the circumcircle of $A B C$ at $Y$. Note that $Y$ is the image of $X$ under $h$. Furthermore, $h$ takes $B C$ to the tangent line $l$ to the circumcircle of $A B C$ at $Y$, and since $B C \| l$, we must have that $Y$ is the midpoint of arc $\overparen{B C}$. Therefore, $A X$ bisects $\angle B A C$.
Now, let $Z$ be the foot of the altitude from $A$ to $B C$, and let $M$ be the midpoint of $B C$, so that $O M \perp B C$. Note that $A P / A O=Z X / Z M$. Now, letting $B C=a=8, C A=b=7$, and $A B=c=5$, we compute
$$
B Z=c \cos B=\frac{c^{2}+a^{2}-b^{2}}{2 a}=\frac{5}{2}
$$
by the Law of Cosines,
$$
B X=\frac{a c}{b+c}=\frac{10}{3}
$$
by the Angle Bisector Theorem, and
$$
B M=4 .
$$
To finish,
$$
D E=\frac{(A P)(B C)}{A O}=\frac{(Z X)(B C)}{Z M}=\frac{(5 / 6)(8)}{(3 / 2)}=\frac{40}{9}
$$
|
\frac{40}{9}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $A B C$ be a triangle with $A B=5, B C=8$, and $C A=7$. Let $\Gamma$ be a circle internally tangent to the circumcircle of $A B C$ at $A$ which is also tangent to segment $B C$. $\Gamma$ intersects $A B$ and $A C$ at points $D$ and $E$, respectively. Determine the length of segment $D E$.
|
$\frac{40}{9}$

First, note that a homothety $h$ centered at $A$ takes $\Gamma$ to the circumcircle of $A B C, D$ to $B$ and $E$ to $C$, since the two circles are tangent. As a result, we have $D E \| B C$. Now, let $P$ be the center of $\Gamma$ and $O$ be the circumcenter of $A B C$ : by the homothety $h$, we have $D E / B C=A P / A O$.
Let $\Gamma$ be tangent to $B C$ at $X$, and let ray $\overrightarrow{A X}$ meet the circumcircle of $A B C$ at $Y$. Note that $Y$ is the image of $X$ under $h$. Furthermore, $h$ takes $B C$ to the tangent line $l$ to the circumcircle of $A B C$ at $Y$, and since $B C \| l$, we must have that $Y$ is the midpoint of arc $\overparen{B C}$. Therefore, $A X$ bisects $\angle B A C$.
Now, let $Z$ be the foot of the altitude from $A$ to $B C$, and let $M$ be the midpoint of $B C$, so that $O M \perp B C$. Note that $A P / A O=Z X / Z M$. Now, letting $B C=a=8, C A=b=7$, and $A B=c=5$, we compute
$$
B Z=c \cos B=\frac{c^{2}+a^{2}-b^{2}}{2 a}=\frac{5}{2}
$$
by the Law of Cosines,
$$
B X=\frac{a c}{b+c}=\frac{10}{3}
$$
by the Angle Bisector Theorem, and
$$
B M=4 .
$$
To finish,
$$
D E=\frac{(A P)(B C)}{A O}=\frac{(Z X)(B C)}{Z M}=\frac{(5 / 6)(8)}{(3 / 2)}=\frac{40}{9}
$$
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-guts-solutions.jsonl",
"problem_match": "\n33. [17]",
"solution_match": "\nAnswer: "
}
|
60c9c90c-8d04-570f-8df1-7c7a1516ccfa
| 608,935
|
The integer 843301 is prime. The primorial of a prime number $p$, denoted $p \#$, is defined to be the product of all prime numbers less than or equal to $p$. Determine the number of digits in 843301\#. Your score will be
$$
\left.\max \left\{\left\lvert\, 60\left(\frac{1}{3}-\left|\ln \left(\frac{A}{d}\right)\right|\right)\right.\right\rfloor, 0\right\},
$$
where $A$ is your answer and $d$ is the actual answer.
|
365851 Remark: 843301\#-1 is the largest known prime number of the form $p \#-1$, where $p$ is prime.
|
365851
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
The integer 843301 is prime. The primorial of a prime number $p$, denoted $p \#$, is defined to be the product of all prime numbers less than or equal to $p$. Determine the number of digits in 843301\#. Your score will be
$$
\left.\max \left\{\left\lvert\, 60\left(\frac{1}{3}-\left|\ln \left(\frac{A}{d}\right)\right|\right)\right.\right\rfloor, 0\right\},
$$
where $A$ is your answer and $d$ is the actual answer.
|
365851 Remark: 843301\#-1 is the largest known prime number of the form $p \#-1$, where $p$ is prime.
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-guts-solutions.jsonl",
"problem_match": "\n34. [20]",
"solution_match": "\nAnswer: "
}
|
15fdc313-628f-5056-afb7-d805a41d327e
| 608,936
|
Let $G$ be the number of Google hits of "guts round" at 10:31PM on October 31, 2011. Let $B$ be the number of Bing hits of "guts round" at the same time. Determine $B / G$. Your score will be
$$
\max \left(0,\left\lfloor 20\left(1-\frac{20|a-k|}{k}\right)\right\rfloor\right),
$$
where $k$ is the actual answer and $a$ is your answer.
|
. 82721 The number of Google hits was 7350. The number of Bing hits was 6080. The answer is thus $6080 / 7350=.82721$.
|
0.82721
|
Yes
|
Yes
|
math-word-problem
|
Other
|
Let $G$ be the number of Google hits of "guts round" at 10:31PM on October 31, 2011. Let $B$ be the number of Bing hits of "guts round" at the same time. Determine $B / G$. Your score will be
$$
\max \left(0,\left\lfloor 20\left(1-\frac{20|a-k|}{k}\right)\right\rfloor\right),
$$
where $k$ is the actual answer and $a$ is your answer.
|
. 82721 The number of Google hits was 7350. The number of Bing hits was 6080. The answer is thus $6080 / 7350=.82721$.
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-guts-solutions.jsonl",
"problem_match": "\n35. [20]",
"solution_match": "\nAnswer: "
}
|
f6d01b11-c36e-53e7-ab54-a39fc06e59b5
| 608,937
|
Find the number of positive integers $x$ less than 100 for which
$$
3^{x}+5^{x}+7^{x}+11^{x}+13^{x}+17^{x}+19^{x}
$$
is prime.
|
0 We claim that our integer is divisible by 3 for all positive integers $x$. Indeed, we have
$$
\begin{aligned}
3^{x}+5^{x}+7^{x}+11^{x}+13^{x}+17^{x}+19^{x} & \equiv(0)^{x}+(-1)^{x}+(1)^{x}+(-1)^{x}+(1)^{x}+(-1)^{x}+(1)^{x} \\
& \equiv 3\left[(1)^{x}+(-1)^{x}\right] \\
& \equiv 0 \quad(\bmod 3) .
\end{aligned}
$$
It is clear that for all $x \geq 1$, our integer is strictly greater than 3 , so it will always be composite, making our answer 0 .
|
0
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Find the number of positive integers $x$ less than 100 for which
$$
3^{x}+5^{x}+7^{x}+11^{x}+13^{x}+17^{x}+19^{x}
$$
is prime.
|
0 We claim that our integer is divisible by 3 for all positive integers $x$. Indeed, we have
$$
\begin{aligned}
3^{x}+5^{x}+7^{x}+11^{x}+13^{x}+17^{x}+19^{x} & \equiv(0)^{x}+(-1)^{x}+(1)^{x}+(-1)^{x}+(1)^{x}+(-1)^{x}+(1)^{x} \\
& \equiv 3\left[(1)^{x}+(-1)^{x}\right] \\
& \equiv 0 \quad(\bmod 3) .
\end{aligned}
$$
It is clear that for all $x \geq 1$, our integer is strictly greater than 3 , so it will always be composite, making our answer 0 .
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-team-solutions.jsonl",
"problem_match": "\n1. [2]",
"solution_match": "\nAnswer: "
}
|
c152860b-b98a-59f5-a8f2-af00e05de28b
| 608,939
|
Find the sum of the coefficients of the polynomial $P(x)=x^{4}-29 x^{3}+a x^{2}+b x+c$, given that $P(5)=11, P(11)=17$, and $P(17)=23$.
|
-3193 Define $Q(x)=P(x)-x-6=x^{4}-29 x^{3}+a x^{2}+(b-1) x+(c-6)$ and notice that $Q(5)=Q(11)=Q(17)=0 . Q(x)$ has degree 4 and by Vieta's Formulas the sum of its roots is 29, so its last root is $29-17-11-5=-4$, giving us $Q(x)=(x-5)(x-11)(x-17)(x+4)$. This means that $P(1)=Q(1)+7=(-4)(-10)(-16)(5)+7=-3200+7=-3193$.
|
-3193
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Find the sum of the coefficients of the polynomial $P(x)=x^{4}-29 x^{3}+a x^{2}+b x+c$, given that $P(5)=11, P(11)=17$, and $P(17)=23$.
|
-3193 Define $Q(x)=P(x)-x-6=x^{4}-29 x^{3}+a x^{2}+(b-1) x+(c-6)$ and notice that $Q(5)=Q(11)=Q(17)=0 . Q(x)$ has degree 4 and by Vieta's Formulas the sum of its roots is 29, so its last root is $29-17-11-5=-4$, giving us $Q(x)=(x-5)(x-11)(x-17)(x+4)$. This means that $P(1)=Q(1)+7=(-4)(-10)(-16)(5)+7=-3200+7=-3193$.
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-team-solutions.jsonl",
"problem_match": "\n3. [6]",
"solution_match": "\nAnswer: "
}
|
699e4b69-ae80-5d83-9329-f2d59c1ab479
| 608,941
|
Determine the number of quadratic polynomials $P(x)=p_{1} x^{2}+p_{2} x-p_{3}$, where $p_{1}, p_{2}, p_{3}$ are not necessarily distinct (positive) prime numbers less than 50 , whose roots are distinct rational numbers.
|
31 The existence of distinct rational roots means that the given quadratic splits into linear factors. Then, since $p_{1}, p_{3}$ are both prime, we get that the following are the only possible factorizations:
- $\left(p_{1} x-p_{3}\right)(x+1) \Rightarrow p_{2}=p_{1}-p_{3}$
- $\left(p_{1} x+p_{3}\right)(x-1) \Rightarrow p_{2}=-p_{1}+p_{3}$
- $\left(p_{1} x-1\right)\left(x+p_{3}\right) \Rightarrow p_{2}=p_{1} p_{3}-1$
- $\left(p_{1} x+1\right)\left(x-p_{3}\right) \Rightarrow p_{2}=-p_{1} p_{3}+1$
In the first case, observe that since $p_{2}+p_{3}=p_{1}$, we have $p_{1}>2$, so $p_{1}$ is odd and exactly one of $p_{2}, p_{3}$ is equal to 2 . Thus, we get a solutions for every pair of twin primes below 50 , which we enumerate to be $(3,5),(5,7),(11,13),(17,19),(29,31),(41,43)$, giving 12 solutions in total. Similarly, the second case gives $p_{1}+p_{2}=p_{3}$, for another 12 solutions.
In the third case, if $p_{1}, p_{3}$ are both odd, then $p_{2}$ is even and thus equal to 2 . However, this gives $p_{1} p_{3}=3$, which is impossible. Therefore, at least one of $p_{1}, p_{3}$ is equal to 2 . If $p_{1}=2$, we get $p_{2}=2 p_{3}-1$, which we find has 4 solutions: $\left(p_{2}, p_{3}\right)=(3,2),(5,3),(13,7),(37,19)$. Similarly, there are four solutions with $p_{3}=2$. However, we count the solution $\left(p_{1}, p_{2}, p_{3}\right)=(2,3,2)$ twice, so we have a total of 7 solutions in this case. Finally, in the last case
$$
p_{2}=-p_{1} p_{3}+1<-(2)(2)+1<0
$$
so there are no solutions. Hence, we have a total of $12+12+7=31$ solutions.
|
31
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Determine the number of quadratic polynomials $P(x)=p_{1} x^{2}+p_{2} x-p_{3}$, where $p_{1}, p_{2}, p_{3}$ are not necessarily distinct (positive) prime numbers less than 50 , whose roots are distinct rational numbers.
|
31 The existence of distinct rational roots means that the given quadratic splits into linear factors. Then, since $p_{1}, p_{3}$ are both prime, we get that the following are the only possible factorizations:
- $\left(p_{1} x-p_{3}\right)(x+1) \Rightarrow p_{2}=p_{1}-p_{3}$
- $\left(p_{1} x+p_{3}\right)(x-1) \Rightarrow p_{2}=-p_{1}+p_{3}$
- $\left(p_{1} x-1\right)\left(x+p_{3}\right) \Rightarrow p_{2}=p_{1} p_{3}-1$
- $\left(p_{1} x+1\right)\left(x-p_{3}\right) \Rightarrow p_{2}=-p_{1} p_{3}+1$
In the first case, observe that since $p_{2}+p_{3}=p_{1}$, we have $p_{1}>2$, so $p_{1}$ is odd and exactly one of $p_{2}, p_{3}$ is equal to 2 . Thus, we get a solutions for every pair of twin primes below 50 , which we enumerate to be $(3,5),(5,7),(11,13),(17,19),(29,31),(41,43)$, giving 12 solutions in total. Similarly, the second case gives $p_{1}+p_{2}=p_{3}$, for another 12 solutions.
In the third case, if $p_{1}, p_{3}$ are both odd, then $p_{2}$ is even and thus equal to 2 . However, this gives $p_{1} p_{3}=3$, which is impossible. Therefore, at least one of $p_{1}, p_{3}$ is equal to 2 . If $p_{1}=2$, we get $p_{2}=2 p_{3}-1$, which we find has 4 solutions: $\left(p_{2}, p_{3}\right)=(3,2),(5,3),(13,7),(37,19)$. Similarly, there are four solutions with $p_{3}=2$. However, we count the solution $\left(p_{1}, p_{2}, p_{3}\right)=(2,3,2)$ twice, so we have a total of 7 solutions in this case. Finally, in the last case
$$
p_{2}=-p_{1} p_{3}+1<-(2)(2)+1<0
$$
so there are no solutions. Hence, we have a total of $12+12+7=31$ solutions.
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-team-solutions.jsonl",
"problem_match": "\n4. [7]",
"solution_match": "\nAnswer: "
}
|
96d32e3b-7e15-5f39-b703-96b3ccf6153a
| 608,942
|
Sixteen wooden Cs are placed in a 4-by-4 grid, all with the same orientation, and each is to be colored either red or blue. A quadrant operation on the grid consists of choosing one of the four two-by-two subgrids of Cs found at the corners of the grid and moving each C in the subgrid to the adjacent square in the subgrid that is 90 degrees away in the clockwise direction, without changing the orientation of the C. Given that two colorings are the considered same if and only if one can be obtained from the other by a series of quadrant operations, determine the number of distinct colorings of the Cs.
| C | C | C | C |
| :---: | :---: | :---: | :---: |
| C | C | C | C |
| C | C | C | C |
| C | C | C | C |
|
1296 For each quadrant, we have three distinct cases based on the number of Cs in each color:
- Case 1: all four the same color: 2 configurations (all red or all blue)
- Case 2: 3 of one color, 1 of the other: 2 configurations (three red or three blue)
- Case 3: 2 of each color: 2 configurations (red squares adjacent or opposite)
Thus, since there are 4 quadrants, there are a total of $(2+2+2)^{4}=1296$ possible grids.
|
1296
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Sixteen wooden Cs are placed in a 4-by-4 grid, all with the same orientation, and each is to be colored either red or blue. A quadrant operation on the grid consists of choosing one of the four two-by-two subgrids of Cs found at the corners of the grid and moving each C in the subgrid to the adjacent square in the subgrid that is 90 degrees away in the clockwise direction, without changing the orientation of the C. Given that two colorings are the considered same if and only if one can be obtained from the other by a series of quadrant operations, determine the number of distinct colorings of the Cs.
| C | C | C | C |
| :---: | :---: | :---: | :---: |
| C | C | C | C |
| C | C | C | C |
| C | C | C | C |
|
1296 For each quadrant, we have three distinct cases based on the number of Cs in each color:
- Case 1: all four the same color: 2 configurations (all red or all blue)
- Case 2: 3 of one color, 1 of the other: 2 configurations (three red or three blue)
- Case 3: 2 of each color: 2 configurations (red squares adjacent or opposite)
Thus, since there are 4 quadrants, there are a total of $(2+2+2)^{4}=1296$ possible grids.
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-team-solutions.jsonl",
"problem_match": "\n5. [3]",
"solution_match": "\nAnswer: "
}
|
9c0d6890-d812-5b48-a2b4-7383788b173a
| 608,943
|
Ten Cs are written in a row. Some Cs are upper-case and some are lower-case, and each is written in one of two colors, green and yellow. It is given that there is at least one lower-case C, at least one green C , and at least one C that is both upper-case and yellow. Furthermore, no lower-case C can be followed by an upper-case C , and no yellow C can be followed by a green C . In how many ways can the Cs be written?
|
36 By the conditions of the problem, we must pick some point in the line where the green Cs transition to yellow, and some point where the upper-case Cs transition to lower-case. We see that the first transition must occur before the second, and that they cannot occur on the same C. Hence, the answer is $\binom{9}{2}=36$.
|
36
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Ten Cs are written in a row. Some Cs are upper-case and some are lower-case, and each is written in one of two colors, green and yellow. It is given that there is at least one lower-case C, at least one green C , and at least one C that is both upper-case and yellow. Furthermore, no lower-case C can be followed by an upper-case C , and no yellow C can be followed by a green C . In how many ways can the Cs be written?
|
36 By the conditions of the problem, we must pick some point in the line where the green Cs transition to yellow, and some point where the upper-case Cs transition to lower-case. We see that the first transition must occur before the second, and that they cannot occur on the same C. Hence, the answer is $\binom{9}{2}=36$.
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-team-solutions.jsonl",
"problem_match": "\n6. [5]",
"solution_match": "\nAnswer: "
}
|
b421a68f-4a46-585f-b40b-ca808d1f6658
| 608,944
|
Julia is learning how to write the letter C. She has 6 differently-colored crayons, and wants to write Cc Cc Cc Cc Cc . In how many ways can she write the ten Cs , in such a way that each upper case C is a different color, each lower case C is a different color, and in each pair the upper case C and lower case C are different colors?
|
222480 Suppose Julia writes Cc a sixth time, coloring the upper-case C with the unique color different from that of the first five upper-case Cs, and doing the same with the lower-case C (note: we allow the sixth upper-case C and lower-case c to be the same color). Note that because the colors on the last Cc are forced, and any forced coloring of them is admissible, our problem is equivalent to coloring these six pairs.
There are 6! ways for Julia to color the upper-case Cs. We have two cases for coloring the lower-case Cs:
- Case 1: the last pair of Cs use two different colors. In this case, all six lower-case Cs have a different color to their associated upper-case C, and in addition the six lower-case Cs all use each color exactly once. In other words, we have a derangement* of the six colors, based on the colors of the upper-case Cs. We calculate $D_{6}=265$ ways to color the lower-case Cs here.
- Case 2: the last pair of Cs have both Cs the same color. Then, the color of the last lower-case C is forced, and with the other five Cs we, in a similar way to before, have a derangement of the remaining five colors based on the colors of the first five lower-case Cs, so we have $D_{5}=44$ ways to finish the coloring.
Our answer is thus $720(265+44)=222480$.
*A derangement is a permutation $\pi$ of the set $\{1,2, \ldots, n\}$ such that $\pi(k) \neq k$ for all $k$, i.e. there are no fixed points of the permutation. To calculate $D_{n}$, the number of derangements of an $n$-element set, we can use an inclusion-exclusion argument. There are $n$ ! ways to permute the elements of the set. Now, we subtract the number of permutations with at least one fixed point, which is $\binom{n}{1}(n-1)!=\frac{n!}{1!}$, since we choose a fixed point, then permute the other $n-1$ elements. Correcting for overcounting, we add back the number of permutations with at least two fixed points, which is $\binom{n}{2}(n-2)!=\frac{n!}{2!}$. Continuing in this fashion by use of the principle of inclusion-exclusion, we get
$$
D_{n}=n!\left(\frac{1}{0!}-\frac{1}{1!}+\frac{1}{2!}+\cdots+\frac{(-1)^{n}}{n!}\right)
$$
|
222480
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Julia is learning how to write the letter C. She has 6 differently-colored crayons, and wants to write Cc Cc Cc Cc Cc . In how many ways can she write the ten Cs , in such a way that each upper case C is a different color, each lower case C is a different color, and in each pair the upper case C and lower case C are different colors?
|
222480 Suppose Julia writes Cc a sixth time, coloring the upper-case C with the unique color different from that of the first five upper-case Cs, and doing the same with the lower-case C (note: we allow the sixth upper-case C and lower-case c to be the same color). Note that because the colors on the last Cc are forced, and any forced coloring of them is admissible, our problem is equivalent to coloring these six pairs.
There are 6! ways for Julia to color the upper-case Cs. We have two cases for coloring the lower-case Cs:
- Case 1: the last pair of Cs use two different colors. In this case, all six lower-case Cs have a different color to their associated upper-case C, and in addition the six lower-case Cs all use each color exactly once. In other words, we have a derangement* of the six colors, based on the colors of the upper-case Cs. We calculate $D_{6}=265$ ways to color the lower-case Cs here.
- Case 2: the last pair of Cs have both Cs the same color. Then, the color of the last lower-case C is forced, and with the other five Cs we, in a similar way to before, have a derangement of the remaining five colors based on the colors of the first five lower-case Cs, so we have $D_{5}=44$ ways to finish the coloring.
Our answer is thus $720(265+44)=222480$.
*A derangement is a permutation $\pi$ of the set $\{1,2, \ldots, n\}$ such that $\pi(k) \neq k$ for all $k$, i.e. there are no fixed points of the permutation. To calculate $D_{n}$, the number of derangements of an $n$-element set, we can use an inclusion-exclusion argument. There are $n$ ! ways to permute the elements of the set. Now, we subtract the number of permutations with at least one fixed point, which is $\binom{n}{1}(n-1)!=\frac{n!}{1!}$, since we choose a fixed point, then permute the other $n-1$ elements. Correcting for overcounting, we add back the number of permutations with at least two fixed points, which is $\binom{n}{2}(n-2)!=\frac{n!}{2!}$. Continuing in this fashion by use of the principle of inclusion-exclusion, we get
$$
D_{n}=n!\left(\frac{1}{0!}-\frac{1}{1!}+\frac{1}{2!}+\cdots+\frac{(-1)^{n}}{n!}\right)
$$
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-team-solutions.jsonl",
"problem_match": "\n7. [7]",
"solution_match": "\nAnswer: "
}
|
91dc32fd-7dab-5c9b-9329-4cb8f6423b82
| 608,945
|
Let $A B C$ be a triangle with $A B=9, B C=10$, and $C A=17$. Let $B^{\prime}$ be the reflection of the point $B$ over the line $C A$. Let $G$ be the centroid of triangle $A B C$, and let $G^{\prime}$ be the centroid of triangle $A B^{\prime} C$. Determine the length of segment $G G^{\prime}$.
|
$\frac{48}{17}$

Let $M$ be the midpoint of $A C$. For any triangle, we know that the centroid is located $2 / 3$ of the way from the vertex, so we have $M G / M B=M G^{\prime} / M B^{\prime}=1 / 3$, and it follows that $M G G^{\prime} \sim M B B^{\prime}$. Thus, $G G^{\prime}=B B^{\prime} / 3$. However, note that $B B^{\prime}$ is twice the altitude to $A C$ in triangle $A B C$. To finish, we calculate the area of $A B C$ in two different ways. By Heron's Formula, we have
$$
[A B C]=\sqrt{18(18-9)(18-10)(18-17)}=36
$$
and we also have
$$
[A B C]=\frac{1}{4} B B^{\prime} \cdot A C=\frac{17}{4}\left(B B^{\prime}\right)
$$
from which it follows that $G G^{\prime}=B B^{\prime} / 3=48 / 17$.
|
\frac{48}{17}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $A B C$ be a triangle with $A B=9, B C=10$, and $C A=17$. Let $B^{\prime}$ be the reflection of the point $B$ over the line $C A$. Let $G$ be the centroid of triangle $A B C$, and let $G^{\prime}$ be the centroid of triangle $A B^{\prime} C$. Determine the length of segment $G G^{\prime}$.
|
$\frac{48}{17}$

Let $M$ be the midpoint of $A C$. For any triangle, we know that the centroid is located $2 / 3$ of the way from the vertex, so we have $M G / M B=M G^{\prime} / M B^{\prime}=1 / 3$, and it follows that $M G G^{\prime} \sim M B B^{\prime}$. Thus, $G G^{\prime}=B B^{\prime} / 3$. However, note that $B B^{\prime}$ is twice the altitude to $A C$ in triangle $A B C$. To finish, we calculate the area of $A B C$ in two different ways. By Heron's Formula, we have
$$
[A B C]=\sqrt{18(18-9)(18-10)(18-17)}=36
$$
and we also have
$$
[A B C]=\frac{1}{4} B B^{\prime} \cdot A C=\frac{17}{4}\left(B B^{\prime}\right)
$$
from which it follows that $G G^{\prime}=B B^{\prime} / 3=48 / 17$.
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-team-solutions.jsonl",
"problem_match": "\n9. [4]",
"solution_match": "\nAnswer: "
}
|
4974fd1d-8cc8-5f29-894c-185148d43c56
| 608,947
|
Let $G_{1} G_{2} G_{3}$ be a triangle with $G_{1} G_{2}=7, G_{2} G_{3}=13$, and $G_{3} G_{1}=15$. Let $G_{4}$ be a point outside triangle $G_{1} G_{2} G_{3}$ so that ray $\overrightarrow{G_{1} G_{4}}$ cuts through the interior of the triangle, $G_{3} G_{4}=G_{4} G_{2}$, and $\angle G_{3} G_{1} G_{4}=30^{\circ}$. Let $G_{3} G_{4}$ and $G_{1} G_{2}$ meet at $G_{5}$. Determine the length of segment $G_{2} G_{5}$.
|
$\frac{169}{23}$

We first show that quadrilateral $G_{1} G_{2} G_{4} G_{3}$ is cyclic. Note that by the law of cosines,
$$
\cos \angle G_{2} G_{1} G_{3}=\frac{7^{2}+15^{2}-13^{2}}{2 \cdot 7 \cdot 15}=\frac{1}{2}
$$
so $\angle G_{2} G_{1} G_{3}=60^{\circ}$. However, we know that $\angle G_{3} G_{1} G_{4}=30^{\circ}$, so $G_{1} G_{4}$ is an angle bisector. Now, let $G_{1} G_{4}$ intersect the circumcircle of triangle $G_{1} G_{2} G_{3}$ at $X$. Then, the minor arcs $\widehat{G_{2} X}$ and $\widehat{G_{3} X}$ are subtended by the equal angles $\angle G_{2} G_{1} X$ and $\angle G_{3} G_{1} X$, implying that $G_{2} X=G_{3} X$, i.e. $X$ is on the perpendicular bisector of $G_{2} G_{3}, l$. Similarly, since $G_{4} G_{2}=G_{4} G_{3}, G_{4}$ lies on $l$. However, since $l$ and $G_{1} G_{4}$ are distinct (in particular, $G_{1}$ lies on $G_{1} G_{4}$ but not $l$ ), we in fact have $X=G_{4}$, so $G_{1} G_{2} G_{4} G_{3}$ is cyclic.
We now have $G_{5} G_{2} G_{4} \sim G_{5} G_{3} G_{1}$ since $G_{1} G_{2} G_{4} G_{3}$ is cyclic. Now, we have $\angle G_{4} G_{3} G_{2}=\angle G_{4} G_{1} G_{2}=$ $30^{\circ}$, and we may now compute $G_{2} G_{4}=G_{4} G_{3}=13 / \sqrt{3}$. Let $G_{5} G_{2}=x$ and $G_{5} G_{4}=y$. Now, from $G_{5} G_{4} G_{2} \sim G_{5} G_{1} G_{3}$, we have:
$$
\frac{x}{y+13 / \sqrt{3}}=\frac{13 / \sqrt{3}}{15}=\frac{y}{x+7}
$$
Equating the first and second expressions and cross-multiplying, we get
$$
y+\frac{13 \sqrt{3}}{3}=\frac{15 \sqrt{3} x}{13} .
$$
Now, equating the first and third expressions and and substituting gives
$$
\left(\frac{15 \sqrt{3} x}{13}-\frac{13 \sqrt{3}}{3}\right)\left(\frac{15 \sqrt{3} x}{13}\right)=x(x+7)
$$
Upon dividing both sides by $x$, we obtain a linear equation from which we can solve to get $x=169 / 23$.
|
\frac{169}{23}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $G_{1} G_{2} G_{3}$ be a triangle with $G_{1} G_{2}=7, G_{2} G_{3}=13$, and $G_{3} G_{1}=15$. Let $G_{4}$ be a point outside triangle $G_{1} G_{2} G_{3}$ so that ray $\overrightarrow{G_{1} G_{4}}$ cuts through the interior of the triangle, $G_{3} G_{4}=G_{4} G_{2}$, and $\angle G_{3} G_{1} G_{4}=30^{\circ}$. Let $G_{3} G_{4}$ and $G_{1} G_{2}$ meet at $G_{5}$. Determine the length of segment $G_{2} G_{5}$.
|
$\frac{169}{23}$

We first show that quadrilateral $G_{1} G_{2} G_{4} G_{3}$ is cyclic. Note that by the law of cosines,
$$
\cos \angle G_{2} G_{1} G_{3}=\frac{7^{2}+15^{2}-13^{2}}{2 \cdot 7 \cdot 15}=\frac{1}{2}
$$
so $\angle G_{2} G_{1} G_{3}=60^{\circ}$. However, we know that $\angle G_{3} G_{1} G_{4}=30^{\circ}$, so $G_{1} G_{4}$ is an angle bisector. Now, let $G_{1} G_{4}$ intersect the circumcircle of triangle $G_{1} G_{2} G_{3}$ at $X$. Then, the minor arcs $\widehat{G_{2} X}$ and $\widehat{G_{3} X}$ are subtended by the equal angles $\angle G_{2} G_{1} X$ and $\angle G_{3} G_{1} X$, implying that $G_{2} X=G_{3} X$, i.e. $X$ is on the perpendicular bisector of $G_{2} G_{3}, l$. Similarly, since $G_{4} G_{2}=G_{4} G_{3}, G_{4}$ lies on $l$. However, since $l$ and $G_{1} G_{4}$ are distinct (in particular, $G_{1}$ lies on $G_{1} G_{4}$ but not $l$ ), we in fact have $X=G_{4}$, so $G_{1} G_{2} G_{4} G_{3}$ is cyclic.
We now have $G_{5} G_{2} G_{4} \sim G_{5} G_{3} G_{1}$ since $G_{1} G_{2} G_{4} G_{3}$ is cyclic. Now, we have $\angle G_{4} G_{3} G_{2}=\angle G_{4} G_{1} G_{2}=$ $30^{\circ}$, and we may now compute $G_{2} G_{4}=G_{4} G_{3}=13 / \sqrt{3}$. Let $G_{5} G_{2}=x$ and $G_{5} G_{4}=y$. Now, from $G_{5} G_{4} G_{2} \sim G_{5} G_{1} G_{3}$, we have:
$$
\frac{x}{y+13 / \sqrt{3}}=\frac{13 / \sqrt{3}}{15}=\frac{y}{x+7}
$$
Equating the first and second expressions and cross-multiplying, we get
$$
y+\frac{13 \sqrt{3}}{3}=\frac{15 \sqrt{3} x}{13} .
$$
Now, equating the first and third expressions and and substituting gives
$$
\left(\frac{15 \sqrt{3} x}{13}-\frac{13 \sqrt{3}}{3}\right)\left(\frac{15 \sqrt{3} x}{13}\right)=x(x+7)
$$
Upon dividing both sides by $x$, we obtain a linear equation from which we can solve to get $x=169 / 23$.
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-team-solutions.jsonl",
"problem_match": "\n10. [8]",
"solution_match": "\nAnswer: "
}
|
1e3df904-cd80-5b80-a644-ce571b416d91
| 608,948
|
Five of James' friends are sitting around a circular table to play a game of Fish. James chooses a place between two of his friends to pull up a chair and sit. Then, the six friends divide themselves into two disjoint teams, with each team consisting of three consecutive players at the table. If the order in which the three members of a team sit does not matter, how many possible (unordered) pairs of teams are possible?
|
5 Note that the team not containing James must consist of three consecutive players who are already seated. We have 5 choices for the player sitting furthest clockwise on the team of which James is not a part. The choice of this player uniquely determines the teams, so we have a total of 5 possible pairs.
|
5
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Five of James' friends are sitting around a circular table to play a game of Fish. James chooses a place between two of his friends to pull up a chair and sit. Then, the six friends divide themselves into two disjoint teams, with each team consisting of three consecutive players at the table. If the order in which the three members of a team sit does not matter, how many possible (unordered) pairs of teams are possible?
|
5 Note that the team not containing James must consist of three consecutive players who are already seated. We have 5 choices for the player sitting furthest clockwise on the team of which James is not a part. The choice of this player uniquely determines the teams, so we have a total of 5 possible pairs.
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-thm-solutions.jsonl",
"problem_match": "\n1. [3]",
"solution_match": "\nAnswer: "
}
|
960449bc-4059-51c2-a51e-dcf6812f3c5b
| 608,949
|
In a game of Fish, R2 and R3 are each holding a positive number of cards so that they are collectively holding a total of 24 cards. Each player gives an integer estimate for the number of cards he is holding, such that each estimate is an integer between $80 \%$ of his actual number of cards and $120 \%$ of his actual number of cards, inclusive. Find the smallest possible sum of the two estimates.
|
20 To minimize the sum, we want each player to say an estimate as small as possible-i.e. an estimate as close to $80 \%$ of his actual number of cards as possible. We claim that the minimum possible sum is 20 .
First, this is achievable when R2 has 10 cards and estimates 8, and when R3 has 14 cards and estimates 12.
Then, suppose that R2 has $x$ cards and R3 has $24-x$. Then, the sum of their estimates is
$$
\left\lceil\frac{4}{5}(x)\right\rceil+\left\lceil\frac{4}{5}(24-x)\right\rceil \geq\left\lceil\frac{4}{5}(x)+\frac{4}{5}(24-x)\right\rceil \geq\left\lceil\frac{4}{5}(24)\right\rceil \geq 20
$$
Note: We use the fact that for all real numbers $a, b,\lceil a\rceil+\lceil b\rceil \geq\lceil a+b\rceil$.
|
20
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
In a game of Fish, R2 and R3 are each holding a positive number of cards so that they are collectively holding a total of 24 cards. Each player gives an integer estimate for the number of cards he is holding, such that each estimate is an integer between $80 \%$ of his actual number of cards and $120 \%$ of his actual number of cards, inclusive. Find the smallest possible sum of the two estimates.
|
20 To minimize the sum, we want each player to say an estimate as small as possible-i.e. an estimate as close to $80 \%$ of his actual number of cards as possible. We claim that the minimum possible sum is 20 .
First, this is achievable when R2 has 10 cards and estimates 8, and when R3 has 14 cards and estimates 12.
Then, suppose that R2 has $x$ cards and R3 has $24-x$. Then, the sum of their estimates is
$$
\left\lceil\frac{4}{5}(x)\right\rceil+\left\lceil\frac{4}{5}(24-x)\right\rceil \geq\left\lceil\frac{4}{5}(x)+\frac{4}{5}(24-x)\right\rceil \geq\left\lceil\frac{4}{5}(24)\right\rceil \geq 20
$$
Note: We use the fact that for all real numbers $a, b,\lceil a\rceil+\lceil b\rceil \geq\lceil a+b\rceil$.
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-thm-solutions.jsonl",
"problem_match": "\n2. [3]",
"solution_match": "\nAnswer: "
}
|
0ef6f461-a363-523b-baa3-d0517ff4f032
| 608,950
|
Toward the end of a game of Fish, the 2 through 7 of spades, inclusive, remain in the hands of three distinguishable players: $\mathrm{DBR}, \mathrm{RB}$, and DB , such that each player has at least one card. If it is known that DBR either has more than one card or has an even-numbered spade, or both, in how many ways can the players' hands be distributed?
|
450 First, we count the number of distributions where each player has at least 1 card. The possible distributions are:
- Case 1: $4 / 1 / 1$ : There are 3 choices for who gets 4 cards, 6 choices for the card that one of the single-card players holds, and 5 choices for the card the other single-card player holds, or $3 \times 6 \times 5=90$ choices.
- Case 2: $3 / 2 / 1$ : There are 6 choices for the single card, $\binom{5}{2}=10$ choices for the pair of cards, and $3!=6$ choices for which player gets how many cards, for a total of $6 \times 10 \times 6=360$ choices.
- Case 3: $2 / 2 / 2$ : There are $\binom{6}{2}=15$ choices for the cards DBR gets, $\binom{4}{2}=6$ for the cards that $R B$ gets, and $D B$ gets the remaining two cards. This gives a total of $15 \times 6=90$ choices.
Thus, we have a total of $90+360+90=540$ ways for the cards to be distributed so that each person holds at least one.
Next, we look at the number of ways that the condition cannot be satisfied if each player has at least one card. Then, DBR must have no more than one card, and cannot have an even spade. We only care about cases where he has a non-zero number of cards, so he must have exactly 1 odd spade. Then, we see that there are $2^{5}-2=30$ ways to distribute the other 5 cards among RB and DB so that neither has 0 cards. Since there are 3 odd spades, this gives $3 \times 30$ bad cases, so we have $540-90=450$ ones where all the problem conditions hold.
|
450
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Toward the end of a game of Fish, the 2 through 7 of spades, inclusive, remain in the hands of three distinguishable players: $\mathrm{DBR}, \mathrm{RB}$, and DB , such that each player has at least one card. If it is known that DBR either has more than one card or has an even-numbered spade, or both, in how many ways can the players' hands be distributed?
|
450 First, we count the number of distributions where each player has at least 1 card. The possible distributions are:
- Case 1: $4 / 1 / 1$ : There are 3 choices for who gets 4 cards, 6 choices for the card that one of the single-card players holds, and 5 choices for the card the other single-card player holds, or $3 \times 6 \times 5=90$ choices.
- Case 2: $3 / 2 / 1$ : There are 6 choices for the single card, $\binom{5}{2}=10$ choices for the pair of cards, and $3!=6$ choices for which player gets how many cards, for a total of $6 \times 10 \times 6=360$ choices.
- Case 3: $2 / 2 / 2$ : There are $\binom{6}{2}=15$ choices for the cards DBR gets, $\binom{4}{2}=6$ for the cards that $R B$ gets, and $D B$ gets the remaining two cards. This gives a total of $15 \times 6=90$ choices.
Thus, we have a total of $90+360+90=540$ ways for the cards to be distributed so that each person holds at least one.
Next, we look at the number of ways that the condition cannot be satisfied if each player has at least one card. Then, DBR must have no more than one card, and cannot have an even spade. We only care about cases where he has a non-zero number of cards, so he must have exactly 1 odd spade. Then, we see that there are $2^{5}-2=30$ ways to distribute the other 5 cards among RB and DB so that neither has 0 cards. Since there are 3 odd spades, this gives $3 \times 30$ bad cases, so we have $540-90=450$ ones where all the problem conditions hold.
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-thm-solutions.jsonl",
"problem_match": "\n4. [6]",
"solution_match": "\nAnswer: "
}
|
6eefbc42-fc7f-5d49-8f38-b4d191f022df
| 608,952
|
For any finite sequence of positive integers $\pi$, let $S(\pi)$ be the number of strictly increasing subsequences in $\pi$ with length 2 or more. For example, in the sequence $\pi=\{3,1,2,4\}$, there are five increasing sub-sequences: $\{3,4\},\{1,2\},\{1,4\},\{2,4\}$, and $\{1,2,4\}$, so $S(\pi)=5$. In an eight-player game of Fish, Joy is dealt six cards of distinct values, which she puts in a random order $\pi$ from left to right in her hand. Determine
$$
\sum_{\pi} S(\pi)
$$
where the sum is taken over all possible orders $\pi$ of the card values.
|
8287 For each subset of Joy's set of cards, we compute the number of orders of cards in which the cards in the subset are arranged in increasing order. When we sum over all subsets of Joy's cards, we will obtain the desired sum.
Consider any subset of $k$ cards. The probability that they are arranged in increasing order is precisely $1 / k$ ! (since we can form a $k!$-to- 1 correspondence between all possible orders and orders in which the cards in our subset are in increasing order), and there are $6!=720$ total arrangements so exactly $720 / k$ ! of them give an increasing subsequence in the specified cards. Now for any for $k=2,3,4,5,6$, we have $\binom{6}{k}$ subsets of $k$ cards, so we sum to get
$$
\sum_{\pi} S(\pi)=\sum_{k=2}^{6}\binom{6}{k} \cdot \frac{6!}{k!}=8287
$$
|
8287
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
For any finite sequence of positive integers $\pi$, let $S(\pi)$ be the number of strictly increasing subsequences in $\pi$ with length 2 or more. For example, in the sequence $\pi=\{3,1,2,4\}$, there are five increasing sub-sequences: $\{3,4\},\{1,2\},\{1,4\},\{2,4\}$, and $\{1,2,4\}$, so $S(\pi)=5$. In an eight-player game of Fish, Joy is dealt six cards of distinct values, which she puts in a random order $\pi$ from left to right in her hand. Determine
$$
\sum_{\pi} S(\pi)
$$
where the sum is taken over all possible orders $\pi$ of the card values.
|
8287 For each subset of Joy's set of cards, we compute the number of orders of cards in which the cards in the subset are arranged in increasing order. When we sum over all subsets of Joy's cards, we will obtain the desired sum.
Consider any subset of $k$ cards. The probability that they are arranged in increasing order is precisely $1 / k$ ! (since we can form a $k!$-to- 1 correspondence between all possible orders and orders in which the cards in our subset are in increasing order), and there are $6!=720$ total arrangements so exactly $720 / k$ ! of them give an increasing subsequence in the specified cards. Now for any for $k=2,3,4,5,6$, we have $\binom{6}{k}$ subsets of $k$ cards, so we sum to get
$$
\sum_{\pi} S(\pi)=\sum_{k=2}^{6}\binom{6}{k} \cdot \frac{6!}{k!}=8287
$$
|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-thm-solutions.jsonl",
"problem_match": "\n5. [8]",
"solution_match": "\nAnswer: "
}
|
0c1956b8-c359-55e6-b73b-7cd418fb31b5
| 608,953
|
Let $A B C$ be an equilateral triangle with $A B=3$. Circle $\omega$ with diameter 1 is drawn inside the triangle such that it is tangent to sides $A B$ and $A C$. Let $P$ be a point on $\omega$ and $Q$ be a point on segment $B C$. Find the minimum possible length of the segment $P Q$.
|
$\frac{3 \sqrt{3}-3}{2}$ Let $P, Q$, be the points which minimize the distance. We see that we want both to lie on the altitude from $A$ to $B C$. Hence, $Q$ is the foot of the altitude from $A$ to $B C$ and $A Q=\frac{3 \sqrt{3}}{2}$. Let $O$, which must also lie on this line, be the center of $\omega$, and let $D$ be the point of tangency between $\omega$ and $A C$. Then, since $O D=\frac{1}{2}$, we have $A O=2 O D=1$ because $\angle O A D=30^{\circ}$, and $O P=\frac{1}{2}$. Consequently,
$$
P Q=A Q-A O-O P=\frac{3 \sqrt{3}-3}{2}
$$

|
\frac{3 \sqrt{3}-3}{2}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $A B C$ be an equilateral triangle with $A B=3$. Circle $\omega$ with diameter 1 is drawn inside the triangle such that it is tangent to sides $A B$ and $A C$. Let $P$ be a point on $\omega$ and $Q$ be a point on segment $B C$. Find the minimum possible length of the segment $P Q$.
|
$\frac{3 \sqrt{3}-3}{2}$ Let $P, Q$, be the points which minimize the distance. We see that we want both to lie on the altitude from $A$ to $B C$. Hence, $Q$ is the foot of the altitude from $A$ to $B C$ and $A Q=\frac{3 \sqrt{3}}{2}$. Let $O$, which must also lie on this line, be the center of $\omega$, and let $D$ be the point of tangency between $\omega$ and $A C$. Then, since $O D=\frac{1}{2}$, we have $A O=2 O D=1$ because $\angle O A D=30^{\circ}$, and $O P=\frac{1}{2}$. Consequently,
$$
P Q=A Q-A O-O P=\frac{3 \sqrt{3}-3}{2}
$$

|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-thm-solutions.jsonl",
"problem_match": "\n6. [3]",
"solution_match": "\nAnswer: "
}
|
263cbd4c-5328-5542-9044-889fd7d4ffae
| 608,954
|
Points $D, E, F$ lie on circle $O$ such that the line tangent to $O$ at $D$ intersects ray $\overrightarrow{E F}$ at $P$. Given that $P D=4, P F=2$, and $\angle F P D=60^{\circ}$, determine the area of circle $O$.
|
$12 \pi \quad$ By the power of a point on $P$, we get that
$$
16=P D^{2}=(P F)(P E)=2(P E) \Rightarrow P E=8
$$
However, since $P E=2 P D$ and $\angle F P D=60^{\circ}$, we notice that $P D E$ is a $30-60-90$ triangle, so $D E=4 \sqrt{3}$ and we have $E D \perp D P$. It follows that $D E$ is a diameter of the circle, since tangents the tangent at $D$ must be perpendicular to the radius containing $D$. Hence, the area of the circle is $\left(\frac{1}{2} D E\right)^{2} \pi=12 \pi$.

|
12 \pi
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Points $D, E, F$ lie on circle $O$ such that the line tangent to $O$ at $D$ intersects ray $\overrightarrow{E F}$ at $P$. Given that $P D=4, P F=2$, and $\angle F P D=60^{\circ}$, determine the area of circle $O$.
|
$12 \pi \quad$ By the power of a point on $P$, we get that
$$
16=P D^{2}=(P F)(P E)=2(P E) \Rightarrow P E=8
$$
However, since $P E=2 P D$ and $\angle F P D=60^{\circ}$, we notice that $P D E$ is a $30-60-90$ triangle, so $D E=4 \sqrt{3}$ and we have $E D \perp D P$. It follows that $D E$ is a diameter of the circle, since tangents the tangent at $D$ must be perpendicular to the radius containing $D$. Hence, the area of the circle is $\left(\frac{1}{2} D E\right)^{2} \pi=12 \pi$.

|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-thm-solutions.jsonl",
"problem_match": "\n8. [5]",
"solution_match": "\nAnswer: "
}
|
dd501cfa-773e-5e83-b5c8-77c1a26a2732
| 608,956
|
Let $A B C$ be a triangle with $A B=13, B C=14$, and $C A=15$. Let $D$ be the foot of the altitude from $A$ to $B C$. The inscribed circles of triangles $A B D$ and $A C D$ are tangent to $A D$ at $P$ and $Q$, respectively, and are tangent to $B C$ at $X$ and $Y$, respectively. Let $P X$ and $Q Y$ meet at $Z$. Determine the area of triangle $X Y Z$.
|
$\frac{25}{4}$ First, note that $A D=12, B D=5, C D=9$.
By equal tangents, we get that $P D=D X$, so $P D X$ is isosceles. Because $D$ is a right angle, we get that $\angle P X D=45^{\circ}$. Similarly, $\angle X Y Z=45^{\circ}$, so $X Y Z$ is an isosceles right triangle with hypotenuse $X Y$. However, by tangents to the incircle, we get that $X D=\frac{1}{2}(12+5-13)=2$ and $Y D=\frac{1}{2}(12+9-15)=3$. Hence, the area of the XYZ is $\frac{1}{4}(X Y)^{2}=\frac{1}{4}(2+3)^{2}=\frac{25}{4}$.

|
\frac{25}{4}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $A B C$ be a triangle with $A B=13, B C=14$, and $C A=15$. Let $D$ be the foot of the altitude from $A$ to $B C$. The inscribed circles of triangles $A B D$ and $A C D$ are tangent to $A D$ at $P$ and $Q$, respectively, and are tangent to $B C$ at $X$ and $Y$, respectively. Let $P X$ and $Q Y$ meet at $Z$. Determine the area of triangle $X Y Z$.
|
$\frac{25}{4}$ First, note that $A D=12, B D=5, C D=9$.
By equal tangents, we get that $P D=D X$, so $P D X$ is isosceles. Because $D$ is a right angle, we get that $\angle P X D=45^{\circ}$. Similarly, $\angle X Y Z=45^{\circ}$, so $X Y Z$ is an isosceles right triangle with hypotenuse $X Y$. However, by tangents to the incircle, we get that $X D=\frac{1}{2}(12+5-13)=2$ and $Y D=\frac{1}{2}(12+9-15)=3$. Hence, the area of the XYZ is $\frac{1}{4}(X Y)^{2}=\frac{1}{4}(2+3)^{2}=\frac{25}{4}$.

|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-thm-solutions.jsonl",
"problem_match": "\n9. [6]",
"solution_match": "\nAnswer: "
}
|
e44a87d7-b4f1-516a-b75b-ba9c9110561c
| 608,957
|
Let $\Omega$ be a circle of radius 8 centered at point $O$, and let $M$ be a point on $\Omega$. Let $S$ be the set of points $P$ such that $P$ is contained within $\Omega$, or such that there exists some rectangle $A B C D$ containing $P$ whose center is on $\Omega$ with $A B=4, B C=5$, and $B C \| O M$. Find the area of $S$.
|
$164+64 \pi$ We wish to consider the union of all rectangles $A B C D$ with $A B=4, B C=5$, and $B C \| \overline{O M}$, with center $X$ on $\Omega$. Consider translating rectangle $A B C D$ along the radius $X O$ to a rectangle $A^{\prime} B^{\prime} C^{\prime} D^{\prime}$ now centered at $O$. It is now clear that that every point inside $A B C D$ is a translate of a point in $A^{\prime} B^{\prime} C^{\prime} D^{\prime}$, and furthermore, any rectangle $A B C D$ translates along the appropriate radius to the same rectangle $A^{\prime} B^{\prime} C^{\prime} D^{\prime}$.
We see that the boundary of this region can be constructed by constructing a quarter-circle at each vertex, then connecting these quarter-circles with tangents to form four rectangular regions. Now, splitting our region in to four quarter circles and five rectangles, we compute the desired area to be
$$
4 \cdot \frac{1}{4}(8)^{2} \pi+2(4 \cdot 8)+2(5 \cdot 8)+(4 \cdot 5)=164+64 \pi
$$

|
164+64 \pi
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $\Omega$ be a circle of radius 8 centered at point $O$, and let $M$ be a point on $\Omega$. Let $S$ be the set of points $P$ such that $P$ is contained within $\Omega$, or such that there exists some rectangle $A B C D$ containing $P$ whose center is on $\Omega$ with $A B=4, B C=5$, and $B C \| O M$. Find the area of $S$.
|
$164+64 \pi$ We wish to consider the union of all rectangles $A B C D$ with $A B=4, B C=5$, and $B C \| \overline{O M}$, with center $X$ on $\Omega$. Consider translating rectangle $A B C D$ along the radius $X O$ to a rectangle $A^{\prime} B^{\prime} C^{\prime} D^{\prime}$ now centered at $O$. It is now clear that that every point inside $A B C D$ is a translate of a point in $A^{\prime} B^{\prime} C^{\prime} D^{\prime}$, and furthermore, any rectangle $A B C D$ translates along the appropriate radius to the same rectangle $A^{\prime} B^{\prime} C^{\prime} D^{\prime}$.
We see that the boundary of this region can be constructed by constructing a quarter-circle at each vertex, then connecting these quarter-circles with tangents to form four rectangular regions. Now, splitting our region in to four quarter circles and five rectangles, we compute the desired area to be
$$
4 \cdot \frac{1}{4}(8)^{2} \pi+2(4 \cdot 8)+2(5 \cdot 8)+(4 \cdot 5)=164+64 \pi
$$

|
{
"resource_path": "HarvardMIT/segmented/en-151-2011-nov-thm-solutions.jsonl",
"problem_match": "\n10. [7]",
"solution_match": "\nAnswer: "
}
|
2463220f-65df-5173-8f13-5d3730b96183
| 608,958
|
Let $f$ be the function such that
$$
f(x)= \begin{cases}2 x & \text { if } x \leq \frac{1}{2} \\ 2-2 x & \text { if } x>\frac{1}{2}\end{cases}
$$
What is the total length of the graph of $\underbrace{f(f(\ldots f}_{2012 f^{\prime} s}(x) \ldots))$ from $x=0$ to $x=1$ ?
|
$\sqrt{\sqrt{4^{2012}+1}}$ When there are $n$ copies of $f$, the graph consists of $2^{n}$ segments, each of which goes $1 / 2^{n}$ units to the right, and alternately 1 unit up or down. So, the length is
$$
2^{n} \sqrt{1+\frac{1}{2^{2 n}}}=\sqrt{4^{n}+1}
$$
Taking $n=2012$, the answer is
$$
\sqrt{4^{2012}+1}
$$
|
\sqrt{4^{2012}+1}
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let $f$ be the function such that
$$
f(x)= \begin{cases}2 x & \text { if } x \leq \frac{1}{2} \\ 2-2 x & \text { if } x>\frac{1}{2}\end{cases}
$$
What is the total length of the graph of $\underbrace{f(f(\ldots f}_{2012 f^{\prime} s}(x) \ldots))$ from $x=0$ to $x=1$ ?
|
$\sqrt{\sqrt{4^{2012}+1}}$ When there are $n$ copies of $f$, the graph consists of $2^{n}$ segments, each of which goes $1 / 2^{n}$ units to the right, and alternately 1 unit up or down. So, the length is
$$
2^{n} \sqrt{1+\frac{1}{2^{2 n}}}=\sqrt{4^{n}+1}
$$
Taking $n=2012$, the answer is
$$
\sqrt{4^{2012}+1}
$$
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-alg-solutions.jsonl",
"problem_match": "\n1. ",
"solution_match": "\nAnswer: "
}
|
ac5e3ef5-2d2c-52f1-a0aa-d5eaec06c320
| 608,959
|
You are given an unlimited supply of red, blue, and yellow cards to form a hand. Each card has a point value and your score is the sum of the point values of those cards. The point values are as follows: the value of each red card is 1 , the value of each blue card is equal to twice the number of red cards, and the value of each yellow card is equal to three times the number of blue cards. What is the maximum score you can get with fifteen cards?
|
168 If there are $B$ blue cards, then each red card contributes $1+2 B$ points (one for itself and two for each blue card) and each yellow card contributes $3 B$ points. Thus, if $B>1$, it is optimal to change all red cards to yellow cards. When $B=0$, the maximum number of points is 15 . When $B=1$, the number of points is always 42 . When $B>1$, the number of points is $3 B Y$, where $Y$ is the number of yellow cards. Since $B+Y=15$, the desired maximum occurs when $B=7$ and $Y=8$, which gives 168 points.
|
168
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
You are given an unlimited supply of red, blue, and yellow cards to form a hand. Each card has a point value and your score is the sum of the point values of those cards. The point values are as follows: the value of each red card is 1 , the value of each blue card is equal to twice the number of red cards, and the value of each yellow card is equal to three times the number of blue cards. What is the maximum score you can get with fifteen cards?
|
168 If there are $B$ blue cards, then each red card contributes $1+2 B$ points (one for itself and two for each blue card) and each yellow card contributes $3 B$ points. Thus, if $B>1$, it is optimal to change all red cards to yellow cards. When $B=0$, the maximum number of points is 15 . When $B=1$, the number of points is always 42 . When $B>1$, the number of points is $3 B Y$, where $Y$ is the number of yellow cards. Since $B+Y=15$, the desired maximum occurs when $B=7$ and $Y=8$, which gives 168 points.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-alg-solutions.jsonl",
"problem_match": "\n2. ",
"solution_match": "\nAnswer: "
}
|
89e38342-179a-5266-9b60-e080511a24c7
| 608,960
|
During the weekends, Eli delivers milk in the complex plane. On Saturday, he begins at $z$ and delivers milk to houses located at $z^{3}, z^{5}, z^{7}, \ldots, z^{2013}$, in that order; on Sunday, he begins at 1 and delivers milk to houses located at $z^{2}, z^{4}, z^{6}, \ldots, z^{2012}$, in that order. Eli always walks directly (in a straight line) between two houses. If the distance he must travel from his starting point to the last house is $\sqrt{2012}$ on both days, find the real part of $z^{2}$.
|
$\frac{1005}{1006}$ Note that the distance between two points in the complex plane, $m$ and $n$, is $|m-n|$. We have that
$$
\sum_{k=1}^{1006}\left|z^{2 k+1}-z^{2 k-1}\right|=\sum_{k=1}^{1006}\left|z^{2 k}-z^{2 k-2}\right|=\sqrt{2012}
$$
However, noting that
$$
|z| \cdot \sum_{k=1}^{1006}\left|z^{2 k}-z^{2 k-2}\right|=\sum_{k=1}^{1006}\left|z^{2 k+1}-z^{2 k-1}\right|
$$
we must have $|z|=1$. Then, since Eli travels a distance of $\sqrt{2012}$ on each day, we have
$$
\begin{aligned}
\sum_{k=1}^{1006}\left|z^{2 k}-z^{2 k-2}\right|= & \left|z^{2}-1\right| \cdot \sum_{k=1}^{1006}\left|z^{2 k-2}\right|=\left|z^{2}-1\right| \cdot \sum_{k=1}^{1006}|z|^{2 k-2} \\
& =1006\left|z^{2}-1\right|=\sqrt{2012}
\end{aligned}
$$
so $\left|z^{2}-1\right|=\frac{\sqrt{2012}}{1006}$. Since $|z|=1$, we can write $z=\cos (\theta)+i \sin (\theta)$ and then $z^{2}=\cos (2 \theta)+i \sin (2 \theta)$. Hence,
$$
\left|z^{2}-1\right|=\sqrt{(\cos (2 \theta)-1)^{2}+\sin ^{2}(2 \theta)}=\sqrt{2-2 \cos (2 \theta)}=\frac{\sqrt{2012}}{1006}
$$
so $2-2 \cos (2 \theta)=\frac{2}{1006}$. The real part of $z^{2}, \cos (2 \theta)$, is thus $\frac{1005}{1006}$.
|
\frac{1005}{1006}
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
During the weekends, Eli delivers milk in the complex plane. On Saturday, he begins at $z$ and delivers milk to houses located at $z^{3}, z^{5}, z^{7}, \ldots, z^{2013}$, in that order; on Sunday, he begins at 1 and delivers milk to houses located at $z^{2}, z^{4}, z^{6}, \ldots, z^{2012}$, in that order. Eli always walks directly (in a straight line) between two houses. If the distance he must travel from his starting point to the last house is $\sqrt{2012}$ on both days, find the real part of $z^{2}$.
|
$\frac{1005}{1006}$ Note that the distance between two points in the complex plane, $m$ and $n$, is $|m-n|$. We have that
$$
\sum_{k=1}^{1006}\left|z^{2 k+1}-z^{2 k-1}\right|=\sum_{k=1}^{1006}\left|z^{2 k}-z^{2 k-2}\right|=\sqrt{2012}
$$
However, noting that
$$
|z| \cdot \sum_{k=1}^{1006}\left|z^{2 k}-z^{2 k-2}\right|=\sum_{k=1}^{1006}\left|z^{2 k+1}-z^{2 k-1}\right|
$$
we must have $|z|=1$. Then, since Eli travels a distance of $\sqrt{2012}$ on each day, we have
$$
\begin{aligned}
\sum_{k=1}^{1006}\left|z^{2 k}-z^{2 k-2}\right|= & \left|z^{2}-1\right| \cdot \sum_{k=1}^{1006}\left|z^{2 k-2}\right|=\left|z^{2}-1\right| \cdot \sum_{k=1}^{1006}|z|^{2 k-2} \\
& =1006\left|z^{2}-1\right|=\sqrt{2012}
\end{aligned}
$$
so $\left|z^{2}-1\right|=\frac{\sqrt{2012}}{1006}$. Since $|z|=1$, we can write $z=\cos (\theta)+i \sin (\theta)$ and then $z^{2}=\cos (2 \theta)+i \sin (2 \theta)$. Hence,
$$
\left|z^{2}-1\right|=\sqrt{(\cos (2 \theta)-1)^{2}+\sin ^{2}(2 \theta)}=\sqrt{2-2 \cos (2 \theta)}=\frac{\sqrt{2012}}{1006}
$$
so $2-2 \cos (2 \theta)=\frac{2}{1006}$. The real part of $z^{2}, \cos (2 \theta)$, is thus $\frac{1005}{1006}$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-alg-solutions.jsonl",
"problem_match": "\n4. ",
"solution_match": "\nAnswer: "
}
|
f31ee2fe-ffb8-5aa5-abe9-ae1ccb57b4c9
| 608,962
|
Let $a_{0}=-2, b_{0}=1$, and for $n \geq 0$, let
$$
\begin{aligned}
& a_{n+1}=a_{n}+b_{n}+\sqrt{a_{n}^{2}+b_{n}^{2}} \\
& b_{n+1}=a_{n}+b_{n}-\sqrt{a_{n}^{2}+b_{n}^{2}}
\end{aligned}
$$
Find $a_{2012}$.
|
$2^{1006} \sqrt{2^{2010}+2}-2^{2011}$ We have
$$
\begin{gathered}
a_{n+1}+b_{n+1}=2\left(a_{n}+b_{n}\right) \\
a_{n+1} b_{n+1}=\left(a_{n}+b_{n}\right)^{2}-a_{n}^{2}-b_{n}^{2}=2 a_{n} b_{n}
\end{gathered}
$$
Thus,
$$
\begin{aligned}
a_{n}+b_{n} & =-2^{n} \\
a_{n} b_{n} & =-2^{n+1}
\end{aligned}
$$
Using Viete's formula, $a_{2012}$ and $b_{2012}$ are the roots of the following quadratic, and, since the square root is positive, $a_{2012}$ is the bigger root:
$$
x^{2}+2^{2012} x-2^{2013}
$$
Thus,
$$
a_{2012}=2^{1006} \sqrt{2^{2010}+2}-2^{2011}
$$
|
2^{1006} \sqrt{2^{2010}+2}-2^{2011}
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let $a_{0}=-2, b_{0}=1$, and for $n \geq 0$, let
$$
\begin{aligned}
& a_{n+1}=a_{n}+b_{n}+\sqrt{a_{n}^{2}+b_{n}^{2}} \\
& b_{n+1}=a_{n}+b_{n}-\sqrt{a_{n}^{2}+b_{n}^{2}}
\end{aligned}
$$
Find $a_{2012}$.
|
$2^{1006} \sqrt{2^{2010}+2}-2^{2011}$ We have
$$
\begin{gathered}
a_{n+1}+b_{n+1}=2\left(a_{n}+b_{n}\right) \\
a_{n+1} b_{n+1}=\left(a_{n}+b_{n}\right)^{2}-a_{n}^{2}-b_{n}^{2}=2 a_{n} b_{n}
\end{gathered}
$$
Thus,
$$
\begin{aligned}
a_{n}+b_{n} & =-2^{n} \\
a_{n} b_{n} & =-2^{n+1}
\end{aligned}
$$
Using Viete's formula, $a_{2012}$ and $b_{2012}$ are the roots of the following quadratic, and, since the square root is positive, $a_{2012}$ is the bigger root:
$$
x^{2}+2^{2012} x-2^{2013}
$$
Thus,
$$
a_{2012}=2^{1006} \sqrt{2^{2010}+2}-2^{2011}
$$
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-alg-solutions.jsonl",
"problem_match": "\n6. ",
"solution_match": "\nAnswer: "
}
|
a4aa2559-aec2-5449-bff9-a13f7b0ef184
| 608,964
|
Let $x_{1}=y_{1}=x_{2}=y_{2}=1$, then for $n \geq 3$ let $x_{n}=x_{n-1} y_{n-2}+x_{n-2} y_{n-1}$ and $y_{n}=y_{n-1} y_{n-2}-$ $x_{n-1} x_{n-2}$. What are the last two digits of $\left|x_{2012}\right|$ ?
|
84 Let $z_{n}=y_{n}+x_{n} i$. Then the recursion implies that:
$$
\begin{aligned}
& z_{1}=z_{2}=1+i \\
& z_{n}=z_{n-1} z_{n-2}
\end{aligned}
$$
This implies that
$$
z_{n}=\left(z_{1}\right)^{F_{n}}
$$
where $F_{n}$ is the $n^{\text {th }}$ Fibonacci number $\left(F_{1}=F_{2}=1\right)$. So, $z_{2012}=(1+i)^{F_{2012}}$. Notice that
$$
(1+i)^{2}=2 i
$$
Also notice that every third Fibonnaci number is even, and the rest are odd. So:
$$
z_{2012}=(2 i)^{\frac{F_{2012}-1}{2}}(1+i)
$$
## Algebra Test
Let $m=\frac{F_{2012}-1}{2}$. Since both real and imaginary parts of $1+i$ are 1 , it follows that the last two digits of $\left|x_{2012}\right|$ are simply the last two digits of $2^{m}=2^{\frac{F_{2012}-1}{2}}$.
By the Chinese Remainder Theorem, it suffices to evaluate $2^{m}$ modulo 4 and 25 . Clearly, $2^{m}$ is divisible by 4 . To evaluate it modulo 25 , it suffices by Euler's Totient theorem to evaluate $m$ modulo 20.
To determine $\left(F_{2012}-1\right) / 2$ modulo 4 it suffices to determine $F_{2012}$ modulo 8. The Fibonacci sequence has period 12 modulo 8 , and we find
$$
\begin{aligned}
F_{2012} & \equiv 5 \quad(\bmod 8) \\
m & \equiv 2 \quad(\bmod 4)
\end{aligned}
$$
$2 * 3 \equiv 1(\bmod 5)$, so
$$
m \equiv 3 F_{2012}-3 \quad(\bmod 5)
$$
The Fibonacci sequence has period 20 modulo 5, and we find
$$
m \equiv 4 \quad(\bmod 5)
$$
Combining,
$$
\begin{aligned}
m & \equiv 14 \quad(\bmod 20) \\
2^{m} & \equiv 2^{14}=4096 \equiv 21 \quad(\bmod 25) \\
\left|x_{2012}\right| & \equiv 4 \cdot 21=84 \quad(\bmod 100)
\end{aligned}
$$
|
84
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let $x_{1}=y_{1}=x_{2}=y_{2}=1$, then for $n \geq 3$ let $x_{n}=x_{n-1} y_{n-2}+x_{n-2} y_{n-1}$ and $y_{n}=y_{n-1} y_{n-2}-$ $x_{n-1} x_{n-2}$. What are the last two digits of $\left|x_{2012}\right|$ ?
|
84 Let $z_{n}=y_{n}+x_{n} i$. Then the recursion implies that:
$$
\begin{aligned}
& z_{1}=z_{2}=1+i \\
& z_{n}=z_{n-1} z_{n-2}
\end{aligned}
$$
This implies that
$$
z_{n}=\left(z_{1}\right)^{F_{n}}
$$
where $F_{n}$ is the $n^{\text {th }}$ Fibonacci number $\left(F_{1}=F_{2}=1\right)$. So, $z_{2012}=(1+i)^{F_{2012}}$. Notice that
$$
(1+i)^{2}=2 i
$$
Also notice that every third Fibonnaci number is even, and the rest are odd. So:
$$
z_{2012}=(2 i)^{\frac{F_{2012}-1}{2}}(1+i)
$$
## Algebra Test
Let $m=\frac{F_{2012}-1}{2}$. Since both real and imaginary parts of $1+i$ are 1 , it follows that the last two digits of $\left|x_{2012}\right|$ are simply the last two digits of $2^{m}=2^{\frac{F_{2012}-1}{2}}$.
By the Chinese Remainder Theorem, it suffices to evaluate $2^{m}$ modulo 4 and 25 . Clearly, $2^{m}$ is divisible by 4 . To evaluate it modulo 25 , it suffices by Euler's Totient theorem to evaluate $m$ modulo 20.
To determine $\left(F_{2012}-1\right) / 2$ modulo 4 it suffices to determine $F_{2012}$ modulo 8. The Fibonacci sequence has period 12 modulo 8 , and we find
$$
\begin{aligned}
F_{2012} & \equiv 5 \quad(\bmod 8) \\
m & \equiv 2 \quad(\bmod 4)
\end{aligned}
$$
$2 * 3 \equiv 1(\bmod 5)$, so
$$
m \equiv 3 F_{2012}-3 \quad(\bmod 5)
$$
The Fibonacci sequence has period 20 modulo 5, and we find
$$
m \equiv 4 \quad(\bmod 5)
$$
Combining,
$$
\begin{aligned}
m & \equiv 14 \quad(\bmod 20) \\
2^{m} & \equiv 2^{14}=4096 \equiv 21 \quad(\bmod 25) \\
\left|x_{2012}\right| & \equiv 4 \cdot 21=84 \quad(\bmod 100)
\end{aligned}
$$
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-alg-solutions.jsonl",
"problem_match": "\n8. ",
"solution_match": "\nAnswer: "
}
|
290da48f-d92b-5329-93f9-23b95df504ce
| 608,966
|
How many real triples $(a, b, c)$ are there such that the polynomial $p(x)=x^{4}+a x^{3}+b x^{2}+a x+c$ has exactly three distinct roots, which are equal to $\tan y, \tan 2 y$, and $\tan 3 y$ for some real $y$ ?
|
18 Let $p$ have roots $r, r, s, t$. Using Vieta's on the coefficient of the cubic and linear terms, we see that $2 r+s+t=r^{2} s+r^{2} t+2 r s t$. Rearranging gives $2 r(1-s t)=\left(r^{2}-1\right)(s+t)$.
If $r^{2}-1=0$, then since $r \neq 0$, we require that $1-s t=0$ for the equation to hold. Conversely, if $1-s t=0$, then since $s t=1, s+t=0$ cannot hold for real $s, t$, we require that $r^{2}-1=0$ for the equation to hold. So one valid case is where both these values are zero, so $r^{2}=s t=1$. If $r=\tan y$ (here we stipulate that $0 \leq y<\pi$ ), then either $y=\frac{\pi}{4}$ or $y=\frac{3 \pi}{4}$. In either case, the value of $\tan 2 y$ is undefined. If $r=\tan 2 y$, then we have the possible values $y=\frac{\pi}{8}, \frac{3 \pi}{8}, \frac{5 \pi}{8}, \frac{7 \pi}{8}$. In each of these cases, we must check if $\tan y \tan 3 y=1$. But this is true if $y+3 y=4 y$ is a odd integer multiple of $\frac{\pi}{2}$, which is the case for all such values. If $r=\tan 3 y$, then we must have $\tan y \tan 2 y=1$, so that $3 y$ is an odd integer multiple of $\frac{\pi}{2}$. But then $\tan 3 y$ would be undefined, so none of these values can work.
Now, we may assume that $r^{2}-1$ and $1-s t$ are both nonzero. Dividing both sides by $\left(r^{2}-1\right)(1-s t)$ and rearranging yields $0=\frac{2 r}{1-r^{2}}+\frac{s+t}{1-s t}$, the tangent addition formula along with the tangent double angle formula. By setting $r$ to be one of $\tan y$, $\tan 2 y$, or $\tan 3 y$, we have one of the following:
(a) $0=\tan 2 y+\tan 5 y$
(b) $0=\tan 4 y+\tan 4 y$
(c) $0=\tan 6 y+\tan 3 y$.
We will find the number of solutions $y$ in the interval $[0, \pi)$. Case 1 yields six multiples of $\frac{\pi}{7}$. Case 2 yields $\tan 4 y=0$, which we can readily check has no solutions. Case 3 yields eight multiples of $\frac{\pi}{9}$. In total, we have $4+6+8=18$ possible values of $y$.
|
18
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
How many real triples $(a, b, c)$ are there such that the polynomial $p(x)=x^{4}+a x^{3}+b x^{2}+a x+c$ has exactly three distinct roots, which are equal to $\tan y, \tan 2 y$, and $\tan 3 y$ for some real $y$ ?
|
18 Let $p$ have roots $r, r, s, t$. Using Vieta's on the coefficient of the cubic and linear terms, we see that $2 r+s+t=r^{2} s+r^{2} t+2 r s t$. Rearranging gives $2 r(1-s t)=\left(r^{2}-1\right)(s+t)$.
If $r^{2}-1=0$, then since $r \neq 0$, we require that $1-s t=0$ for the equation to hold. Conversely, if $1-s t=0$, then since $s t=1, s+t=0$ cannot hold for real $s, t$, we require that $r^{2}-1=0$ for the equation to hold. So one valid case is where both these values are zero, so $r^{2}=s t=1$. If $r=\tan y$ (here we stipulate that $0 \leq y<\pi$ ), then either $y=\frac{\pi}{4}$ or $y=\frac{3 \pi}{4}$. In either case, the value of $\tan 2 y$ is undefined. If $r=\tan 2 y$, then we have the possible values $y=\frac{\pi}{8}, \frac{3 \pi}{8}, \frac{5 \pi}{8}, \frac{7 \pi}{8}$. In each of these cases, we must check if $\tan y \tan 3 y=1$. But this is true if $y+3 y=4 y$ is a odd integer multiple of $\frac{\pi}{2}$, which is the case for all such values. If $r=\tan 3 y$, then we must have $\tan y \tan 2 y=1$, so that $3 y$ is an odd integer multiple of $\frac{\pi}{2}$. But then $\tan 3 y$ would be undefined, so none of these values can work.
Now, we may assume that $r^{2}-1$ and $1-s t$ are both nonzero. Dividing both sides by $\left(r^{2}-1\right)(1-s t)$ and rearranging yields $0=\frac{2 r}{1-r^{2}}+\frac{s+t}{1-s t}$, the tangent addition formula along with the tangent double angle formula. By setting $r$ to be one of $\tan y$, $\tan 2 y$, or $\tan 3 y$, we have one of the following:
(a) $0=\tan 2 y+\tan 5 y$
(b) $0=\tan 4 y+\tan 4 y$
(c) $0=\tan 6 y+\tan 3 y$.
We will find the number of solutions $y$ in the interval $[0, \pi)$. Case 1 yields six multiples of $\frac{\pi}{7}$. Case 2 yields $\tan 4 y=0$, which we can readily check has no solutions. Case 3 yields eight multiples of $\frac{\pi}{9}$. In total, we have $4+6+8=18$ possible values of $y$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-alg-solutions.jsonl",
"problem_match": "\n9. ",
"solution_match": "\nAnswer: "
}
|
92392281-bc11-5587-b0a9-bcbf56563dea
| 608,967
|
Suppose that there are 16 variables $\left\{a_{i, j}\right\}_{0 \leq i, j \leq 3}$, each of which may be 0 or 1 . For how many settings of the variables $a_{i, j}$ do there exist positive reals $c_{i, j}$ such that the polynomial
$$
f(x, y)=\sum_{0 \leq i, j \leq 3} a_{i, j} c_{i, j} x^{i} y^{j}
$$
$(x, y \in \mathbb{R})$ is bounded below?
|
126 For some choices of the $a_{i, j}$, let $S=\left\{(i, j) \mid a_{i, j}=1\right\}$, and let $S^{\prime}=S \cup\{(0,0)\}$. Let $C\left(S^{\prime}\right)$ denote the convex hull of $S^{\prime}$. We claim that there exist the problem conditions are satisfied (there exist positive coefficients for the terms so that the polynomial is bounded below) if and only if the vertices of $C\left(S^{\prime}\right)$ all have both coordinates even.
For one direction, suppose that $C\left(S^{\prime}\right)$ has a vertex $v=\left(i^{\prime}, j^{\prime}\right)$ with at least one odd coordinate; WLOG, suppose it is $i^{\prime}$. Since $v$ is a vertex, it maximizes some objective function $a i+b j$ over $C\left(S^{\prime}\right)$ uniquely, and thus also over $S^{\prime}$. Since $(0,0) \in S^{\prime}$, we must have $a i^{\prime}+b j^{\prime}>0$. Now consider plugging in $(x, y)=\left(-t^{a}, t^{b}\right)(t>0)$ into $f$. This gives the value
$$
f\left(-t^{a}, t^{b}\right)=\sum_{(i, j) \in S}(-1)^{i} c_{i, j} t^{a i+b j}
$$
But no matter what positive $c_{i, j}$ we choose, this expression is not bounded below as $t$ grows infinitely large, as there is a $-c_{i^{\prime}, j^{\prime}} t^{a i^{\prime}+b j^{\prime}}$ term, with $a i^{\prime}+b j^{\prime}>0$, and all other terms have smaller powers of $t$. So the polynomial cannot be bounded below.
For the other direction, suppose the vertices of $C\left(S^{\prime}\right)$ all have both coordinates even. If all points in $S^{\prime}$ are vertices of $C\left(S^{\prime}\right)$, then the polynomial is a sum of squares, so it is bounded below. Otherwise, we assume that some points in $S^{\prime}$ are not vertices of $C\left(S^{\prime}\right)$. It suffices to consider the case where there is exactly one such point. Call this point $w=\left(i^{\prime}, j^{\prime}\right)$. Let $V\left(S^{\prime}\right)$ denote the set of the vertices of $C\left(S^{\prime}\right)$, and let $n=\left|V\left(S^{\prime}\right)\right|$. Enumerate the points of $V\left(S^{\prime}\right)$ as $v_{1}, v_{2}, \ldots, v_{n}$. Let $i_{k}, j_{k}$ denote the $i$ and $j$ coordinates of $v_{k}$, respectively.
Since $w \in C\left(S^{\prime}\right)$, there exist nonnegative constants $\lambda_{1}, \lambda_{2}, \ldots, \lambda_{n}$ such that $\sum_{k=1}^{n} \lambda_{k}=1$ and $\sum_{k=1}^{n} \lambda_{k} v_{k}=$ $w$. (Here, we are treating the ordered pairs as vectors.) Then, by weighted AM-GM, we have
$$
\sum_{k=1}^{n} \lambda_{k}|x|^{i_{k}}|y|^{j_{k}} \geq|x|^{i^{\prime}}|y|^{j^{\prime}}
$$
Let $c$ be the $\lambda$-value associated with $(0,0)$. Then by picking $c_{i_{k}, j_{k}}=\lambda_{k}$ and $c_{i^{\prime}, j^{\prime}}=1$, we find that $p(x, y) \geq-c$ for all $x, y$, as desired.
We now find all possible convex hulls $C\left(S^{\prime}\right)$ (with vertices chosen from $(0,0),(0,2),(2,0)$, and $(2,2)$ ), and for each convex hull, determine how many possible settings of $a_{i, j}$ give that convex hull. There are 8 such possible convex hulls: the point $(0,0)$ only, 3 lines, 3 triangles, and the square. The point has 2 possible choices, each line has 4 possible choices, each triangle has 16 possible choices, and the square has 64 possible choices, giving $2+3 \cdot 4+3 \cdot 16+64=126$ total choices.
|
126
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Suppose that there are 16 variables $\left\{a_{i, j}\right\}_{0 \leq i, j \leq 3}$, each of which may be 0 or 1 . For how many settings of the variables $a_{i, j}$ do there exist positive reals $c_{i, j}$ such that the polynomial
$$
f(x, y)=\sum_{0 \leq i, j \leq 3} a_{i, j} c_{i, j} x^{i} y^{j}
$$
$(x, y \in \mathbb{R})$ is bounded below?
|
126 For some choices of the $a_{i, j}$, let $S=\left\{(i, j) \mid a_{i, j}=1\right\}$, and let $S^{\prime}=S \cup\{(0,0)\}$. Let $C\left(S^{\prime}\right)$ denote the convex hull of $S^{\prime}$. We claim that there exist the problem conditions are satisfied (there exist positive coefficients for the terms so that the polynomial is bounded below) if and only if the vertices of $C\left(S^{\prime}\right)$ all have both coordinates even.
For one direction, suppose that $C\left(S^{\prime}\right)$ has a vertex $v=\left(i^{\prime}, j^{\prime}\right)$ with at least one odd coordinate; WLOG, suppose it is $i^{\prime}$. Since $v$ is a vertex, it maximizes some objective function $a i+b j$ over $C\left(S^{\prime}\right)$ uniquely, and thus also over $S^{\prime}$. Since $(0,0) \in S^{\prime}$, we must have $a i^{\prime}+b j^{\prime}>0$. Now consider plugging in $(x, y)=\left(-t^{a}, t^{b}\right)(t>0)$ into $f$. This gives the value
$$
f\left(-t^{a}, t^{b}\right)=\sum_{(i, j) \in S}(-1)^{i} c_{i, j} t^{a i+b j}
$$
But no matter what positive $c_{i, j}$ we choose, this expression is not bounded below as $t$ grows infinitely large, as there is a $-c_{i^{\prime}, j^{\prime}} t^{a i^{\prime}+b j^{\prime}}$ term, with $a i^{\prime}+b j^{\prime}>0$, and all other terms have smaller powers of $t$. So the polynomial cannot be bounded below.
For the other direction, suppose the vertices of $C\left(S^{\prime}\right)$ all have both coordinates even. If all points in $S^{\prime}$ are vertices of $C\left(S^{\prime}\right)$, then the polynomial is a sum of squares, so it is bounded below. Otherwise, we assume that some points in $S^{\prime}$ are not vertices of $C\left(S^{\prime}\right)$. It suffices to consider the case where there is exactly one such point. Call this point $w=\left(i^{\prime}, j^{\prime}\right)$. Let $V\left(S^{\prime}\right)$ denote the set of the vertices of $C\left(S^{\prime}\right)$, and let $n=\left|V\left(S^{\prime}\right)\right|$. Enumerate the points of $V\left(S^{\prime}\right)$ as $v_{1}, v_{2}, \ldots, v_{n}$. Let $i_{k}, j_{k}$ denote the $i$ and $j$ coordinates of $v_{k}$, respectively.
Since $w \in C\left(S^{\prime}\right)$, there exist nonnegative constants $\lambda_{1}, \lambda_{2}, \ldots, \lambda_{n}$ such that $\sum_{k=1}^{n} \lambda_{k}=1$ and $\sum_{k=1}^{n} \lambda_{k} v_{k}=$ $w$. (Here, we are treating the ordered pairs as vectors.) Then, by weighted AM-GM, we have
$$
\sum_{k=1}^{n} \lambda_{k}|x|^{i_{k}}|y|^{j_{k}} \geq|x|^{i^{\prime}}|y|^{j^{\prime}}
$$
Let $c$ be the $\lambda$-value associated with $(0,0)$. Then by picking $c_{i_{k}, j_{k}}=\lambda_{k}$ and $c_{i^{\prime}, j^{\prime}}=1$, we find that $p(x, y) \geq-c$ for all $x, y$, as desired.
We now find all possible convex hulls $C\left(S^{\prime}\right)$ (with vertices chosen from $(0,0),(0,2),(2,0)$, and $(2,2)$ ), and for each convex hull, determine how many possible settings of $a_{i, j}$ give that convex hull. There are 8 such possible convex hulls: the point $(0,0)$ only, 3 lines, 3 triangles, and the square. The point has 2 possible choices, each line has 4 possible choices, each triangle has 16 possible choices, and the square has 64 possible choices, giving $2+3 \cdot 4+3 \cdot 16+64=126$ total choices.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-alg-solutions.jsonl",
"problem_match": "\n10. ",
"solution_match": "\nAnswer: "
}
|
164f62fa-0c48-5c80-83ce-29efae62f1bf
| 608,968
|
In the game of Minesweeper, a number on a square denotes the number of mines that share at least one vertex with that square. A square with a number may not have a mine, and the blank squares are undetermined. How many ways can the mines be placed in this configuration?
| | | | | | |
| :--- | :--- | :--- | :--- | :--- | :--- |
| | 2 | | 1 | | 2 |
| | | | | | |
|
95 Let $A$ be the number of mines in the first two columns. Let $B, C, D, E$ be the number of mines in the third, fourth, fifth, and sixth columns, respectively. We need to have $A+B=2$, $B+C+D=1$, and $D+E=2$. This can happen in three ways, which are $(A, B, C, D, E)=$ $(2,0,1,0,2),(2,0,0,1,1),(1,1,0,0,2)$. This gives $(10)(2)(1)+(10)(3)(2)+(5)(3)(1)=95$ possible configurations.
|
95
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
In the game of Minesweeper, a number on a square denotes the number of mines that share at least one vertex with that square. A square with a number may not have a mine, and the blank squares are undetermined. How many ways can the mines be placed in this configuration?
| | | | | | |
| :--- | :--- | :--- | :--- | :--- | :--- |
| | 2 | | 1 | | 2 |
| | | | | | |
|
95 Let $A$ be the number of mines in the first two columns. Let $B, C, D, E$ be the number of mines in the third, fourth, fifth, and sixth columns, respectively. We need to have $A+B=2$, $B+C+D=1$, and $D+E=2$. This can happen in three ways, which are $(A, B, C, D, E)=$ $(2,0,1,0,2),(2,0,0,1,1),(1,1,0,0,2)$. This gives $(10)(2)(1)+(10)(3)(2)+(5)(3)(1)=95$ possible configurations.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-comb-solutions.jsonl",
"problem_match": "\n1. ",
"solution_match": "\nAnswer: "
}
|
b3a49023-67f5-5dd1-b6b8-45f86125db20
| 608,969
|
Brian has a 20 -sided die with faces numbered from 1 to 20 , and George has three 6 -sided dice with faces numbered from 1 to 6 . Brian and George simultaneously roll all their dice. What is the probability that the number on Brian's die is larger than the sum of the numbers on George's dice?
|
$\frac{19}{40}$ Let Brian's roll be $d$ and let George's rolls be $x, y, z$. By pairing the situation $d, x, y, z$ with $21-\overline{d, 7}-x, 7-y, 7-z$, we see that the probability that Brian rolls higher is the same as the probability that George rolls higher. Given any of George's rolls $x, y, z$, there is exactly one number Brian can roll which will make them tie, so the probability that they tie is $\frac{1}{20}$. So the probability that Brian wins is $\frac{1-\frac{1}{20}}{2}=\frac{19}{40}$.
|
\frac{19}{40}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Brian has a 20 -sided die with faces numbered from 1 to 20 , and George has three 6 -sided dice with faces numbered from 1 to 6 . Brian and George simultaneously roll all their dice. What is the probability that the number on Brian's die is larger than the sum of the numbers on George's dice?
|
$\frac{19}{40}$ Let Brian's roll be $d$ and let George's rolls be $x, y, z$. By pairing the situation $d, x, y, z$ with $21-\overline{d, 7}-x, 7-y, 7-z$, we see that the probability that Brian rolls higher is the same as the probability that George rolls higher. Given any of George's rolls $x, y, z$, there is exactly one number Brian can roll which will make them tie, so the probability that they tie is $\frac{1}{20}$. So the probability that Brian wins is $\frac{1-\frac{1}{20}}{2}=\frac{19}{40}$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-comb-solutions.jsonl",
"problem_match": "\n2. ",
"solution_match": "\nAnswer: "
}
|
83ce1640-b2bc-50de-b51e-442829070d56
| 608,970
|
A frog is at the point $(0,0)$. Every second, he can jump one unit either up or right. He can only move to points $(x, y)$ where $x$ and $y$ are not both odd. How many ways can he get to the point $(8,14)$ ?
|
330 When the frog is at a point $(x, y)$ where $x$ and $y$ are both even, then if that frog chooses to move right, his next move will also have to be a step right; similarly, if he moves up, his next move will have to be up.
If we "collapse" each double step into one step, the problem simply becomes how many ways are there to move to the point $(4,7)$ using only right and up steps, with no other restrictions. That is 11 steps total, so the answer is $\binom{11}{4}=330$.
|
330
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
A frog is at the point $(0,0)$. Every second, he can jump one unit either up or right. He can only move to points $(x, y)$ where $x$ and $y$ are not both odd. How many ways can he get to the point $(8,14)$ ?
|
330 When the frog is at a point $(x, y)$ where $x$ and $y$ are both even, then if that frog chooses to move right, his next move will also have to be a step right; similarly, if he moves up, his next move will have to be up.
If we "collapse" each double step into one step, the problem simply becomes how many ways are there to move to the point $(4,7)$ using only right and up steps, with no other restrictions. That is 11 steps total, so the answer is $\binom{11}{4}=330$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-comb-solutions.jsonl",
"problem_match": "\n4. ",
"solution_match": "\nAnswer: "
}
|
b5624a20-dc62-5e2b-9df2-bba109c36e54
| 608,972
|
Dizzy Daisy is standing on the point $(0,0)$ on the $x y$-plane and is trying to get to the point $(6,6)$. She starts facing rightward and takes a step 1 unit forward. On each subsequent second, she either takes a step 1 unit forward or turns 90 degrees counterclockwise then takes a step 1 unit forward. She may never go on a point outside the square defined by $|x| \leq 6,|y| \leq 6$, nor may she ever go on the same point twice. How many different paths may Daisy take?
|
131922 Because Daisy can only turn in one direction and never goes to the same square twice, we see that she must travel in an increasing spiral about the origin. Clearly, she must arrive at $(6,6)$ coming from below. To count her paths, it therefore suffices to consider the horizontal and vertical lines along which she travels (out of 5 choices to move upward, 6 choices leftward, 6 choices downward, and 6 choices rightward). Breaking up the cases by the number of complete rotations she performs, the total is $\binom{5}{0}\binom{6}{0}^{3}+\binom{5}{1}\binom{6}{1}^{3}+\binom{5}{2}\binom{6}{2}^{3}+\binom{5}{3}\binom{6}{3}^{3}+\binom{5}{4}\binom{6}{4}^{3}+\binom{5}{5}\binom{6}{5}^{3}=131922$.
|
131922
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Dizzy Daisy is standing on the point $(0,0)$ on the $x y$-plane and is trying to get to the point $(6,6)$. She starts facing rightward and takes a step 1 unit forward. On each subsequent second, she either takes a step 1 unit forward or turns 90 degrees counterclockwise then takes a step 1 unit forward. She may never go on a point outside the square defined by $|x| \leq 6,|y| \leq 6$, nor may she ever go on the same point twice. How many different paths may Daisy take?
|
131922 Because Daisy can only turn in one direction and never goes to the same square twice, we see that she must travel in an increasing spiral about the origin. Clearly, she must arrive at $(6,6)$ coming from below. To count her paths, it therefore suffices to consider the horizontal and vertical lines along which she travels (out of 5 choices to move upward, 6 choices leftward, 6 choices downward, and 6 choices rightward). Breaking up the cases by the number of complete rotations she performs, the total is $\binom{5}{0}\binom{6}{0}^{3}+\binom{5}{1}\binom{6}{1}^{3}+\binom{5}{2}\binom{6}{2}^{3}+\binom{5}{3}\binom{6}{3}^{3}+\binom{5}{4}\binom{6}{4}^{3}+\binom{5}{5}\binom{6}{5}^{3}=131922$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-comb-solutions.jsonl",
"problem_match": "\n5. ",
"solution_match": "\nAnswer: "
}
|
985b73c8-2fbf-5281-9412-aba65ff5293e
| 608,973
|
For a permutation $\sigma$ of $1,2, \ldots, 7$, a transposition is a swapping of two elements. (For instance, we could apply a transposition to the permutation $3,7,1,4,5,6,2$ and get $3,7,6,4,5,1,2$ by swapping the 1 and the 6.)
Let $f(\sigma)$ be the minimum number of transpositions necessary to turn $\sigma$ into the permutation $1,2,3,4,5,6,7$. Find the sum of $f(\sigma)$ over all permutations $\sigma$ of $1,2, \ldots, 7$.
|
22212 To solve this problem, we use the idea of a cycle in a permutation. If $\sigma$ is a permutation, we say that $\left(a_{1} a_{2} \cdots a_{k}\right)$ is a cycle if $\sigma\left(a_{i}\right)=\sigma\left(a_{i+1}\right)$ for $1 \leq i \leq k-1$ and $\sigma\left(a_{k}\right)=a_{1}$. Any permutation can be decomposed into disjoint cycles; for instance, the permutation $3,7,6,4,5,1,2$, can be written as $(136)(27)(4)(5)$. For a permutation $\sigma$, let $g(\sigma)$ be the number of cycles in its cycle decomposition. (This includes single-element cycles.)
Claim. For any permutation $\sigma$ on $n$ elements, $f(\sigma)=n-g(\sigma)$.
Proof. Given a cycle ( $a_{1} a_{2} \cdots a_{k}$ ) (with $k \geq 2$ ) of a permutation $\sigma$, we can turn this cycle into the identity permutation with $k-1$ transpositions; first we swap $a_{1}$ and $a_{2}$; that is, we replace $\sigma$ with a permutation $\sigma^{\prime}$ such that instead of $\sigma\left(a_{k}\right)=a_{1}$ and $\sigma\left(a_{1}\right)=a_{2}$, we have $\sigma^{\prime}\left(a_{k}\right)=a_{2}$ and $\sigma^{\prime}\left(a_{1}\right)=a_{1}$. Now, $\sigma^{\prime}$ takes $a_{1}$ to itself, so we are left with the cycle $\left(a_{2} \cdots a_{n}\right)$. We continue until the entire cycle is replaced by the identity, which takes $k-1$ transpositions. Now, for any $\sigma$, we resolve each cycle in this way, making a total of $n-g(\sigma)$ transpositions, to turn $\sigma$ into the identity permutation.
This shows that $n-g(\sigma)$ transpositions; now let us that we cannot do it in less. We show that whenever we make a transposition, the value of $n-g(\sigma)$ can never decrease by more than 1 . Whenever we swap two elements, if they are in different cycles, then those two cycles merge into one; thus $n-g(\sigma)$ actually increased. If the two elements are in one cycle, then the one cycle splits into two cycles, so $n-g(\sigma)$ decreased by only one, and this proves the claim.
Thus, we want to find
$$
\sum_{\sigma \in S_{7}}(7-g(\sigma))=7 \cdot 7!-\sum_{\sigma \in S_{7}} g(\sigma)
$$
to evaluate the sum, we instead sum over every cycle the number of permutations it appears in. For any $1 \leq k \leq 7$, the number of cycles of size $k$ is $\frac{n!}{(n-k)!k}$, and the number of permutations each such cycle can appear in is $(n-k)$ !. Thus we get that the answer is
$$
7 \cdot 7!-\sum_{k=1}^{7} \frac{7!}{k}=22212
$$
|
22212
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
For a permutation $\sigma$ of $1,2, \ldots, 7$, a transposition is a swapping of two elements. (For instance, we could apply a transposition to the permutation $3,7,1,4,5,6,2$ and get $3,7,6,4,5,1,2$ by swapping the 1 and the 6.)
Let $f(\sigma)$ be the minimum number of transpositions necessary to turn $\sigma$ into the permutation $1,2,3,4,5,6,7$. Find the sum of $f(\sigma)$ over all permutations $\sigma$ of $1,2, \ldots, 7$.
|
22212 To solve this problem, we use the idea of a cycle in a permutation. If $\sigma$ is a permutation, we say that $\left(a_{1} a_{2} \cdots a_{k}\right)$ is a cycle if $\sigma\left(a_{i}\right)=\sigma\left(a_{i+1}\right)$ for $1 \leq i \leq k-1$ and $\sigma\left(a_{k}\right)=a_{1}$. Any permutation can be decomposed into disjoint cycles; for instance, the permutation $3,7,6,4,5,1,2$, can be written as $(136)(27)(4)(5)$. For a permutation $\sigma$, let $g(\sigma)$ be the number of cycles in its cycle decomposition. (This includes single-element cycles.)
Claim. For any permutation $\sigma$ on $n$ elements, $f(\sigma)=n-g(\sigma)$.
Proof. Given a cycle ( $a_{1} a_{2} \cdots a_{k}$ ) (with $k \geq 2$ ) of a permutation $\sigma$, we can turn this cycle into the identity permutation with $k-1$ transpositions; first we swap $a_{1}$ and $a_{2}$; that is, we replace $\sigma$ with a permutation $\sigma^{\prime}$ such that instead of $\sigma\left(a_{k}\right)=a_{1}$ and $\sigma\left(a_{1}\right)=a_{2}$, we have $\sigma^{\prime}\left(a_{k}\right)=a_{2}$ and $\sigma^{\prime}\left(a_{1}\right)=a_{1}$. Now, $\sigma^{\prime}$ takes $a_{1}$ to itself, so we are left with the cycle $\left(a_{2} \cdots a_{n}\right)$. We continue until the entire cycle is replaced by the identity, which takes $k-1$ transpositions. Now, for any $\sigma$, we resolve each cycle in this way, making a total of $n-g(\sigma)$ transpositions, to turn $\sigma$ into the identity permutation.
This shows that $n-g(\sigma)$ transpositions; now let us that we cannot do it in less. We show that whenever we make a transposition, the value of $n-g(\sigma)$ can never decrease by more than 1 . Whenever we swap two elements, if they are in different cycles, then those two cycles merge into one; thus $n-g(\sigma)$ actually increased. If the two elements are in one cycle, then the one cycle splits into two cycles, so $n-g(\sigma)$ decreased by only one, and this proves the claim.
Thus, we want to find
$$
\sum_{\sigma \in S_{7}}(7-g(\sigma))=7 \cdot 7!-\sum_{\sigma \in S_{7}} g(\sigma)
$$
to evaluate the sum, we instead sum over every cycle the number of permutations it appears in. For any $1 \leq k \leq 7$, the number of cycles of size $k$ is $\frac{n!}{(n-k)!k}$, and the number of permutations each such cycle can appear in is $(n-k)$ !. Thus we get that the answer is
$$
7 \cdot 7!-\sum_{k=1}^{7} \frac{7!}{k}=22212
$$
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-comb-solutions.jsonl",
"problem_match": "\n6. ",
"solution_match": "\nAnswer: "
}
|
98e34735-6d58-5bb0-98ba-80bf34147d35
| 608,974
|
You are repeatedly flipping a fair coin. What is the expected number of flips until the first time that your previous 2012 flips are 'HTHT...HT'?
|
$\left(2^{2014}-4\right) / 3$ Let $S$ be our string, and let $f(n)$ be the number of binary strings of length $n$ which do not contain $S$. Let $g(n)$ be the number of strings of length $n$ which contain $S$ but whose prefix of length $n-1$ does not contain $S$ (so it contains $S$ for the "first" time at time $n$ ).
Consider any string of length $n$ which does not contain $S$ and append $S$ to it. Now, this new string contains $S$, and in fact it must contain $S$ for the first time at either time $n+2, n+4, \ldots$, or $n+2012$. It's then easy to deduce the relation
$$
f(n)=g(n+2)+g(n+4)+\cdots+g(n+2012)
$$
Now, let's translate this into a statement about probabilities. Let $t$ be the first time our sequence of coin flips contains the string $S$. Dividing both sides by $2^{n}$, our equality becomes
$$
P(t>n)=4 P(t=n+2)+16 P(t=n+4)+\cdots+2^{2012} P(t=n+2012)
$$
Summing this over all $n$ from 0 to $\infty$, we get
$$
\sum P(t>n)=4+16+\cdots+2^{2012}=\left(2^{2014}-4\right) / 3
$$
But it is also easy to show that since $t$ is integer-valued, $\sum P(t>n)=E(t)$, and we are done.
|
\left(2^{2014}-4\right) / 3
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
You are repeatedly flipping a fair coin. What is the expected number of flips until the first time that your previous 2012 flips are 'HTHT...HT'?
|
$\left(2^{2014}-4\right) / 3$ Let $S$ be our string, and let $f(n)$ be the number of binary strings of length $n$ which do not contain $S$. Let $g(n)$ be the number of strings of length $n$ which contain $S$ but whose prefix of length $n-1$ does not contain $S$ (so it contains $S$ for the "first" time at time $n$ ).
Consider any string of length $n$ which does not contain $S$ and append $S$ to it. Now, this new string contains $S$, and in fact it must contain $S$ for the first time at either time $n+2, n+4, \ldots$, or $n+2012$. It's then easy to deduce the relation
$$
f(n)=g(n+2)+g(n+4)+\cdots+g(n+2012)
$$
Now, let's translate this into a statement about probabilities. Let $t$ be the first time our sequence of coin flips contains the string $S$. Dividing both sides by $2^{n}$, our equality becomes
$$
P(t>n)=4 P(t=n+2)+16 P(t=n+4)+\cdots+2^{2012} P(t=n+2012)
$$
Summing this over all $n$ from 0 to $\infty$, we get
$$
\sum P(t>n)=4+16+\cdots+2^{2012}=\left(2^{2014}-4\right) / 3
$$
But it is also easy to show that since $t$ is integer-valued, $\sum P(t>n)=E(t)$, and we are done.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-comb-solutions.jsonl",
"problem_match": "\n7. ",
"solution_match": "\nAnswer: "
}
|
45cdb85f-996d-5798-b9f5-0e1a5498b8f4
| 608,975
|
How many ways can one color the squares of a $6 \times 6$ grid red and blue such that the number of red squares in each row and column is exactly 2 ?
|
67950 Assume the grid is $n \times n$. Let $f(n)$ denote the number of ways to color exactly two squares in each row and column red. So $f(1)=0$ and $f(2)=1$. We note that coloring two squares red in each row and column partitions the set $1,2, \ldots, n$ into cycles such that $i$ is in the same cycle as, and adjacent to, $j$ iff column $i$ and column $j$ have a red square in the same row. Each $i$ is adjacent to two other, (or the same one twice in a 2 -cycle).
Now consider the cycle containing 1, and let it have size $k$. There are $\binom{n}{2}$ ways to color two squares red in the first column. Now we let the column that is red in the same row as the top ball in the first column, be the next number in the cycle. There are $n-1$ ways to pick this column, and $n-2$ ways to pick the second red square in this column (unless $k=2$ ). Then there are $(n-2)(n-3)$ ways to pick the red squares in the third column. and $(n-j)(n-j+1)$ ways to pick the $j$ th ones for $j \leq k-1$. Then when we pick the $k$ th column, the last one in the cycle, it has to be red in the same row as the second red square in column 1 , so there are just $n-k+1$ choices. Therefore if the cycle has length $k$ there are
$\frac{n(n-1)}{2} \times(n-1)(n-2) \times \ldots \times(n-k+1)(n-k+2) \times(n-k+1)$ ways, which equals: $\frac{n!(n-1)!}{2(n-k)!(n-k)!}$.
Summing over the size of the cycle containing the first column, we get
$$
\begin{gathered}
f(n)=\sum_{k=2}^{n} \frac{1}{2} f(n-k) \frac{(n)!(n-1)!}{(n-k)!(n-k)!} \\
\frac{2 n f(n)}{n!n!}=\sum_{k=2}^{n} \frac{f(n-k)}{(n-k)!(n-k)!} \\
\frac{2 n f(n)}{n!n!}-\frac{2(n-1) f(n-1)}{(n-1)!(n-1)!}=\frac{f(n-2)}{(n-2)!(n-2)!}
\end{gathered}
$$
We thus obtain the recursion:
$$
f(n)=n(n-1) f(n-1)+\frac{n(n-1)^{2}}{2} f(n-2)
$$
Then we get:
$$
\begin{aligned}
& f(1)=0 \\
& f(2)=1 \\
& f(3)=6 \\
& f(4)=12 \times 6+18=90 \\
& f(5)=20 \times 90+40 \times 6=2040 \\
& f(6)=30 \times 2040+75 \times 90=67950
\end{aligned}
$$
|
67950
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
How many ways can one color the squares of a $6 \times 6$ grid red and blue such that the number of red squares in each row and column is exactly 2 ?
|
67950 Assume the grid is $n \times n$. Let $f(n)$ denote the number of ways to color exactly two squares in each row and column red. So $f(1)=0$ and $f(2)=1$. We note that coloring two squares red in each row and column partitions the set $1,2, \ldots, n$ into cycles such that $i$ is in the same cycle as, and adjacent to, $j$ iff column $i$ and column $j$ have a red square in the same row. Each $i$ is adjacent to two other, (or the same one twice in a 2 -cycle).
Now consider the cycle containing 1, and let it have size $k$. There are $\binom{n}{2}$ ways to color two squares red in the first column. Now we let the column that is red in the same row as the top ball in the first column, be the next number in the cycle. There are $n-1$ ways to pick this column, and $n-2$ ways to pick the second red square in this column (unless $k=2$ ). Then there are $(n-2)(n-3)$ ways to pick the red squares in the third column. and $(n-j)(n-j+1)$ ways to pick the $j$ th ones for $j \leq k-1$. Then when we pick the $k$ th column, the last one in the cycle, it has to be red in the same row as the second red square in column 1 , so there are just $n-k+1$ choices. Therefore if the cycle has length $k$ there are
$\frac{n(n-1)}{2} \times(n-1)(n-2) \times \ldots \times(n-k+1)(n-k+2) \times(n-k+1)$ ways, which equals: $\frac{n!(n-1)!}{2(n-k)!(n-k)!}$.
Summing over the size of the cycle containing the first column, we get
$$
\begin{gathered}
f(n)=\sum_{k=2}^{n} \frac{1}{2} f(n-k) \frac{(n)!(n-1)!}{(n-k)!(n-k)!} \\
\frac{2 n f(n)}{n!n!}=\sum_{k=2}^{n} \frac{f(n-k)}{(n-k)!(n-k)!} \\
\frac{2 n f(n)}{n!n!}-\frac{2(n-1) f(n-1)}{(n-1)!(n-1)!}=\frac{f(n-2)}{(n-2)!(n-2)!}
\end{gathered}
$$
We thus obtain the recursion:
$$
f(n)=n(n-1) f(n-1)+\frac{n(n-1)^{2}}{2} f(n-2)
$$
Then we get:
$$
\begin{aligned}
& f(1)=0 \\
& f(2)=1 \\
& f(3)=6 \\
& f(4)=12 \times 6+18=90 \\
& f(5)=20 \times 90+40 \times 6=2040 \\
& f(6)=30 \times 2040+75 \times 90=67950
\end{aligned}
$$
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-comb-solutions.jsonl",
"problem_match": "\n8. ",
"solution_match": "\nAnswer: "
}
|
d2ab0edc-3cd5-54ec-8ead-8542e4dcc031
| 608,976
|
A parking lot consists of 2012 parking spots equally spaced in a line, numbered 1 through 2012. One by one, 2012 cars park in these spots under the following procedure: the first car picks from the 2012 spots uniformly randomly, and each following car picks uniformly randomly among all possible choices which maximize the minimal distance from an already parked car. What is the probability that the last car to park must choose spot 1 ?
|
$\frac{1}{2062300}$ We see that for 1 to be the last spot, 2 must be picked first (with probability $\frac{1}{n}$ ), after which spot $n$ is picked. Then, cars from 3 to $n-1$ will be picked until there are only gaps of 1 or 2 remaining. At this point, each of the remaining spots (including spot 1) is picked uniformly at random, so the probability that spot 1 is chosen last here will be the reciprocal of the number of remaining slots.
Let $f(n)$ denote the number of empty spots that will be left if cars park in $n+2$ consecutive spots whose ends are occupied, under the same conditions, except that the process stops when a car is forced to park immediately next to a car. We want to find the value of $f(2009)$. Given the gap of $n$ cars, after placing a car, there are gaps of $f\left(\left\lfloor\frac{n-1}{2}\right\rfloor\right)$ and $f\left(\left\lceil\frac{n-1}{2}\right\rceil\right)$ remaining. Thus, $f(n)=$ $f\left(\left\lfloor\frac{n-1}{2}\right\rfloor\right)+f\left(\left\lceil\frac{n-1}{2}\right\rceil\right)$. With the base cases $f(1)=1, f(2)=2$, we can determine with induction that $f(x)= \begin{cases}x-2^{n-1}+1 & \text { if } 2^{n} \leq x \leq \frac{3}{2} \cdot 2^{n}-2, \\ 2^{n} & \text { if } \frac{3}{2} \cdot 2^{n}-1 \leq x \leq 2 \cdot 2^{n}-1 .\end{cases}$
Thus, $f(2009)=1024$, so the total probability is $\frac{1}{2012} \cdot \frac{1}{1024+1}=\frac{1}{2062300}$.
|
\frac{1}{2062300}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
A parking lot consists of 2012 parking spots equally spaced in a line, numbered 1 through 2012. One by one, 2012 cars park in these spots under the following procedure: the first car picks from the 2012 spots uniformly randomly, and each following car picks uniformly randomly among all possible choices which maximize the minimal distance from an already parked car. What is the probability that the last car to park must choose spot 1 ?
|
$\frac{1}{2062300}$ We see that for 1 to be the last spot, 2 must be picked first (with probability $\frac{1}{n}$ ), after which spot $n$ is picked. Then, cars from 3 to $n-1$ will be picked until there are only gaps of 1 or 2 remaining. At this point, each of the remaining spots (including spot 1) is picked uniformly at random, so the probability that spot 1 is chosen last here will be the reciprocal of the number of remaining slots.
Let $f(n)$ denote the number of empty spots that will be left if cars park in $n+2$ consecutive spots whose ends are occupied, under the same conditions, except that the process stops when a car is forced to park immediately next to a car. We want to find the value of $f(2009)$. Given the gap of $n$ cars, after placing a car, there are gaps of $f\left(\left\lfloor\frac{n-1}{2}\right\rfloor\right)$ and $f\left(\left\lceil\frac{n-1}{2}\right\rceil\right)$ remaining. Thus, $f(n)=$ $f\left(\left\lfloor\frac{n-1}{2}\right\rfloor\right)+f\left(\left\lceil\frac{n-1}{2}\right\rceil\right)$. With the base cases $f(1)=1, f(2)=2$, we can determine with induction that $f(x)= \begin{cases}x-2^{n-1}+1 & \text { if } 2^{n} \leq x \leq \frac{3}{2} \cdot 2^{n}-2, \\ 2^{n} & \text { if } \frac{3}{2} \cdot 2^{n}-1 \leq x \leq 2 \cdot 2^{n}-1 .\end{cases}$
Thus, $f(2009)=1024$, so the total probability is $\frac{1}{2012} \cdot \frac{1}{1024+1}=\frac{1}{2062300}$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-comb-solutions.jsonl",
"problem_match": "\n9. ",
"solution_match": "\nAnswer: "
}
|
fefc0eac-d6a9-584a-abd7-c4a149714bdb
| 608,977
|
$A B C$ is an isosceles triangle with $A B=2$ and $\measuredangle A B C=90^{\circ} . D$ is the midpoint of $B C$ and $E$ is on $A C$ such that the area of $A E D B$ is twice the area of $E C D$. Find the length of $D E$.
|
$\frac{\sqrt{17}}{3}$ Let $F$ be the foot of the perpendicular from $E$ to $B C$. We have $[A E D B]+[E D C]=$ $[A B C]=2 \Rightarrow[E D C]=\frac{2}{3}$. Since we also have $[E D C]=\frac{1}{2}(E F)(D C)$, we get $E F=F C=\frac{4}{3}$. So $F D=\frac{1}{3}$, and $E D=\frac{\sqrt{17}}{3}$ by the Pythagorean Theorem.
|
\frac{\sqrt{17}}{3}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
$A B C$ is an isosceles triangle with $A B=2$ and $\measuredangle A B C=90^{\circ} . D$ is the midpoint of $B C$ and $E$ is on $A C$ such that the area of $A E D B$ is twice the area of $E C D$. Find the length of $D E$.
|
$\frac{\sqrt{17}}{3}$ Let $F$ be the foot of the perpendicular from $E$ to $B C$. We have $[A E D B]+[E D C]=$ $[A B C]=2 \Rightarrow[E D C]=\frac{2}{3}$. Since we also have $[E D C]=\frac{1}{2}(E F)(D C)$, we get $E F=F C=\frac{4}{3}$. So $F D=\frac{1}{3}$, and $E D=\frac{\sqrt{17}}{3}$ by the Pythagorean Theorem.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-geo-solutions.jsonl",
"problem_match": "\n1. ",
"solution_match": "\nAnswer: "
}
|
41dd14b7-5474-5c68-8d4f-438ad7f7c5d0
| 608,979
|
Let $A B C$ be a triangle with $\angle A=90^{\circ}, A B=1$, and $A C=2$. Let $\ell$ be a line through $A$ perpendicular to $B C$, and let the perpendicular bisectors of $A B$ and $A C$ meet $\ell$ at $E$ and $F$, respectively. Find the length of segment $E F$.
|
$\frac{3 \sqrt{5}}{4}$ Let $M, N$ be the midpoints of $A B$ and $A C$, respectively. Then we have $\angle E A B=$ $\angle A C B$ and $\angle E A C=\angle A B C$, so $A E M \sim C B A \Rightarrow A E=\frac{\sqrt{5}}{4}$ and $F A N \sim C B A \Rightarrow A F=\sqrt{5}$. Consequently, $E F=A F-A E=\frac{3 \sqrt{5}}{4}$.
|
\frac{3 \sqrt{5}}{4}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $A B C$ be a triangle with $\angle A=90^{\circ}, A B=1$, and $A C=2$. Let $\ell$ be a line through $A$ perpendicular to $B C$, and let the perpendicular bisectors of $A B$ and $A C$ meet $\ell$ at $E$ and $F$, respectively. Find the length of segment $E F$.
|
$\frac{3 \sqrt{5}}{4}$ Let $M, N$ be the midpoints of $A B$ and $A C$, respectively. Then we have $\angle E A B=$ $\angle A C B$ and $\angle E A C=\angle A B C$, so $A E M \sim C B A \Rightarrow A E=\frac{\sqrt{5}}{4}$ and $F A N \sim C B A \Rightarrow A F=\sqrt{5}$. Consequently, $E F=A F-A E=\frac{3 \sqrt{5}}{4}$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-geo-solutions.jsonl",
"problem_match": "\n2. ",
"solution_match": "\nAnswer: "
}
|
ce6e0c2b-6ded-54aa-abe6-5eabf4562090
| 608,980
|
There are circles $\omega_{1}$ and $\omega_{2}$. They intersect in two points, one of which is the point $A$. $B$ lies on $\omega_{1}$ such that $A B$ is tangent to $\omega_{2}$. The tangent to $\omega_{1}$ at $B$ intersects $\omega_{2}$ at $C$ and $D$, where $D$ is the closer to $B$. $A D$ intersects $\omega_{1}$ again at $E$. If $B D=3$ and $C D=13$, find $E B / E D$.
|
$4 \sqrt{3} / 3$
> [diagram]
By power of a point, $B A=\sqrt{B D \cdot B C}=4 \sqrt{3}$. Also, $D E B \sim D B A$, so $E B / E D=B A / B D=4 \sqrt{3} / 3$.
|
\frac{4 \sqrt{3}}{3}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
There are circles $\omega_{1}$ and $\omega_{2}$. They intersect in two points, one of which is the point $A$. $B$ lies on $\omega_{1}$ such that $A B$ is tangent to $\omega_{2}$. The tangent to $\omega_{1}$ at $B$ intersects $\omega_{2}$ at $C$ and $D$, where $D$ is the closer to $B$. $A D$ intersects $\omega_{1}$ again at $E$. If $B D=3$ and $C D=13$, find $E B / E D$.
|
$4 \sqrt{3} / 3$
> [diagram]
By power of a point, $B A=\sqrt{B D \cdot B C}=4 \sqrt{3}$. Also, $D E B \sim D B A$, so $E B / E D=B A / B D=4 \sqrt{3} / 3$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-geo-solutions.jsonl",
"problem_match": "\n4. ",
"solution_match": "\nAnswer: "
}
|
5189fc83-9ffb-5625-953e-81b29c85ab8b
| 608,982
|
A mouse lives in a circular cage with completely reflective walls. At the edge of this cage, a small flashlight with vertex on the circle whose beam forms an angle of $15^{\circ}$ is centered at an angle of $37.5^{\circ}$ away from the center. The mouse will die in the dark. What fraction of the total area of the cage can keep the mouse alive?

Geometry Test
|
| $\frac{3}{4}$ |
| :---: |
| We claim that the lit region is the entire cage except for a circle of half the radius | of the cage in the center, along with some isolated points on the boundary of the circle and possibly minus a set of area 0 . Note that the region is the same except for a set of area 0 if we disallow the light paths at the very edge of the beam. In that case, we can see that the lit region is an open subset of the disk, as clearly the region after $k$ bounces is open for each $k$ and the union of open sets is again open. We will then show that a dense subset of the claimed region of the cage is lit.
First, let us show that no part of the inner circle is lit. For any given light path, each chord of the circle is the same length, and in particular the minimum distance from the center of the circle is the same on each chord of the path. Since none of the initial chords can come closer than half the cage's radius to the center, the circle with half the cage's radius is indeed dark.
Now we need to show that for each open subset of the outer region, there is a light path passing through it, which will imply that the unlit region outside the small circle contains no open set, and thus has area 0 . To do this, simply consider a light path whose angle away from the center is irrational such that the distance $d$ from the center of the cage to the midpoint of the first chord is sufficiently close to the distance from the center of the cage to a point in the open set we're considering. Each successive chord of the light path can be seen as a rotation of the original one, and since at each step it is translated by an irrational angle, we obtain a dense subset of all the possible chords. This means that we obtain a dense subset of the circumference of the circle of radius $d$ centered at the center of the cage, and in particular a point inside the open set under consideration, as desired.
Therefore, the lit region of the cage is the area outside the concentric circle of half the radius plus or minus some regions of area 0 , which tells us that $\frac{3}{4}$ of the cage is lit.
|
\frac{3}{4}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
A mouse lives in a circular cage with completely reflective walls. At the edge of this cage, a small flashlight with vertex on the circle whose beam forms an angle of $15^{\circ}$ is centered at an angle of $37.5^{\circ}$ away from the center. The mouse will die in the dark. What fraction of the total area of the cage can keep the mouse alive?

Geometry Test
|
| $\frac{3}{4}$ |
| :---: |
| We claim that the lit region is the entire cage except for a circle of half the radius | of the cage in the center, along with some isolated points on the boundary of the circle and possibly minus a set of area 0 . Note that the region is the same except for a set of area 0 if we disallow the light paths at the very edge of the beam. In that case, we can see that the lit region is an open subset of the disk, as clearly the region after $k$ bounces is open for each $k$ and the union of open sets is again open. We will then show that a dense subset of the claimed region of the cage is lit.
First, let us show that no part of the inner circle is lit. For any given light path, each chord of the circle is the same length, and in particular the minimum distance from the center of the circle is the same on each chord of the path. Since none of the initial chords can come closer than half the cage's radius to the center, the circle with half the cage's radius is indeed dark.
Now we need to show that for each open subset of the outer region, there is a light path passing through it, which will imply that the unlit region outside the small circle contains no open set, and thus has area 0 . To do this, simply consider a light path whose angle away from the center is irrational such that the distance $d$ from the center of the cage to the midpoint of the first chord is sufficiently close to the distance from the center of the cage to a point in the open set we're considering. Each successive chord of the light path can be seen as a rotation of the original one, and since at each step it is translated by an irrational angle, we obtain a dense subset of all the possible chords. This means that we obtain a dense subset of the circumference of the circle of radius $d$ centered at the center of the cage, and in particular a point inside the open set under consideration, as desired.
Therefore, the lit region of the cage is the area outside the concentric circle of half the radius plus or minus some regions of area 0 , which tells us that $\frac{3}{4}$ of the cage is lit.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-geo-solutions.jsonl",
"problem_match": "\n5. ",
"solution_match": "\nAnswer: "
}
|
5068c8bc-4093-5eaa-9a5a-b69eb20ca93c
| 608,983
|
Triangle $A B C$ is an equilateral triangle with side length 1 . Let $X_{0}, X_{1}, \ldots$ be an infinite sequence of points such that the following conditions hold:
- $X_{0}$ is the center of $A B C$
- For all $i \geq 0, X_{2 i+1}$ lies on segment $A B$ and $X_{2 i+2}$ lies on segment $A C$.
- For all $i \geq 0, \measuredangle X_{i} X_{i+1} X_{i+2}=90^{\circ}$.
- For all $i \geq 1, X_{i+2}$ lies in triangle $A X_{i} X_{i+1}$.
Find the maximum possible value of $\sum_{i=0}^{\infty}\left|X_{i} X_{i+1}\right|$, where $|P Q|$ is the length of line segment $P Q$.
|
$\sqrt{\frac{\sqrt{6}}{3}}$ Let $Y$ be the foot of the perpendicular from $A$ to $X_{0} X_{1}$ : note that the sum we wish to minimize is simply $X_{0} Y+Y A$. However, it is not difficult to check (for example, by AMGM) that $A Y+Y X_{0} \geq \sqrt{2} A X_{0}=\sqrt{6} / 3$. This may be achieved by making $\angle Y X_{0} A=45^{\circ}$, so that $\angle A X_{1} X_{0}=105^{\circ}$.
|
\sqrt{\frac{\sqrt{6}}{3}}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Triangle $A B C$ is an equilateral triangle with side length 1 . Let $X_{0}, X_{1}, \ldots$ be an infinite sequence of points such that the following conditions hold:
- $X_{0}$ is the center of $A B C$
- For all $i \geq 0, X_{2 i+1}$ lies on segment $A B$ and $X_{2 i+2}$ lies on segment $A C$.
- For all $i \geq 0, \measuredangle X_{i} X_{i+1} X_{i+2}=90^{\circ}$.
- For all $i \geq 1, X_{i+2}$ lies in triangle $A X_{i} X_{i+1}$.
Find the maximum possible value of $\sum_{i=0}^{\infty}\left|X_{i} X_{i+1}\right|$, where $|P Q|$ is the length of line segment $P Q$.
|
$\sqrt{\frac{\sqrt{6}}{3}}$ Let $Y$ be the foot of the perpendicular from $A$ to $X_{0} X_{1}$ : note that the sum we wish to minimize is simply $X_{0} Y+Y A$. However, it is not difficult to check (for example, by AMGM) that $A Y+Y X_{0} \geq \sqrt{2} A X_{0}=\sqrt{6} / 3$. This may be achieved by making $\angle Y X_{0} A=45^{\circ}$, so that $\angle A X_{1} X_{0}=105^{\circ}$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-geo-solutions.jsonl",
"problem_match": "\n6. ",
"solution_match": "\nAnswer: "
}
|
e12fba27-1ac4-55b3-bbff-4c2f7e89c3ad
| 608,984
|
Let $S$ be the set of the points $\left(x_{1}, x_{2}, \ldots, x_{2012}\right)$ in 2012-dimensional space such that $\left|x_{1}\right|+\left|x_{2}\right|+\cdots+$ $\left|x_{2012}\right| \leq 1$. Let $T$ be the set of points in 2012-dimensional space such that $\max _{i=1}^{2012}\left|x_{i}\right|=2$. Let $p$ be a randomly chosen point on $T$. What is the probability that the closest point in $S$ to $p$ is a vertex of $S$ ?
|
$\frac{1}{2^{2011}}$ Note that $T$ is a hypercube in 2012-dimensional space, containing the rotated hyperoctahedron $S$. Let $v$ be a particular vertex of $S$, and we will consider the set of points $x$ on $T$ such that $v$ is the closest point to $x$ in $S$. Let $w$ be another point of $S$ and let $\ell$ be the line between $v$ and $w$. Then in order for $v$ to be the closest point to $x$ in $S$, it must also be so on the region of $\ell$ contained in $S$. This condition is then equivalent to the projection of $x$ lying past $v$ on the line $\ell$, or alternatively that $v$ lies in the opposite halfspace of $w$ defined by the hyperplane perpendicular to $\ell$ and passing through $v$. This can be written algebraically as $(x-v) \cdot(w-v) \leq 0$. Therefore, $v$ is the closest point to $x$ if and only if $(x-v) \cdot(w-v) \leq 0$ for all $w$ in $S$.
Note that these conditions do not depend on where $w$ is on the line, so for each line intersecting $S$ nontrivially, let us choose $w$ such that $w$ lies on the hyperplane $H$ containing all the vertices of $S$ except for $v$ and $-v$. We can further see that the conditions are linear in $w$, so them holding for all $w$
in $H$ is equivalent to them holding on the vertices of the region $S \cap H$, which are simply the vertices of $S$ except for $v$ and $-v$. Let us now compute what these conditions look like.
Without loss of generality, let $v=(1,0, \ldots, 0)$ and $w=(0,1,0, \ldots, 0)$. Then the equation is of the form $(x-v) \cdot(-1,1,0, \ldots, 0) \leq 0$, which we can rewrite as $\left(x_{1}-1, x_{2}, x_{3}, \ldots, x_{2} 012\right) \cdot(-1,1,0, \ldots, 0)=$ $1-x_{1}+x_{2} \leq 0$. For the other choices of $w$, we get the similar conditions that $1-x_{1}+x_{i} \leq 0$ and also $1-x_{1}-x_{i} \leq 0$ for each $i \in\{2, \ldots, 2012\}$. Note that if any $x_{i} \in\{2,-2\}$ for $i \neq 1$, then one of these conditions trivially fails, as it would require $3-x_{1} \leq 0$. Therefore, the only face of $T$ where $x$ can lie is the face defined by $x_{1}=2$, which gives us the conditions that $-1+x_{i} \leq 0$ and $-1-x_{i} \leq 0$, so $x_{i} \in[-1,1]$ for all $i \in\{2, \ldots, 2012\}$. This defines a 2011-dimensional hypercube of side length 2 on the face of $T$ defined by $x_{1}=2$, and we obtain similar regions on each of the other faces corresponding to the other vertices of $S$. Therefore, the volume of the set of $x$ for which $x$ is closest to a vertex is $2 \cdot 2012 \cdot 2^{2011}$ and the volume of all the choices of $x$ is $2 \cdot 2012 \cdot 4^{2011}$, so the desired probability is $\frac{1}{2^{2011}}$.
|
\frac{1}{2^{2011}}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $S$ be the set of the points $\left(x_{1}, x_{2}, \ldots, x_{2012}\right)$ in 2012-dimensional space such that $\left|x_{1}\right|+\left|x_{2}\right|+\cdots+$ $\left|x_{2012}\right| \leq 1$. Let $T$ be the set of points in 2012-dimensional space such that $\max _{i=1}^{2012}\left|x_{i}\right|=2$. Let $p$ be a randomly chosen point on $T$. What is the probability that the closest point in $S$ to $p$ is a vertex of $S$ ?
|
$\frac{1}{2^{2011}}$ Note that $T$ is a hypercube in 2012-dimensional space, containing the rotated hyperoctahedron $S$. Let $v$ be a particular vertex of $S$, and we will consider the set of points $x$ on $T$ such that $v$ is the closest point to $x$ in $S$. Let $w$ be another point of $S$ and let $\ell$ be the line between $v$ and $w$. Then in order for $v$ to be the closest point to $x$ in $S$, it must also be so on the region of $\ell$ contained in $S$. This condition is then equivalent to the projection of $x$ lying past $v$ on the line $\ell$, or alternatively that $v$ lies in the opposite halfspace of $w$ defined by the hyperplane perpendicular to $\ell$ and passing through $v$. This can be written algebraically as $(x-v) \cdot(w-v) \leq 0$. Therefore, $v$ is the closest point to $x$ if and only if $(x-v) \cdot(w-v) \leq 0$ for all $w$ in $S$.
Note that these conditions do not depend on where $w$ is on the line, so for each line intersecting $S$ nontrivially, let us choose $w$ such that $w$ lies on the hyperplane $H$ containing all the vertices of $S$ except for $v$ and $-v$. We can further see that the conditions are linear in $w$, so them holding for all $w$
in $H$ is equivalent to them holding on the vertices of the region $S \cap H$, which are simply the vertices of $S$ except for $v$ and $-v$. Let us now compute what these conditions look like.
Without loss of generality, let $v=(1,0, \ldots, 0)$ and $w=(0,1,0, \ldots, 0)$. Then the equation is of the form $(x-v) \cdot(-1,1,0, \ldots, 0) \leq 0$, which we can rewrite as $\left(x_{1}-1, x_{2}, x_{3}, \ldots, x_{2} 012\right) \cdot(-1,1,0, \ldots, 0)=$ $1-x_{1}+x_{2} \leq 0$. For the other choices of $w$, we get the similar conditions that $1-x_{1}+x_{i} \leq 0$ and also $1-x_{1}-x_{i} \leq 0$ for each $i \in\{2, \ldots, 2012\}$. Note that if any $x_{i} \in\{2,-2\}$ for $i \neq 1$, then one of these conditions trivially fails, as it would require $3-x_{1} \leq 0$. Therefore, the only face of $T$ where $x$ can lie is the face defined by $x_{1}=2$, which gives us the conditions that $-1+x_{i} \leq 0$ and $-1-x_{i} \leq 0$, so $x_{i} \in[-1,1]$ for all $i \in\{2, \ldots, 2012\}$. This defines a 2011-dimensional hypercube of side length 2 on the face of $T$ defined by $x_{1}=2$, and we obtain similar regions on each of the other faces corresponding to the other vertices of $S$. Therefore, the volume of the set of $x$ for which $x$ is closest to a vertex is $2 \cdot 2012 \cdot 2^{2011}$ and the volume of all the choices of $x$ is $2 \cdot 2012 \cdot 4^{2011}$, so the desired probability is $\frac{1}{2^{2011}}$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-geo-solutions.jsonl",
"problem_match": "\n7. ",
"solution_match": "\nAnswer: "
}
|
3824414f-27c7-546d-97a0-f4fc99f36482
| 608,985
|
Let $O, O_{1}, O_{2}, O_{3}, O_{4}$ be points such that $O_{1}, O, O_{3}$ and $O_{2}, O, O_{4}$ are collinear in that order, $O O_{1}=$ $1, O O_{2}=2, O O_{3}=\sqrt{2}, O O_{4}=2$, and $\measuredangle O_{1} O O_{2}=45^{\circ}$. Let $\omega_{1}, \omega_{2}, \omega_{3}, \omega_{4}$ be the circles with respective centers $O_{1}, O_{2}, O_{3}, O_{4}$ that go through $O$. Let $A$ be the intersection of $\omega_{1}$ and $\omega_{2}, B$ be the intersection of $\omega_{2}$ and $\omega_{3}, C$ be the intersection of $\omega_{3}$ and $\omega_{4}$, and $D$ be the intersection of $\omega_{4}$ and $\omega_{1}$, with $A, B, C, D$ all distinct from $O$. What is the largest possible area of a convex quadrilateral $P_{1} P_{2} P_{3} P_{4}$ such that $P_{i}$ lies on $O_{i}$ and that $A, B, C, D$ all lie on its perimeter?
|
$8+4 \sqrt{2}$ We first maximize the area of triangle $P_{1} O P_{2}$, noting that the sum of the area of $P_{1} O P_{2}$ and the three other analogous triangles is the area of $P_{1} P_{2} P_{3} P_{4}$. Note that if $A \neq P_{1}, P_{2}$, without loss of generality say $\angle O A P_{1}<90^{\circ}$. Then, $\angle O O_{1} P_{1}=2 \angle O A P_{1}$, and since $\angle O A P_{2}=180^{\circ}-\angle O A P_{1}>$ $90^{\circ}$, we see that $\angle O O_{2} P_{2}=2 \angle O A P_{1}$ as well, and it follows that $O O_{1} P_{1} \sim O O_{2} P_{2}$. This is a spiral similarity, so $O O_{1} O_{2} \sim O P_{1} P_{2}$, and in particular $\angle P_{1} O P_{2}=\angle O_{1} O O_{2}$, which is fixed. By the sine area formula, to maximize $O P_{1} \cdot O P_{2}$, which is bounded above by the diameters $2\left(O O_{1}\right), 2\left(O O_{2}\right)$. In a similar way, we want $P_{3}, P_{4}$ to be diametrically opposite $O_{3}, O_{4}$ in their respective circles.
When we take these $P_{i}$, we indeed have $A \in P_{1} P_{2}$ and similarly for $B, C, D$, since $\angle O A P_{1}=\angle O A P_{2}=$ $90^{\circ}$. To finish, the area of the quadrilateral is the sum of the areas of the four triangles, which is
$$
\frac{1}{2} \cdot \frac{\sqrt{2}}{2} \cdot 2^{2} \cdot(1 \cdot 2+2 \cdot \sqrt{2}+\sqrt{2} \cdot 2+2 \cdot 1)=8+4 \sqrt{2} .
$$
|
8+4 \sqrt{2}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $O, O_{1}, O_{2}, O_{3}, O_{4}$ be points such that $O_{1}, O, O_{3}$ and $O_{2}, O, O_{4}$ are collinear in that order, $O O_{1}=$ $1, O O_{2}=2, O O_{3}=\sqrt{2}, O O_{4}=2$, and $\measuredangle O_{1} O O_{2}=45^{\circ}$. Let $\omega_{1}, \omega_{2}, \omega_{3}, \omega_{4}$ be the circles with respective centers $O_{1}, O_{2}, O_{3}, O_{4}$ that go through $O$. Let $A$ be the intersection of $\omega_{1}$ and $\omega_{2}, B$ be the intersection of $\omega_{2}$ and $\omega_{3}, C$ be the intersection of $\omega_{3}$ and $\omega_{4}$, and $D$ be the intersection of $\omega_{4}$ and $\omega_{1}$, with $A, B, C, D$ all distinct from $O$. What is the largest possible area of a convex quadrilateral $P_{1} P_{2} P_{3} P_{4}$ such that $P_{i}$ lies on $O_{i}$ and that $A, B, C, D$ all lie on its perimeter?
|
$8+4 \sqrt{2}$ We first maximize the area of triangle $P_{1} O P_{2}$, noting that the sum of the area of $P_{1} O P_{2}$ and the three other analogous triangles is the area of $P_{1} P_{2} P_{3} P_{4}$. Note that if $A \neq P_{1}, P_{2}$, without loss of generality say $\angle O A P_{1}<90^{\circ}$. Then, $\angle O O_{1} P_{1}=2 \angle O A P_{1}$, and since $\angle O A P_{2}=180^{\circ}-\angle O A P_{1}>$ $90^{\circ}$, we see that $\angle O O_{2} P_{2}=2 \angle O A P_{1}$ as well, and it follows that $O O_{1} P_{1} \sim O O_{2} P_{2}$. This is a spiral similarity, so $O O_{1} O_{2} \sim O P_{1} P_{2}$, and in particular $\angle P_{1} O P_{2}=\angle O_{1} O O_{2}$, which is fixed. By the sine area formula, to maximize $O P_{1} \cdot O P_{2}$, which is bounded above by the diameters $2\left(O O_{1}\right), 2\left(O O_{2}\right)$. In a similar way, we want $P_{3}, P_{4}$ to be diametrically opposite $O_{3}, O_{4}$ in their respective circles.
When we take these $P_{i}$, we indeed have $A \in P_{1} P_{2}$ and similarly for $B, C, D$, since $\angle O A P_{1}=\angle O A P_{2}=$ $90^{\circ}$. To finish, the area of the quadrilateral is the sum of the areas of the four triangles, which is
$$
\frac{1}{2} \cdot \frac{\sqrt{2}}{2} \cdot 2^{2} \cdot(1 \cdot 2+2 \cdot \sqrt{2}+\sqrt{2} \cdot 2+2 \cdot 1)=8+4 \sqrt{2} .
$$
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-geo-solutions.jsonl",
"problem_match": "\n9. ",
"solution_match": "\nAnswer: "
}
|
aab31c58-f1c1-5e5b-892a-e432f879832b
| 608,987
|
Square $A B C D$ has side length 2 , and $X$ is a point outside the square such that $A X=X B=\sqrt{2}$. What is the length of the longest diagonal of pentagon $A X B C D$ ?
|
$\sqrt{10}$ Since $A X=X B=\sqrt{2}$ and $A B=2$, we have $\angle A X B=90^{\circ}$. Hence, the distance from $X$ to $A B$ is 1 and the distance from $X$ to $C D$ is 3 . By inspection, the largest diagonals are thus $B X=C X=\sqrt{3^{2}+1^{2}}$.
|
\sqrt{10}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Square $A B C D$ has side length 2 , and $X$ is a point outside the square such that $A X=X B=\sqrt{2}$. What is the length of the longest diagonal of pentagon $A X B C D$ ?
|
$\sqrt{10}$ Since $A X=X B=\sqrt{2}$ and $A B=2$, we have $\angle A X B=90^{\circ}$. Hence, the distance from $X$ to $A B$ is 1 and the distance from $X$ to $C D$ is 3 . By inspection, the largest diagonals are thus $B X=C X=\sqrt{3^{2}+1^{2}}$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n1. [2]",
"solution_match": "\nAnswer: "
}
|
ef541ef5-b57b-5504-9597-b360918299d3
| 608,989
|
Let $a_{0}, a_{1}, a_{2}, \ldots$ denote the sequence of real numbers such that $a_{0}=2$ and $a_{n+1}=\frac{a_{n}}{1+a_{n}}$ for $n \geq 0$. Compute $a_{2012}$.
|
$\frac{2}{4025}$ Calculating out the first few terms, note that they follow the pattern $a_{n}=\frac{2}{2 n+1}$. Plugging this back into the recursion shows that it indeed works.
|
\frac{2}{4025}
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let $a_{0}, a_{1}, a_{2}, \ldots$ denote the sequence of real numbers such that $a_{0}=2$ and $a_{n+1}=\frac{a_{n}}{1+a_{n}}$ for $n \geq 0$. Compute $a_{2012}$.
|
$\frac{2}{4025}$ Calculating out the first few terms, note that they follow the pattern $a_{n}=\frac{2}{2 n+1}$. Plugging this back into the recursion shows that it indeed works.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n2. [2]",
"solution_match": "\nAnswer: "
}
|
916a65a8-4cb1-5fdd-b98d-0d5a6072ce2a
| 608,990
|
Luna has an infinite supply of red, blue, orange, and green socks. She wants to arrange 2012 socks in a line such that no red sock is adjacent to a blue sock and no orange sock is adjacent to a green sock. How many ways can she do this?
|
$4 \cdot 3^{2011}$ Luna has 4 choices for the first sock. After that, she has 3 choices for each of 2011 remaining socks for a total of $4 \cdot 3^{2011}$.
|
4 \cdot 3^{2011}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Luna has an infinite supply of red, blue, orange, and green socks. She wants to arrange 2012 socks in a line such that no red sock is adjacent to a blue sock and no orange sock is adjacent to a green sock. How many ways can she do this?
|
$4 \cdot 3^{2011}$ Luna has 4 choices for the first sock. After that, she has 3 choices for each of 2011 remaining socks for a total of $4 \cdot 3^{2011}$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n4. [2]",
"solution_match": "\nAnswer: "
}
|
f6884463-c8fb-57de-80ea-45e968596f75
| 608,992
|
Mr. Canada chooses a positive real $a$ uniformly at random from $(0,1]$, chooses a positive real $b$ uniformly at random from $(0,1]$, and then sets $c=a /(a+b)$. What is the probability that $c$ lies between $1 / 4$ and $3 / 4$ ?
|
$2 / 3$ From $c \geq 1 / 4$ we get
$$
\frac{a}{a+b} \geq \frac{1}{4} \Longleftrightarrow b \leq 3 a
$$
and similarly $c \leq 3 / 4$ gives
$$
\frac{a}{a+b} \leq \frac{3}{4} \Longleftrightarrow a \leq 3 b
$$
Choosing $a$ and $b$ randomly from $[0,1]$ is equivalent to choosing a single point uniformly and randomly from the unit square, with $a$ on the horizontal axis and $b$ on the vertical axis:

To find the probability that $b \leq 3 a$ and $a \leq 3 b$, we need to find the area of the shaded region of the square. The area of each of the triangles on the side is $(1 / 2)(1)(1 / 3)=1 / 6$, and so the area of the shaded region is $1-2(1 / 6)=2 / 3$.
|
\frac{2}{3}
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Mr. Canada chooses a positive real $a$ uniformly at random from $(0,1]$, chooses a positive real $b$ uniformly at random from $(0,1]$, and then sets $c=a /(a+b)$. What is the probability that $c$ lies between $1 / 4$ and $3 / 4$ ?
|
$2 / 3$ From $c \geq 1 / 4$ we get
$$
\frac{a}{a+b} \geq \frac{1}{4} \Longleftrightarrow b \leq 3 a
$$
and similarly $c \leq 3 / 4$ gives
$$
\frac{a}{a+b} \leq \frac{3}{4} \Longleftrightarrow a \leq 3 b
$$
Choosing $a$ and $b$ randomly from $[0,1]$ is equivalent to choosing a single point uniformly and randomly from the unit square, with $a$ on the horizontal axis and $b$ on the vertical axis:

To find the probability that $b \leq 3 a$ and $a \leq 3 b$, we need to find the area of the shaded region of the square. The area of each of the triangles on the side is $(1 / 2)(1)(1 / 3)=1 / 6$, and so the area of the shaded region is $1-2(1 / 6)=2 / 3$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n5. [3]",
"solution_match": "\nAnswer: "
}
|
52233e73-f1f2-55d7-a132-7d3cb7ceea29
| 608,993
|
Let rectangle $A B C D$ have lengths $A B=20$ and $B C=12$. Extend ray $B C$ to $Z$ such that $C Z=18$. Let $E$ be the point in the interior of $A B C D$ such that the perpendicular distance from $E$ to $\overline{A B}$ is 6 and the perpendicular distance from $E$ to $\overline{A D}$ is 6 . Let line $E Z$ intersect $A B$ at $X$ and $C D$ at $Y$. Find the area of quadrilateral $A X Y D$.
|
72 Draw the line parallel to $\overline{A D}$ through $E$, intersecting $\overline{A B}$ at $F$ and $\overline{C D}$ at $G$. It is clear that $X F E$ and $Y G E$ are congruent, so the area of $A X Y D$ is equal to that of $A F G D$. But $A F G D$ is simply a 12 by 6 rectangle, so the answer must be 72 . (Note: It is also possible to directly compute the values of $A X$ and $D Y$, then use the formula for the area of a trapezoid.)
|
72
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let rectangle $A B C D$ have lengths $A B=20$ and $B C=12$. Extend ray $B C$ to $Z$ such that $C Z=18$. Let $E$ be the point in the interior of $A B C D$ such that the perpendicular distance from $E$ to $\overline{A B}$ is 6 and the perpendicular distance from $E$ to $\overline{A D}$ is 6 . Let line $E Z$ intersect $A B$ at $X$ and $C D$ at $Y$. Find the area of quadrilateral $A X Y D$.
|
72 Draw the line parallel to $\overline{A D}$ through $E$, intersecting $\overline{A B}$ at $F$ and $\overline{C D}$ at $G$. It is clear that $X F E$ and $Y G E$ are congruent, so the area of $A X Y D$ is equal to that of $A F G D$. But $A F G D$ is simply a 12 by 6 rectangle, so the answer must be 72 . (Note: It is also possible to directly compute the values of $A X$ and $D Y$, then use the formula for the area of a trapezoid.)
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n6. [3]",
"solution_match": "\nAnswer: "
}
|
0bd90cbf-134e-51b5-8701-bf8156c8c10f
| 608,994
|
$M$ is an $8 \times 8$ matrix. For $1 \leq i \leq 8$, all entries in row $i$ are at least $i$, and all entries on column $i$ are at least $i$. What is the minimum possible sum of the entries of $M$ ?
|
372 Let $s_{n}$ be the minimum possible sum for an $n$ by $n$ matrix. Then, we note that increasing it by adding row $n+1$ and column $n+1$ gives $2 n+1$ additional entries, each of which has minimal size at least $n+1$. Consequently, we obtain $s_{n+1}=s_{n}+(2 n+1)(n+1)=s_{n}+2 n^{2}+3 n+1$. Since $s_{0}=0$, we get that $s_{8}=2\left(7^{2}+\ldots+0^{2}\right)+3(7+\ldots+0)+8=372$.
|
372
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
$M$ is an $8 \times 8$ matrix. For $1 \leq i \leq 8$, all entries in row $i$ are at least $i$, and all entries on column $i$ are at least $i$. What is the minimum possible sum of the entries of $M$ ?
|
372 Let $s_{n}$ be the minimum possible sum for an $n$ by $n$ matrix. Then, we note that increasing it by adding row $n+1$ and column $n+1$ gives $2 n+1$ additional entries, each of which has minimal size at least $n+1$. Consequently, we obtain $s_{n+1}=s_{n}+(2 n+1)(n+1)=s_{n}+2 n^{2}+3 n+1$. Since $s_{0}=0$, we get that $s_{8}=2\left(7^{2}+\ldots+0^{2}\right)+3(7+\ldots+0)+8=372$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n7. [3]",
"solution_match": "\nAnswer: "
}
|
b24eea77-e114-5ec5-b39f-cf2390f2cd1b
| 608,995
|
Amy and Ben need to eat 1000 total carrots and 1000 total muffins. The muffins can not be eaten until all the carrots are eaten. Furthermore, Amy can not eat a muffin within 5 minutes of eating a carrot and neither can Ben. If Amy eats 40 carrots per minute and 70 muffins per minute and Ben eats 60 carrots per minute and 30 muffins per minute, what is the minimum number of minutes it will take them to finish the food?
|
23.5 or $47 / 2$ Amy and Ben will continuously eat carrots, then stop (not necessarily at the same time), and continuously eat muffins until no food is left. Suppose that Amy and Ben finish eating the carrots in $T_{1}$ minutes and the muffins $T_{2}$ minutes later; we wish to find the minimum value of $T_{1}+T_{2}$. Furthermore, suppose Amy finishes eating the carrots at time $a_{1}$, and Ben does so at time $b_{1}$, so that $T_{1}=\max \left(a_{1}, b_{1}\right)$.
First, suppose that $a_{1} \leq b_{1}$, and let $b_{1}-a_{1}=c$. We have $40\left(T_{1}-c\right)+60 T_{1}=1000$, so $T_{1}$ is minimized when $c=0$. Also, $30\left(T_{2}-5\right)+70\left(T_{2}-\max (5-c, 0)\right)=1000$. Wee see that $T_{1}+T_{2}$ is minimized when $c=5$, and $T_{1}+T_{2}=23.5$. In a similar way, we see that when $b_{1} \leq a_{1}, T_{1}+T_{2}>23.5$, so our answer is 23.5 .
|
23.5
|
Yes
|
Yes
|
math-word-problem
|
Logic and Puzzles
|
Amy and Ben need to eat 1000 total carrots and 1000 total muffins. The muffins can not be eaten until all the carrots are eaten. Furthermore, Amy can not eat a muffin within 5 minutes of eating a carrot and neither can Ben. If Amy eats 40 carrots per minute and 70 muffins per minute and Ben eats 60 carrots per minute and 30 muffins per minute, what is the minimum number of minutes it will take them to finish the food?
|
23.5 or $47 / 2$ Amy and Ben will continuously eat carrots, then stop (not necessarily at the same time), and continuously eat muffins until no food is left. Suppose that Amy and Ben finish eating the carrots in $T_{1}$ minutes and the muffins $T_{2}$ minutes later; we wish to find the minimum value of $T_{1}+T_{2}$. Furthermore, suppose Amy finishes eating the carrots at time $a_{1}$, and Ben does so at time $b_{1}$, so that $T_{1}=\max \left(a_{1}, b_{1}\right)$.
First, suppose that $a_{1} \leq b_{1}$, and let $b_{1}-a_{1}=c$. We have $40\left(T_{1}-c\right)+60 T_{1}=1000$, so $T_{1}$ is minimized when $c=0$. Also, $30\left(T_{2}-5\right)+70\left(T_{2}-\max (5-c, 0)\right)=1000$. Wee see that $T_{1}+T_{2}$ is minimized when $c=5$, and $T_{1}+T_{2}=23.5$. In a similar way, we see that when $b_{1} \leq a_{1}, T_{1}+T_{2}>23.5$, so our answer is 23.5 .
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n8. [3]",
"solution_match": "\nAnswer: "
}
|
6a422f9a-8897-5301-a975-8a14f0ec782e
| 608,996
|
Let $P$ be a polynomial such that $P(x)=P(0)+P(1) x+P(2) x^{2}$ and $P(-1)=1$. Compute $P(3)$.
|
5 Plugging in $x=-1,1,2$ results in the trio of equations $1=P(-1)=P(0)-P(1)+P(2)$, $P(1)=P(0)+P(1)+P(2) \Rightarrow P(1)+P(2)=0$, and $P(2)=P(0)+2 P(1)+4 P(2)$. Solving these as a system of equations in $P(0), P(1), P(2)$ gives $P(0)=-1, P(1)=-1, P(2)=1$. Consequently, $P(x)=x^{2}-x-1 \Rightarrow P(3)=5$.
|
5
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let $P$ be a polynomial such that $P(x)=P(0)+P(1) x+P(2) x^{2}$ and $P(-1)=1$. Compute $P(3)$.
|
5 Plugging in $x=-1,1,2$ results in the trio of equations $1=P(-1)=P(0)-P(1)+P(2)$, $P(1)=P(0)+P(1)+P(2) \Rightarrow P(1)+P(2)=0$, and $P(2)=P(0)+2 P(1)+4 P(2)$. Solving these as a system of equations in $P(0), P(1), P(2)$ gives $P(0)=-1, P(1)=-1, P(2)=1$. Consequently, $P(x)=x^{2}-x-1 \Rightarrow P(3)=5$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n10. [5]",
"solution_match": "\nAnswer: "
}
|
d30a2b0b-292e-5dcd-ad14-b3e4b8e7d8a1
| 608,998
|
Knot is on an epic quest to save the land of Hyruler from the evil Gammadorf. To do this, he must collect the two pieces of the Lineforce, then go to the Temple of Lime. As shown on the figure, Knot starts on point $K$, and must travel to point $T$, where $O K=2$ and $O T=4$. However, he must first reach both solid lines in the figure below to collect the pieces of the Lineforce. What is the minimal distance Knot must travel to do so?

|
$2 \sqrt{5}$ Let $l_{1}$ and $l_{2}$ be the lines as labeled in the above diagram. First, suppose Knot visits $l_{1}$ first, at point $P_{1}$, then $l_{2}$, at point $P_{2}$. Let $K^{\prime}$ be the reflection of $K$ over $l_{1}$, and let $T^{\prime}$ be the reflection of $T$ over $l_{2}$. The length of Knot's path is at least
$$
K P_{1}+P_{1} P_{2}+P_{2} T=K^{\prime} P_{1}+P_{1} P_{2}+P_{2} T^{\prime} \geq K^{\prime} T^{\prime}
$$
by the Triangle Inequality (This bound can be achieved by taking $P_{1}, P_{2}$ to be the intersections of $K^{\prime} T^{\prime}$ with $l_{1}, l_{2}$, respectively.) Also, note that $\measuredangle K^{\prime} O T^{\prime}=90^{\circ}$, so that $K^{\prime} T^{\prime}=2 \sqrt{5}$.
Now, suppose Knot instead visits $l_{2}$ first, at point $Q_{2}$, then $l_{1}$, at point $Q_{1}$. Letting $K^{\prime \prime}$ be the reflection of $K$ over $l_{2}$ and $T^{\prime \prime}$ be the reflection of $T$ over $l_{1}$, by similar logic to before the length of his path is at least the length of $K^{\prime \prime} T^{\prime \prime}$. However, by inspection $K^{\prime \prime} T^{\prime \prime}>K^{\prime} T^{\prime}$, so our answer is $2 \sqrt{5}$.
|
2 \sqrt{5}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Knot is on an epic quest to save the land of Hyruler from the evil Gammadorf. To do this, he must collect the two pieces of the Lineforce, then go to the Temple of Lime. As shown on the figure, Knot starts on point $K$, and must travel to point $T$, where $O K=2$ and $O T=4$. However, he must first reach both solid lines in the figure below to collect the pieces of the Lineforce. What is the minimal distance Knot must travel to do so?

|
$2 \sqrt{5}$ Let $l_{1}$ and $l_{2}$ be the lines as labeled in the above diagram. First, suppose Knot visits $l_{1}$ first, at point $P_{1}$, then $l_{2}$, at point $P_{2}$. Let $K^{\prime}$ be the reflection of $K$ over $l_{1}$, and let $T^{\prime}$ be the reflection of $T$ over $l_{2}$. The length of Knot's path is at least
$$
K P_{1}+P_{1} P_{2}+P_{2} T=K^{\prime} P_{1}+P_{1} P_{2}+P_{2} T^{\prime} \geq K^{\prime} T^{\prime}
$$
by the Triangle Inequality (This bound can be achieved by taking $P_{1}, P_{2}$ to be the intersections of $K^{\prime} T^{\prime}$ with $l_{1}, l_{2}$, respectively.) Also, note that $\measuredangle K^{\prime} O T^{\prime}=90^{\circ}$, so that $K^{\prime} T^{\prime}=2 \sqrt{5}$.
Now, suppose Knot instead visits $l_{2}$ first, at point $Q_{2}$, then $l_{1}$, at point $Q_{1}$. Letting $K^{\prime \prime}$ be the reflection of $K$ over $l_{2}$ and $T^{\prime \prime}$ be the reflection of $T$ over $l_{1}$, by similar logic to before the length of his path is at least the length of $K^{\prime \prime} T^{\prime \prime}$. However, by inspection $K^{\prime \prime} T^{\prime \prime}>K^{\prime} T^{\prime}$, so our answer is $2 \sqrt{5}$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n11. [5]",
"solution_match": "\nAnswer: "
}
|
056f4a2a-637e-5f47-9e39-22354cdaad5b
| 608,999
|
Knot is ready to face Gammadorf in a card game. In this game, there is a deck with twenty cards numbered from 1 to 20. Each player starts with a five card hand drawn from this deck. In each round, Gammadorf plays a card in his hand, then Knot plays a card in his hand. Whoever played a card with greater value gets a point. At the end of five rounds, the player with the most points wins. If Gammadorf starts with a hand of $1,5,10,15,20$, how many five-card hands of the fifteen remaining cards can Knot draw which always let Knot win (assuming he plays optimally)?
|
2982 Knot can only lose if all of his cards are lower than 10; if not he can win by playing the lowest card that beats Gammadorf's card, or if this is not possible, his lowest card, each turn. There are $\binom{7}{5}=21$ losing hands, so he has $\binom{15}{5}-\binom{7}{5}$ possible winning hands.
|
2982
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Knot is ready to face Gammadorf in a card game. In this game, there is a deck with twenty cards numbered from 1 to 20. Each player starts with a five card hand drawn from this deck. In each round, Gammadorf plays a card in his hand, then Knot plays a card in his hand. Whoever played a card with greater value gets a point. At the end of five rounds, the player with the most points wins. If Gammadorf starts with a hand of $1,5,10,15,20$, how many five-card hands of the fifteen remaining cards can Knot draw which always let Knot win (assuming he plays optimally)?
|
2982 Knot can only lose if all of his cards are lower than 10; if not he can win by playing the lowest card that beats Gammadorf's card, or if this is not possible, his lowest card, each turn. There are $\binom{7}{5}=21$ losing hands, so he has $\binom{15}{5}-\binom{7}{5}$ possible winning hands.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n12. [5]",
"solution_match": "\nAnswer: "
}
|
ed960d0c-abf3-543f-8bb8-15ce6fa58957
| 609,000
|
Niffy's favorite number is a positive integer, and Stebbysaurus is trying to guess what it is. Niffy tells her that when expressed in decimal without any leading zeros, her favorite number satisfies the following:
- Adding 1 to the number results in an integer divisible by 210 .
- The sum of the digits of the number is twice its number of digits.
- The number has no more than 12 digits.
- The number alternates in even and odd digits.
Given this information, what are all possible values of Niffy's favorite number?
|
1010309 Note that Niffy's favorite number must end in 9, since adding 1 makes it divisible by 10. Also, the sum of the digits of Niffy's favorite number must be even (because it is equal to twice the number of digits) and congruent to 2 modulo 3 (because adding 1 gives a multiple of 3 ). Furthermore, the sum of digits can be at most 24, because there at most 12 digits in Niffy's favorite number, and must be at least 9, because the last digit is 9 . This gives the possible sums of digits 14 and 20. However, if the sum of the digits of the integer is 20 , there are 10 digits, exactly 5 of which are odd, giving an odd sum of digits, which is impossible. Thus, Niffy's favorite number is a 7 digit number with sum of digits 14 .
The integers which we seek must be of the form $\overline{A B C D E F 9}$, where $A, C, E$ are odd, $B, D, F$ are even, and $A+B+C+D+E+F=5$. Now, note that $\{A, C, E\}=\{1,1,1\}$ or $\{1,1,3\}$, and these correspond to $\{B, D, F\}=\{0,0,2\}$ and $\{0,0,0\}$, respectively. It suffices to determine which of these six integers are congruent to $-1(\bmod 7)$, and we see that Niffy's favorite number must be 1010309.
|
1010309
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Niffy's favorite number is a positive integer, and Stebbysaurus is trying to guess what it is. Niffy tells her that when expressed in decimal without any leading zeros, her favorite number satisfies the following:
- Adding 1 to the number results in an integer divisible by 210 .
- The sum of the digits of the number is twice its number of digits.
- The number has no more than 12 digits.
- The number alternates in even and odd digits.
Given this information, what are all possible values of Niffy's favorite number?
|
1010309 Note that Niffy's favorite number must end in 9, since adding 1 makes it divisible by 10. Also, the sum of the digits of Niffy's favorite number must be even (because it is equal to twice the number of digits) and congruent to 2 modulo 3 (because adding 1 gives a multiple of 3 ). Furthermore, the sum of digits can be at most 24, because there at most 12 digits in Niffy's favorite number, and must be at least 9, because the last digit is 9 . This gives the possible sums of digits 14 and 20. However, if the sum of the digits of the integer is 20 , there are 10 digits, exactly 5 of which are odd, giving an odd sum of digits, which is impossible. Thus, Niffy's favorite number is a 7 digit number with sum of digits 14 .
The integers which we seek must be of the form $\overline{A B C D E F 9}$, where $A, C, E$ are odd, $B, D, F$ are even, and $A+B+C+D+E+F=5$. Now, note that $\{A, C, E\}=\{1,1,1\}$ or $\{1,1,3\}$, and these correspond to $\{B, D, F\}=\{0,0,2\}$ and $\{0,0,0\}$, respectively. It suffices to determine which of these six integers are congruent to $-1(\bmod 7)$, and we see that Niffy's favorite number must be 1010309.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n13. [7]",
"solution_match": "\nAnswer: "
}
|
c808c1db-9976-524b-97bb-e4f05463fe1c
| 609,001
|
Let triangle $A B C$ have $A B=5, B C=6$, and $A C=7$, with circumcenter $O$. Extend ray $A B$ to point $D$ such that $B D=5$, and extend ray $B C$ to point $E$ such that $O D=O E$. Find $C E$.
|
$\sqrt{59}-3$ Because $O D=O E, D$ and $E$ have equal power with respect to the circle, so $(E C)(E B)=(D B)(D A)=50$. Letting $E C=x$, we have $x(x+6)=50$, and taking the positive root gives $x=\sqrt{59}-3$.
|
\sqrt{59}-3
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let triangle $A B C$ have $A B=5, B C=6$, and $A C=7$, with circumcenter $O$. Extend ray $A B$ to point $D$ such that $B D=5$, and extend ray $B C$ to point $E$ such that $O D=O E$. Find $C E$.
|
$\sqrt{59}-3$ Because $O D=O E, D$ and $E$ have equal power with respect to the circle, so $(E C)(E B)=(D B)(D A)=50$. Letting $E C=x$, we have $x(x+6)=50$, and taking the positive root gives $x=\sqrt{59}-3$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n14. [7]",
"solution_match": "\nAnswer: "
}
|
a5765534-0a94-522e-8437-a168357a547f
| 609,002
|
Let $f(x)=x^{2}+a x+b$ and $g(x)=x^{2}+c x+d$ be two distinct real polynomials such that the $x$-coordinate of the vertex of $f$ is a root of $g$, the $x$-coordinate of the vertex of $g$ is a root of $f$ and both $f$ and $g$ have the same minimum value. If the graphs of the two polynomials intersect at the point (2012, -2012), what is the value of $a+c$ ?
|
-8048 It is clear, by symmetry, that 2012 is the equidistant from the vertices of the two quadratics. Then it is clear that reflecting $f$ about the line $x=2012$ yields $g$ and vice versa. Thus the average of each pair of roots is 2012 . Thus the sum of the four roots of $f$ and $g$ is 8048 , so $a+c=-8048$.
|
-8048
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let $f(x)=x^{2}+a x+b$ and $g(x)=x^{2}+c x+d$ be two distinct real polynomials such that the $x$-coordinate of the vertex of $f$ is a root of $g$, the $x$-coordinate of the vertex of $g$ is a root of $f$ and both $f$ and $g$ have the same minimum value. If the graphs of the two polynomials intersect at the point (2012, -2012), what is the value of $a+c$ ?
|
-8048 It is clear, by symmetry, that 2012 is the equidistant from the vertices of the two quadratics. Then it is clear that reflecting $f$ about the line $x=2012$ yields $g$ and vice versa. Thus the average of each pair of roots is 2012 . Thus the sum of the four roots of $f$ and $g$ is 8048 , so $a+c=-8048$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n15. [7]",
"solution_match": "\nAnswer: "
}
|
35bc52e4-70f0-5151-9834-35b1018f6682
| 609,003
|
Let $A, B, C$, and $D$ be points randomly selected independently and uniformly within the unit square. What is the probability that the six lines $\overline{A B}, \overline{A C}, \overline{A D}, \overline{B C}, \overline{B D}$, and $\overline{C D}$ all have positive slope?
|
$\frac{1}{24}$ Consider the sets of $x$-coordinates and $y$-coordinates of the points. In order to make 6 lines of positive slope, we must have smallest $x$-coordinate must be paired with the smallest $y$-coordinate, the second smallest together, and so forth. If we fix the order of the $x$-coordinates, the probability that the corresponding $y$-coordinates are in the same order is $1 / 24$.
|
\frac{1}{24}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Let $A, B, C$, and $D$ be points randomly selected independently and uniformly within the unit square. What is the probability that the six lines $\overline{A B}, \overline{A C}, \overline{A D}, \overline{B C}, \overline{B D}$, and $\overline{C D}$ all have positive slope?
|
$\frac{1}{24}$ Consider the sets of $x$-coordinates and $y$-coordinates of the points. In order to make 6 lines of positive slope, we must have smallest $x$-coordinate must be paired with the smallest $y$-coordinate, the second smallest together, and so forth. If we fix the order of the $x$-coordinates, the probability that the corresponding $y$-coordinates are in the same order is $1 / 24$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n16. [7]",
"solution_match": "\nAnswer: "
}
|
8cbf485d-4ef7-5c84-baa6-53377ea9070c
| 609,004
|
Mark and William are playing a game. Two walls are placed 1 meter apart, with Mark and William each starting an orb at one of the walls. Simultaneously, they release their orbs directly toward the other. Both orbs are enchanted such that, upon colliding with each other, they instantly reverse direction and go at double their previous speed. Furthermore, Mark has enchanted his orb so that when it collides with a wall it instantly reverses direction and goes at double its previous speed (William's reverses direction at the same speed). Initially, Mark's orb is moving at $\frac{1}{1000}$ meters/s, and William's orb is moving at 1 meter/s. Mark wins when his orb passes the halfway point between the two walls. How fast, in meters/s, is his orb going when this first happens?
|
$2^{17} / 125$ If the two orbs leave their respective walls at the same time, then they will return to their walls at the same time (because colliding affects both their speeds). After returning to the wall $n$ times, Mark's orb will travel at $\frac{4^{n}}{1000}$ meter/s and William's will travel at $2^{n}$ meter/s. Mark wins when his orb is traveling faster at $n=10 . \frac{4^{10}}{1000}=\frac{2^{17}}{125}$
|
\frac{2^{17}}{125}
|
Yes
|
Yes
|
math-word-problem
|
Logic and Puzzles
|
Mark and William are playing a game. Two walls are placed 1 meter apart, with Mark and William each starting an orb at one of the walls. Simultaneously, they release their orbs directly toward the other. Both orbs are enchanted such that, upon colliding with each other, they instantly reverse direction and go at double their previous speed. Furthermore, Mark has enchanted his orb so that when it collides with a wall it instantly reverses direction and goes at double its previous speed (William's reverses direction at the same speed). Initially, Mark's orb is moving at $\frac{1}{1000}$ meters/s, and William's orb is moving at 1 meter/s. Mark wins when his orb passes the halfway point between the two walls. How fast, in meters/s, is his orb going when this first happens?
|
$2^{17} / 125$ If the two orbs leave their respective walls at the same time, then they will return to their walls at the same time (because colliding affects both their speeds). After returning to the wall $n$ times, Mark's orb will travel at $\frac{4^{n}}{1000}$ meter/s and William's will travel at $2^{n}$ meter/s. Mark wins when his orb is traveling faster at $n=10 . \frac{4^{10}}{1000}=\frac{2^{17}}{125}$
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n17. [11]",
"solution_match": "\nAnswer: "
}
|
60002a1b-abee-5b16-a124-08e302b1841a
| 609,005
|
Let $x$ and $y$ be positive real numbers such that $x^{2}+y^{2}=1$ and $\left(3 x-4 x^{3}\right)\left(3 y-4 y^{3}\right)=-\frac{1}{2}$. Compute $x+y$.
|
$\frac{\sqrt{6}}{2}$ Solution 1: Let $x=\cos (\theta)$ and $y=\sin (\theta)$. Then, by the triple angle formulae, we have that $3 x-4 x^{3}=-\cos (3 \theta)$ and $3 y-4 y^{3}=\sin (3 \theta)$, so $-\sin (3 \theta) \cos (3 \theta)=-\frac{1}{2}$. We can write this as $2 \sin (3 \theta) \cos (3 \theta)=\sin (6 \theta)=1$, so $\theta=\frac{1}{6} \sin ^{-1}(1)=\frac{\pi}{12}$. Thus, $x+y=\cos \left(\frac{\pi}{12}\right)+\sin \left(\frac{\pi}{12}\right)=$ $\frac{\sqrt{6}+\sqrt{2}}{4}+\frac{\sqrt{6}-\sqrt{2}}{4}=\frac{\sqrt{6}}{2}$.
|
\frac{\sqrt{6}}{2}
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let $x$ and $y$ be positive real numbers such that $x^{2}+y^{2}=1$ and $\left(3 x-4 x^{3}\right)\left(3 y-4 y^{3}\right)=-\frac{1}{2}$. Compute $x+y$.
|
$\frac{\sqrt{6}}{2}$ Solution 1: Let $x=\cos (\theta)$ and $y=\sin (\theta)$. Then, by the triple angle formulae, we have that $3 x-4 x^{3}=-\cos (3 \theta)$ and $3 y-4 y^{3}=\sin (3 \theta)$, so $-\sin (3 \theta) \cos (3 \theta)=-\frac{1}{2}$. We can write this as $2 \sin (3 \theta) \cos (3 \theta)=\sin (6 \theta)=1$, so $\theta=\frac{1}{6} \sin ^{-1}(1)=\frac{\pi}{12}$. Thus, $x+y=\cos \left(\frac{\pi}{12}\right)+\sin \left(\frac{\pi}{12}\right)=$ $\frac{\sqrt{6}+\sqrt{2}}{4}+\frac{\sqrt{6}-\sqrt{2}}{4}=\frac{\sqrt{6}}{2}$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n18. [11]",
"solution_match": "\nAnswer: "
}
|
32033c3d-6a9b-5ffe-8f8f-9f2d4d446e2b
| 609,006
|
Given that $P$ is a real polynomial of degree at most 2012 such that $P(n)=2^{n}$ for $n=1,2, \ldots, 2012$, what choice(s) of $P(0)$ produce the minimal possible value of $P(0)^{2}+P(2013)^{2}$ ?
|
$1-2^{2012}$ Define $\Delta^{1}(n)=P(n+1)-P(n)$ and $\Delta^{i}(n)=\Delta^{i-1}(n+1)-\Delta^{i-1}(n)$ for $i>1$. Since $P(n)$ has degree at most 2012, we know that $\Delta^{2012}(n)$ is constant. Computing, we obtain $\Delta^{1}(0)=2-P(0)$ and $\Delta^{i}(0)=2^{i-1}$ for $1<i \leq 2012$. We see that continuing on gives $\Delta^{2012}(0)=\Delta^{2012}(1)=P(0)$ and $\Delta^{i}(2012-i)=2^{2013-i}$ for $1 \leq i \leq 2011$. Then, $P(2013)=$ $P(2012)+\Delta^{1}(2012)=\ldots=P(2012)+\Delta^{1}(2011)+\ldots+\Delta^{2012}(0)=P(0)+2^{2013}-2$. Now, we want to minimize the value of $P(0)^{2}+P(2013)^{2}=2 P(0)^{2}+2 P(0)\left(2^{2013}-2\right)+\left(2^{2013}-2\right)^{2}$, but this occurs simply when $P(0)=-\frac{1}{2}\left(2^{2013}-2\right)=1-2^{2012}$.
|
1-2^{2012}
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Given that $P$ is a real polynomial of degree at most 2012 such that $P(n)=2^{n}$ for $n=1,2, \ldots, 2012$, what choice(s) of $P(0)$ produce the minimal possible value of $P(0)^{2}+P(2013)^{2}$ ?
|
$1-2^{2012}$ Define $\Delta^{1}(n)=P(n+1)-P(n)$ and $\Delta^{i}(n)=\Delta^{i-1}(n+1)-\Delta^{i-1}(n)$ for $i>1$. Since $P(n)$ has degree at most 2012, we know that $\Delta^{2012}(n)$ is constant. Computing, we obtain $\Delta^{1}(0)=2-P(0)$ and $\Delta^{i}(0)=2^{i-1}$ for $1<i \leq 2012$. We see that continuing on gives $\Delta^{2012}(0)=\Delta^{2012}(1)=P(0)$ and $\Delta^{i}(2012-i)=2^{2013-i}$ for $1 \leq i \leq 2011$. Then, $P(2013)=$ $P(2012)+\Delta^{1}(2012)=\ldots=P(2012)+\Delta^{1}(2011)+\ldots+\Delta^{2012}(0)=P(0)+2^{2013}-2$. Now, we want to minimize the value of $P(0)^{2}+P(2013)^{2}=2 P(0)^{2}+2 P(0)\left(2^{2013}-2\right)+\left(2^{2013}-2\right)^{2}$, but this occurs simply when $P(0)=-\frac{1}{2}\left(2^{2013}-2\right)=1-2^{2012}$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n19. [11]",
"solution_match": "\nAnswer: "
}
|
1fc20ac0-1454-5b6f-a787-8d9ae25d9a21
| 609,007
|
Let $n$ be the maximum number of bishops that can be placed on the squares of a $6 \times 6$ chessboard such that no two bishops are attacking each other. Let $k$ be the number of ways to put bishops on an $6 \times 6$ chessboard such that no two bishops are attacking each other. Find $n+k$. (Two bishops are considered to be attacking each other if they lie on the same diagonal. Equivalently, if we label the squares with coordinates $(x, y)$, with $1 \leq x, y \leq 6$, then the bishops on $(a, b)$ and $(c, d)$ are attacking each other if and only if $|a-c|=|b-d|$.)
|
74 Color the square with coordinates $(i, j)$ black if $i+j$ is odd and white otherwise, for all $1 \leq i, j \leq 6$. Looking at the black squares only, we note that there are six distinct diagonals which run upward and to the right, but that two of them consist only of a corner square; we cannot simultaneously place bishops on both of these corner squares. Consequently, we can place at most five bishops on black squares. (This can be achieved by placing bishops on $(1,2),(1,4),(6,1),(6,3),(6,5)$.) If there are five bishops on black squares, there must be exactly one bishop on one of the two black corner squares, $(6,1)$ and $(1,6)$ : suppose without loss of generality that we place a bishop on $(1,6)$. Then, exactly one of $(3,6)$ and $(1,4)$ must also contain a bishop, and there are 2 ways to place two bishops on the four remaining black squares that are not yet under attack. Thus, we have a total of $2 \cdot 2 \cdot 2$ possible placements on black squares.
Similarly, there are at most 5 bishops which can be placed on white squares and $2^{3}$ ways to place them, so that $n=10$ and $k=2^{6}$. Finally, $n+k=10+2^{6}=74$.
|
74
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Let $n$ be the maximum number of bishops that can be placed on the squares of a $6 \times 6$ chessboard such that no two bishops are attacking each other. Let $k$ be the number of ways to put bishops on an $6 \times 6$ chessboard such that no two bishops are attacking each other. Find $n+k$. (Two bishops are considered to be attacking each other if they lie on the same diagonal. Equivalently, if we label the squares with coordinates $(x, y)$, with $1 \leq x, y \leq 6$, then the bishops on $(a, b)$ and $(c, d)$ are attacking each other if and only if $|a-c|=|b-d|$.)
|
74 Color the square with coordinates $(i, j)$ black if $i+j$ is odd and white otherwise, for all $1 \leq i, j \leq 6$. Looking at the black squares only, we note that there are six distinct diagonals which run upward and to the right, but that two of them consist only of a corner square; we cannot simultaneously place bishops on both of these corner squares. Consequently, we can place at most five bishops on black squares. (This can be achieved by placing bishops on $(1,2),(1,4),(6,1),(6,3),(6,5)$.) If there are five bishops on black squares, there must be exactly one bishop on one of the two black corner squares, $(6,1)$ and $(1,6)$ : suppose without loss of generality that we place a bishop on $(1,6)$. Then, exactly one of $(3,6)$ and $(1,4)$ must also contain a bishop, and there are 2 ways to place two bishops on the four remaining black squares that are not yet under attack. Thus, we have a total of $2 \cdot 2 \cdot 2$ possible placements on black squares.
Similarly, there are at most 5 bishops which can be placed on white squares and $2^{3}$ ways to place them, so that $n=10$ and $k=2^{6}$. Finally, $n+k=10+2^{6}=74$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n20. [11]",
"solution_match": "\nAnswer: "
}
|
75fb1d56-1be8-585a-850e-8d67e0289825
| 609,008
|
Let $N$ be a three-digit integer such that the difference between any two positive integer factors of $N$ is divisible by 3 . Let $d(N)$ denote the number of positive integers which divide $N$. Find the maximum possible value of $N \cdot d(N)$.
|
5586 We first note that all the prime factors of $n$ must be 1 modulo 3 (and thus 1 modulo 6 ). The smallest primes with this property are $7,13,19, \ldots$. Since $7^{4}=2401>1000$, the number can have at most 3 prime factors (including repeats). Since $7 \cdot 13 \cdot 19=1729>1000$, the most factors $N$ can have is 6 . Consider the number $7^{2} \cdot 19=931$, which has 6 factors. For this choice of $N, N \cdot d(N)=5586$. For another $N$ to do better, it must have at least 6 factors, for otherwise, $N \cdot d(N)<1000 \cdot 5=5000$. It is easy to verify that $7^{2} \cdot 19$ is the greatest number with 6 prime factors satisfying our conditions, so the answer must be 5586 .
|
5586
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Let $N$ be a three-digit integer such that the difference between any two positive integer factors of $N$ is divisible by 3 . Let $d(N)$ denote the number of positive integers which divide $N$. Find the maximum possible value of $N \cdot d(N)$.
|
5586 We first note that all the prime factors of $n$ must be 1 modulo 3 (and thus 1 modulo 6 ). The smallest primes with this property are $7,13,19, \ldots$. Since $7^{4}=2401>1000$, the number can have at most 3 prime factors (including repeats). Since $7 \cdot 13 \cdot 19=1729>1000$, the most factors $N$ can have is 6 . Consider the number $7^{2} \cdot 19=931$, which has 6 factors. For this choice of $N, N \cdot d(N)=5586$. For another $N$ to do better, it must have at least 6 factors, for otherwise, $N \cdot d(N)<1000 \cdot 5=5000$. It is easy to verify that $7^{2} \cdot 19$ is the greatest number with 6 prime factors satisfying our conditions, so the answer must be 5586 .
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n21. [13]",
"solution_match": "\nAnswer: "
}
|
96ddebea-44d1-5db8-a774-53e6ed3b39ae
| 609,009
|
For each positive integer $n$, there is a circle around the origin with radius $n$. Rainbow Dash starts off somewhere on the plane, but not on a circle. She takes off in some direction in a straight path. She moves $\frac{\sqrt{5}}{5}$ units before crossing a circle, then $\sqrt{5}$ units, then $\frac{3 \sqrt{5}}{5}$ units. What distance will she travel before she crosses another circle?
|
$\frac{2 \sqrt{170}-9 \sqrt{5}}{5}$ Note that the distance from Rainbow Dash's starting point to the first place in which she hits a circle is irrelevant, except in checking that this distance is small enough that she does not hit another circle beforehand. It will be clear at the end that our configuration does not allow this (by the Triangle Inequality). Let $O$ be the origin, and let Rainbow Dash's first three meeting points be $A, B, C$ so that $A B=\sqrt{5}$ and $B C=\frac{3 \sqrt{5}}{5}$.
Consider the lengths of $O A, O B, O C$. First, note that if $O A=O C=n$ (i.e. $A$ and $C$ lie on the same circle), then we need $O B=n-1$, but since she only crosses the circle containing $B$ once, it follows that the circle passing through $B$ is tangent to $A C$, which is impossible since $A B \neq A C$. If $O A=O B=n$,
note that $O C=n+1$. Dropping a perpendicular from $O$ to $A B$, we see that by the Pythagorean Theorem,
$$
n^{2}-\frac{5}{4}=(n+1)^{2}-\frac{121}{20}
$$
from which we get that $n$ is not an integer. Similarly, when $O B=O C=n$, we have $O A=n+1$, and $n$ is not an integer.
Therefore, either $O A=n+2, O B=n+1, O C=n$ or $O A=n, O B=n+1, O C=n+2$. In the first case, by Stewart's Theorem,
$$
\frac{24 \sqrt{5}}{5}+(n+1)^{2} \cdot \frac{8 \sqrt{5}}{5}=n^{2} \cdot \sqrt{5}+(n+2)^{2} \cdot \frac{3 \sqrt{5}}{5} .
$$
This gives a negative value of $n$, so the configuration is impossible. In the final case, we have, again by Stewart's Theorem,
$$
\frac{24 \sqrt{5}}{5}+(n+1)^{2} \cdot \frac{8 \sqrt{5}}{5}=(n+2)^{2} \cdot \sqrt{5}+n^{2} \cdot \frac{3 \sqrt{5}}{5}
$$
Solving gives $n=3$, so $O A=3, O B=4, O C=5$.
Next, we compute, by the Law of Cosines, $\cos \angle O A B=-\frac{1}{3 \sqrt{5}}$, so that $\sin \angle O A B=\frac{2 \sqrt{11}}{3 \sqrt{5}}$. Let the projection from $O$ to line $A C$ be $P$; we get that $O P=\frac{2 \sqrt{11}}{\sqrt{5}}$. Rainbow Dash will next hit the circle of radius 6 at $D$. Our answer is now $C D=P D-P C=\frac{2 \sqrt{170}}{5}-\frac{9 \sqrt{5}}{5}$ by the Pythagorean Theorem.
|
\frac{2 \sqrt{170}-9 \sqrt{5}}{5}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
For each positive integer $n$, there is a circle around the origin with radius $n$. Rainbow Dash starts off somewhere on the plane, but not on a circle. She takes off in some direction in a straight path. She moves $\frac{\sqrt{5}}{5}$ units before crossing a circle, then $\sqrt{5}$ units, then $\frac{3 \sqrt{5}}{5}$ units. What distance will she travel before she crosses another circle?
|
$\frac{2 \sqrt{170}-9 \sqrt{5}}{5}$ Note that the distance from Rainbow Dash's starting point to the first place in which she hits a circle is irrelevant, except in checking that this distance is small enough that she does not hit another circle beforehand. It will be clear at the end that our configuration does not allow this (by the Triangle Inequality). Let $O$ be the origin, and let Rainbow Dash's first three meeting points be $A, B, C$ so that $A B=\sqrt{5}$ and $B C=\frac{3 \sqrt{5}}{5}$.
Consider the lengths of $O A, O B, O C$. First, note that if $O A=O C=n$ (i.e. $A$ and $C$ lie on the same circle), then we need $O B=n-1$, but since she only crosses the circle containing $B$ once, it follows that the circle passing through $B$ is tangent to $A C$, which is impossible since $A B \neq A C$. If $O A=O B=n$,
note that $O C=n+1$. Dropping a perpendicular from $O$ to $A B$, we see that by the Pythagorean Theorem,
$$
n^{2}-\frac{5}{4}=(n+1)^{2}-\frac{121}{20}
$$
from which we get that $n$ is not an integer. Similarly, when $O B=O C=n$, we have $O A=n+1$, and $n$ is not an integer.
Therefore, either $O A=n+2, O B=n+1, O C=n$ or $O A=n, O B=n+1, O C=n+2$. In the first case, by Stewart's Theorem,
$$
\frac{24 \sqrt{5}}{5}+(n+1)^{2} \cdot \frac{8 \sqrt{5}}{5}=n^{2} \cdot \sqrt{5}+(n+2)^{2} \cdot \frac{3 \sqrt{5}}{5} .
$$
This gives a negative value of $n$, so the configuration is impossible. In the final case, we have, again by Stewart's Theorem,
$$
\frac{24 \sqrt{5}}{5}+(n+1)^{2} \cdot \frac{8 \sqrt{5}}{5}=(n+2)^{2} \cdot \sqrt{5}+n^{2} \cdot \frac{3 \sqrt{5}}{5}
$$
Solving gives $n=3$, so $O A=3, O B=4, O C=5$.
Next, we compute, by the Law of Cosines, $\cos \angle O A B=-\frac{1}{3 \sqrt{5}}$, so that $\sin \angle O A B=\frac{2 \sqrt{11}}{3 \sqrt{5}}$. Let the projection from $O$ to line $A C$ be $P$; we get that $O P=\frac{2 \sqrt{11}}{\sqrt{5}}$. Rainbow Dash will next hit the circle of radius 6 at $D$. Our answer is now $C D=P D-P C=\frac{2 \sqrt{170}}{5}-\frac{9 \sqrt{5}}{5}$ by the Pythagorean Theorem.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n22. [13]",
"solution_match": "\nAnswer: "
}
|
7a5703e8-6326-5207-ae95-ec9f11bba1d9
| 609,010
|
Points $X$ and $Y$ are inside a unit square. The score of a vertex of the square is the minimum distance from that vertex to $X$ or $Y$. What is the minimum possible sum of the scores of the vertices of the square?
|
$\frac{\sqrt{6}+\sqrt{2}}{2}$ Let the square be $A B C D$. First, suppose that all four vertices are closer to $X$ than $Y$. Then, by the triangle inequality, the sum of the scores is $A X+B X+C X+D X \geq A B+C D=2$. Similarly, suppose exactly two vertices are closer to $X$ than $Y$. Here, we have two distinct cases: the vertices closer to $X$ are either adjacent or opposite. Again, by the Triangle Inequality, it follows that the sum of the scores of the vertices is at least 2 .
On the other hand, suppose that $A$ is closer to $X$ and $B, C, D$ are closer to $Y$. We wish to compute the minimum value of $A X+B Y+C Y+D Y$, but note that we can make $X=A$ to simply minimize $B Y+C Y+D Y$. We now want $Y$ to be the Fermat point of triangle $B C D$, so that $\measuredangle B Y C=$ $\measuredangle C Y D=\measuredangle D Y B=120^{\circ}$. Note that by symmetry, we must have $\measuredangle B C Y=\measuredangle D C Y=45^{\circ}$, so $\measuredangle C B Y=\measuredangle C D Y=15^{\circ}$.
And now we use the law of sines: $B Y=D Y=\frac{\sin 45^{\circ}}{\sin 120^{\circ}}$ and $C Y=\frac{\sin 15^{\circ}}{\sin 120^{\circ}}$. Now, we have $B Y+C Y+$ $D Y=\frac{\sqrt{2}+\sqrt{6}}{2}$, which is less than 2 , so this is our answer.
|
\frac{\sqrt{6}+\sqrt{2}}{2}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Points $X$ and $Y$ are inside a unit square. The score of a vertex of the square is the minimum distance from that vertex to $X$ or $Y$. What is the minimum possible sum of the scores of the vertices of the square?
|
$\frac{\sqrt{6}+\sqrt{2}}{2}$ Let the square be $A B C D$. First, suppose that all four vertices are closer to $X$ than $Y$. Then, by the triangle inequality, the sum of the scores is $A X+B X+C X+D X \geq A B+C D=2$. Similarly, suppose exactly two vertices are closer to $X$ than $Y$. Here, we have two distinct cases: the vertices closer to $X$ are either adjacent or opposite. Again, by the Triangle Inequality, it follows that the sum of the scores of the vertices is at least 2 .
On the other hand, suppose that $A$ is closer to $X$ and $B, C, D$ are closer to $Y$. We wish to compute the minimum value of $A X+B Y+C Y+D Y$, but note that we can make $X=A$ to simply minimize $B Y+C Y+D Y$. We now want $Y$ to be the Fermat point of triangle $B C D$, so that $\measuredangle B Y C=$ $\measuredangle C Y D=\measuredangle D Y B=120^{\circ}$. Note that by symmetry, we must have $\measuredangle B C Y=\measuredangle D C Y=45^{\circ}$, so $\measuredangle C B Y=\measuredangle C D Y=15^{\circ}$.
And now we use the law of sines: $B Y=D Y=\frac{\sin 45^{\circ}}{\sin 120^{\circ}}$ and $C Y=\frac{\sin 15^{\circ}}{\sin 120^{\circ}}$. Now, we have $B Y+C Y+$ $D Y=\frac{\sqrt{2}+\sqrt{6}}{2}$, which is less than 2 , so this is our answer.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n23. [13]",
"solution_match": "\nAnswer: "
}
|
2494331d-875b-5e2b-b9ef-eea0e4f5d378
| 609,011
|
Franklin has four bags, numbered 1 through 4. Initially, the first bag contains fifteen balls, numbered 1 through 15 , and the other bags are empty. Franklin randomly pulls a pair of balls out of the first bag, throws away the ball with the lower number, and moves the ball with the higher number into the second bag. He does this until there is only one ball left in the first bag. He then repeats this process in the second and third bag until there is exactly one ball in each bag. What is the probability that ball 14 is in one of the bags at the end?
|
$\frac{2}{3}$ Pretend there is a 16 th ball numbered 16. This process is equivalent to randomly drawing a tournament bracket for the 16 balls, and playing a tournament where the higher ranked ball always wins. The probability that a ball is left in a bag at the end is the probability that it loses to ball 16. Of the three balls $14,15,16$, there is a $\frac{1}{3}$ chance 14 plays 15 first, a $\frac{1}{3}$ chance 14 plays 16 first, and a $\frac{1}{3}$ chance 15 plays 16 first. In the first case, 14 does not lose to 16 , and instead loses to 15 ; otherwise 14 loses to 16 , and ends up in a bag. So the answer is $\frac{2}{3}$.
|
\frac{2}{3}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Franklin has four bags, numbered 1 through 4. Initially, the first bag contains fifteen balls, numbered 1 through 15 , and the other bags are empty. Franklin randomly pulls a pair of balls out of the first bag, throws away the ball with the lower number, and moves the ball with the higher number into the second bag. He does this until there is only one ball left in the first bag. He then repeats this process in the second and third bag until there is exactly one ball in each bag. What is the probability that ball 14 is in one of the bags at the end?
|
$\frac{2}{3}$ Pretend there is a 16 th ball numbered 16. This process is equivalent to randomly drawing a tournament bracket for the 16 balls, and playing a tournament where the higher ranked ball always wins. The probability that a ball is left in a bag at the end is the probability that it loses to ball 16. Of the three balls $14,15,16$, there is a $\frac{1}{3}$ chance 14 plays 15 first, a $\frac{1}{3}$ chance 14 plays 16 first, and a $\frac{1}{3}$ chance 15 plays 16 first. In the first case, 14 does not lose to 16 , and instead loses to 15 ; otherwise 14 loses to 16 , and ends up in a bag. So the answer is $\frac{2}{3}$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n24. [13]",
"solution_match": "\nAnswer: "
}
|
a400b1c8-8a1b-50e4-8a96-2a94b4391846
| 609,012
|
FemtoPravis is walking on an $8 \times 8$ chessboard that wraps around at its edges (so squares on the left edge of the chessboard are adjacent to squares on the right edge, and similarly for the top and bottom edges). Each femtosecond, FemtoPravis moves in one of the four diagonal directions uniformly at random. After 2012 femtoseconds, what is the probability that FemtoPravis is at his original location?
|
$\left(\frac{1+2^{1005}}{2^{1007}}\right)^{2}$ We note the probability that he ends up in the same row is equal to the probability that he ends up in the same column by symmetry. Clearly these are independent, so we calculate the probability that he ends up in the same row.
Now we number the rows $0-7$ where 0 and 7 are adjacent. Suppose he starts at row 0 . After two more turns, the probability he is in row 2 (or row 6 ) is $\frac{1}{4}$, and the probability he is in row 0 again is $\frac{1}{2}$. Let $a_{n}, b_{n}, c_{n}$ and $d_{n}$ denote the probability he is in row $0,2,4,6$ respectively after $2 n$ moves.
We have $a_{0}=1$, and for $n \geq 0$ we have the following equations:
$$
\begin{aligned}
a_{n+1} & =\frac{1}{2} a_{n}+\frac{1}{4} b_{n}+\frac{1}{4} d_{n} \\
b_{n+1} & =\frac{1}{2} b_{n}+\frac{1}{4} a_{n}+\frac{1}{4} c_{n} \\
c_{n+1} & =\frac{1}{2} c_{n}+\frac{1}{4} b_{n}+\frac{1}{4} d_{n} \\
d_{n+1} & =\frac{1}{2} d_{n}+\frac{1}{4} a_{n}+\frac{1}{4} c_{n}
\end{aligned}
$$
From which we get the following equations:
$$
\begin{gathered}
a_{n}+c_{n}=\frac{1}{2} \\
x_{n}=a_{n}-c_{n}=\frac{1}{2}\left(a_{n-1}-c_{n-1}\right)=\frac{x_{n-1}}{2}
\end{gathered}
$$
So
$$
\begin{gathered}
a_{1006}+c_{1006}=\frac{1}{2} \\
x_{0}=1, x_{1006}=\frac{1}{2^{1006}} \\
a_{1006}=\frac{1+2^{1005}}{2^{1007}}
\end{gathered}
$$
And thus the answer is $\left(\frac{1+2^{1005}}{2^{1007}}\right)^{2}$.
|
\left(\frac{1+2^{1005}}{2^{1007}}\right)^{2}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
FemtoPravis is walking on an $8 \times 8$ chessboard that wraps around at its edges (so squares on the left edge of the chessboard are adjacent to squares on the right edge, and similarly for the top and bottom edges). Each femtosecond, FemtoPravis moves in one of the four diagonal directions uniformly at random. After 2012 femtoseconds, what is the probability that FemtoPravis is at his original location?
|
$\left(\frac{1+2^{1005}}{2^{1007}}\right)^{2}$ We note the probability that he ends up in the same row is equal to the probability that he ends up in the same column by symmetry. Clearly these are independent, so we calculate the probability that he ends up in the same row.
Now we number the rows $0-7$ where 0 and 7 are adjacent. Suppose he starts at row 0 . After two more turns, the probability he is in row 2 (or row 6 ) is $\frac{1}{4}$, and the probability he is in row 0 again is $\frac{1}{2}$. Let $a_{n}, b_{n}, c_{n}$ and $d_{n}$ denote the probability he is in row $0,2,4,6$ respectively after $2 n$ moves.
We have $a_{0}=1$, and for $n \geq 0$ we have the following equations:
$$
\begin{aligned}
a_{n+1} & =\frac{1}{2} a_{n}+\frac{1}{4} b_{n}+\frac{1}{4} d_{n} \\
b_{n+1} & =\frac{1}{2} b_{n}+\frac{1}{4} a_{n}+\frac{1}{4} c_{n} \\
c_{n+1} & =\frac{1}{2} c_{n}+\frac{1}{4} b_{n}+\frac{1}{4} d_{n} \\
d_{n+1} & =\frac{1}{2} d_{n}+\frac{1}{4} a_{n}+\frac{1}{4} c_{n}
\end{aligned}
$$
From which we get the following equations:
$$
\begin{gathered}
a_{n}+c_{n}=\frac{1}{2} \\
x_{n}=a_{n}-c_{n}=\frac{1}{2}\left(a_{n-1}-c_{n-1}\right)=\frac{x_{n-1}}{2}
\end{gathered}
$$
So
$$
\begin{gathered}
a_{1006}+c_{1006}=\frac{1}{2} \\
x_{0}=1, x_{1006}=\frac{1}{2^{1006}} \\
a_{1006}=\frac{1+2^{1005}}{2^{1007}}
\end{gathered}
$$
And thus the answer is $\left(\frac{1+2^{1005}}{2^{1007}}\right)^{2}$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n25. [17]",
"solution_match": "\nAnswer: "
}
|
2a5db637-2820-59d1-a610-df7374b84d36
| 609,013
|
Suppose $A B C$ is a triangle with circumcenter $O$ and orthocenter $H$ such that $A, B, C, O$, and $H$ are all on distinct points with integer coordinates. What is the second smallest possible value of the circumradius of $A B C$ ?
|
$\sqrt{10}$ Assume without loss of generality that the circumcenter is at the origin. By well known properties of the Euler line, the centroid $G$ is such that $O, G$, and $H$ are collinear, with $G$ in between $O$ and $H$, such that $G H=2 G O$. Thus, since $G=\frac{1}{3}(A+B+C)$, and we are assuming $O$ is the origin, we have $H=A+B+C$. This means that as long as $A, B$, and $C$ are integer points, $H$ will be as well.
However, since $H$ needs to be distinct from $A, B$, and $C$, we must have $\triangle A B C$ not be a right triangle, since in right triangles, the orthocenter is the vertex where the right angle is.
Now, if a circle centered at the origin has any integer points, it will have at least four integer points. (If it has a point of the form $(a, 0)$, then it will also have $(-a, 0),(0, a)$, and $(0,-a)$. If it has a point of the form $(a, b)$, with $a, b \neq 0$, it will have each point of the form $( \pm a, \pm b)$.) But in any of these cases where there are only four points, any triangle which can be made from those points is a right triangle.
Thus we need the circumcircle to contain at least eight lattice points. The smallest radius this occurs at is $\sqrt{1^{2}+2^{2}}=\sqrt{5}$, which contains the eight points $( \pm 1, \pm 2)$ and $( \pm 2, \pm 1)$. We get at least one valid triangle with this circumradius:
$$
A=(-1,2), B=(1,2), C=(2,1)
$$
The next valid circumradius is $\sqrt{1^{2}+3^{2}}=\sqrt{10}$ which has the valid triangle
$$
A=(-1,3), B=(1,3), C=(3,1)
$$
|
\sqrt{10}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Suppose $A B C$ is a triangle with circumcenter $O$ and orthocenter $H$ such that $A, B, C, O$, and $H$ are all on distinct points with integer coordinates. What is the second smallest possible value of the circumradius of $A B C$ ?
|
$\sqrt{10}$ Assume without loss of generality that the circumcenter is at the origin. By well known properties of the Euler line, the centroid $G$ is such that $O, G$, and $H$ are collinear, with $G$ in between $O$ and $H$, such that $G H=2 G O$. Thus, since $G=\frac{1}{3}(A+B+C)$, and we are assuming $O$ is the origin, we have $H=A+B+C$. This means that as long as $A, B$, and $C$ are integer points, $H$ will be as well.
However, since $H$ needs to be distinct from $A, B$, and $C$, we must have $\triangle A B C$ not be a right triangle, since in right triangles, the orthocenter is the vertex where the right angle is.
Now, if a circle centered at the origin has any integer points, it will have at least four integer points. (If it has a point of the form $(a, 0)$, then it will also have $(-a, 0),(0, a)$, and $(0,-a)$. If it has a point of the form $(a, b)$, with $a, b \neq 0$, it will have each point of the form $( \pm a, \pm b)$.) But in any of these cases where there are only four points, any triangle which can be made from those points is a right triangle.
Thus we need the circumcircle to contain at least eight lattice points. The smallest radius this occurs at is $\sqrt{1^{2}+2^{2}}=\sqrt{5}$, which contains the eight points $( \pm 1, \pm 2)$ and $( \pm 2, \pm 1)$. We get at least one valid triangle with this circumradius:
$$
A=(-1,2), B=(1,2), C=(2,1)
$$
The next valid circumradius is $\sqrt{1^{2}+3^{2}}=\sqrt{10}$ which has the valid triangle
$$
A=(-1,3), B=(1,3), C=(3,1)
$$
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n26. [17]",
"solution_match": "\nAnswer: "
}
|
ab85746b-1242-5739-9ed7-6be2ee26279d
| 609,014
|
Let $S$ be the set $\{1,2, \ldots, 2012\}$. A perfectutation is a bijective function $h$ from $S$ to itself such that there exists an $a \in S$ such that $h(a) \neq a$, and that for any pair of integers $a \in S$ and $b \in S$ such that $h(a) \neq a, h(b) \neq b$, there exists a positive integer $k$ such that $h^{k}(a)=b$. Let $n$ be the number of ordered pairs of perfectutations $(f, g)$ such that $f(g(i))=g(f(i))$ for all $i \in S$, but $f \neq g$. Find the remainder when $n$ is divided by 2011 .
|
2 Note that both $f$ and $g$, when written in cycle notation, must contain exactly one cycle that contains more than 1 element. Assume $f$ has $k$ fixed points, and that the other $2012-k$ elements form a cycle, (of which there are $(2011-k)$ ! ways).
Then note that if $f$ fixes $a$ then $f(g(a))=g(f(a))=g(a)$ implies $f$ fixes $g(a)$ So $g$ must send fixed points of $f$ to fixed points of $f$. It must, therefore send non-fixed points to non-fixed points. This partitions $S$ into two sets, at least one of which must be fixed by $g$, since $g$ is a perfectutation.
If $g$ fixes all of the the non-fixed points of $f$, then, since any function commutes with the identity, $g$ fixes some $m$ of the fixed points and cycles the rest in $(k-m-1)$ ! ways. So there are $\sum_{m=0}^{k-2}\binom{k}{m}(k-m-1)$ ! choices, which is $\sum_{m=0}^{k-2} \frac{k!}{(k-m) m!}$.
If $g$ fixes all of the fixed points of $f$, then order the non-fixed points of $f a_{1}, a_{2}, \ldots, a_{2012-k}$ such that $f\left(a_{i}\right)=a_{i+1}$. If $g\left(a_{i}\right)=a_{j}$ then $f\left(g\left(a_{i}\right)\right)=a_{j+1}$ thus $g\left(a_{i+1}\right)=a_{j+1}$. Therefore the choice of $g\left(a_{1}\right)$ uniquely determines $g\left(a_{i}\right)$ for the rest of the $i$, and $g\left(a_{m}\right)=a_{m+j-i}$. But $g$ has to be a perfectutation, so $g$ cycles through all the non-fixed points of $f$, which happens if and only if $j-i$ is relatively prime to $2012-k$. So there are $\phi(2012-k)$ choices.
Therefore for any $f$ there are $\sum_{m=0}^{k-2} \frac{k!}{(k-m) m!}+\phi(2012-k)$ choices of $g$, but one of them will be $g=f$, which we cannot have by the problem statement. So there are $-1+\sum_{m=0}^{k-2} \frac{k!}{(k-m) m!}+\phi(2012-k)$ options.
Now note that a permutation can not fix all but one element. So $n=\sum_{k=0}^{2010}\binom{2012}{k}(2011-k)!(-1+$ $\left.\sum_{m=0}^{k-2} \frac{k!}{(k-m) m!}+\phi(2012-k)\right)$
Modulo 2011 (which is prime), note that all terms in the summand except the one where $k=1$ vanish. Thus, $n \equiv(2010)!(-1+(-1)) \equiv 2(\bmod 2011)$ by Wilson's Theorem.
|
2
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Let $S$ be the set $\{1,2, \ldots, 2012\}$. A perfectutation is a bijective function $h$ from $S$ to itself such that there exists an $a \in S$ such that $h(a) \neq a$, and that for any pair of integers $a \in S$ and $b \in S$ such that $h(a) \neq a, h(b) \neq b$, there exists a positive integer $k$ such that $h^{k}(a)=b$. Let $n$ be the number of ordered pairs of perfectutations $(f, g)$ such that $f(g(i))=g(f(i))$ for all $i \in S$, but $f \neq g$. Find the remainder when $n$ is divided by 2011 .
|
2 Note that both $f$ and $g$, when written in cycle notation, must contain exactly one cycle that contains more than 1 element. Assume $f$ has $k$ fixed points, and that the other $2012-k$ elements form a cycle, (of which there are $(2011-k)$ ! ways).
Then note that if $f$ fixes $a$ then $f(g(a))=g(f(a))=g(a)$ implies $f$ fixes $g(a)$ So $g$ must send fixed points of $f$ to fixed points of $f$. It must, therefore send non-fixed points to non-fixed points. This partitions $S$ into two sets, at least one of which must be fixed by $g$, since $g$ is a perfectutation.
If $g$ fixes all of the the non-fixed points of $f$, then, since any function commutes with the identity, $g$ fixes some $m$ of the fixed points and cycles the rest in $(k-m-1)$ ! ways. So there are $\sum_{m=0}^{k-2}\binom{k}{m}(k-m-1)$ ! choices, which is $\sum_{m=0}^{k-2} \frac{k!}{(k-m) m!}$.
If $g$ fixes all of the fixed points of $f$, then order the non-fixed points of $f a_{1}, a_{2}, \ldots, a_{2012-k}$ such that $f\left(a_{i}\right)=a_{i+1}$. If $g\left(a_{i}\right)=a_{j}$ then $f\left(g\left(a_{i}\right)\right)=a_{j+1}$ thus $g\left(a_{i+1}\right)=a_{j+1}$. Therefore the choice of $g\left(a_{1}\right)$ uniquely determines $g\left(a_{i}\right)$ for the rest of the $i$, and $g\left(a_{m}\right)=a_{m+j-i}$. But $g$ has to be a perfectutation, so $g$ cycles through all the non-fixed points of $f$, which happens if and only if $j-i$ is relatively prime to $2012-k$. So there are $\phi(2012-k)$ choices.
Therefore for any $f$ there are $\sum_{m=0}^{k-2} \frac{k!}{(k-m) m!}+\phi(2012-k)$ choices of $g$, but one of them will be $g=f$, which we cannot have by the problem statement. So there are $-1+\sum_{m=0}^{k-2} \frac{k!}{(k-m) m!}+\phi(2012-k)$ options.
Now note that a permutation can not fix all but one element. So $n=\sum_{k=0}^{2010}\binom{2012}{k}(2011-k)!(-1+$ $\left.\sum_{m=0}^{k-2} \frac{k!}{(k-m) m!}+\phi(2012-k)\right)$
Modulo 2011 (which is prime), note that all terms in the summand except the one where $k=1$ vanish. Thus, $n \equiv(2010)!(-1+(-1)) \equiv 2(\bmod 2011)$ by Wilson's Theorem.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n27. [17]",
"solution_match": "\nAnswer: "
}
|
f8e4417b-75f0-52b7-af01-5325d0262f7d
| 609,015
|
Alice is sitting in a teacup ride with infinitely many layers of spinning disks. The largest disk has radius 5. Each succeeding disk has its center attached to a point on the circumference of the previous disk and has a radius equal to $2 / 3$ of the previous disk. Each disk spins around its center (relative to the disk it is attached to) at a rate of $\pi / 6$ radians per second. Initially, at $t=0$, the centers of the disks are aligned on a single line, going outward. Alice is sitting at the limit point of all these disks. After 12 seconds, what is the length of the trajectory that Alice has traced out?
|
$18 \pi$ Suppose the center of the largest teacup is at the origin in the complex plane, and let $z=\frac{2}{3} e^{\pi i t / 6}$. The center of the second disk is at $5 e^{\pi i t / 6}$ at time $t$; that is, $\frac{15}{2} z$. Then the center of the third disk relative to the center of the second disk is at $\frac{15}{2} z^{2}$, and so on. Summing up a geometric series, we get that Alice's position is
$$
\begin{aligned}
\frac{15}{2}\left(z+z^{2}+z^{3}+\cdots\right) & =\frac{15}{2}\left(1+z^{2}+z^{3}+\cdots\right)-\frac{15}{2} \\
& =\frac{15}{2}\left(\frac{1}{1-z}\right)-\frac{15}{2}
\end{aligned}
$$
Now, after 12 seconds, $z$ has made a full circle in the complex plane centered at 0 and of radius $2 / 3$. Thus $1-z$ is a circle centered at 1 of radius $2 / 3$.
So $1-z$ traces a circle, and now we need to find the path that $\frac{1}{1-z}$ traces. In the complex plane, taking the reciprocal corresponds to a reflection about the real axis followed by a geometric inversion about the unit circle centered at 0 . It is well known that geometric inversion maps circles not passing through the center of the inversion to circles.
Now, the circle traced by $1-z$ contains the points $1-2 / 3=1 / 3$, and $1+2 / 3=5 / 3$. Therefore the circle $\frac{1}{1-z}$ contains the points 3 and $3 / 5$, with the center lying halfway between. So the radius of the circle is
$$
\frac{1}{2}\left(3-\frac{3}{5}\right)=\frac{6}{5}
$$
and so the perimeter is $2 \pi(6 / 5)=12 \pi / 5$. Scaling by $15 / 2$ gives an answer of
$$
\frac{15}{2}\left(\frac{12 \pi}{5}\right)=18 \pi
$$
|
18 \pi
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Alice is sitting in a teacup ride with infinitely many layers of spinning disks. The largest disk has radius 5. Each succeeding disk has its center attached to a point on the circumference of the previous disk and has a radius equal to $2 / 3$ of the previous disk. Each disk spins around its center (relative to the disk it is attached to) at a rate of $\pi / 6$ radians per second. Initially, at $t=0$, the centers of the disks are aligned on a single line, going outward. Alice is sitting at the limit point of all these disks. After 12 seconds, what is the length of the trajectory that Alice has traced out?
|
$18 \pi$ Suppose the center of the largest teacup is at the origin in the complex plane, and let $z=\frac{2}{3} e^{\pi i t / 6}$. The center of the second disk is at $5 e^{\pi i t / 6}$ at time $t$; that is, $\frac{15}{2} z$. Then the center of the third disk relative to the center of the second disk is at $\frac{15}{2} z^{2}$, and so on. Summing up a geometric series, we get that Alice's position is
$$
\begin{aligned}
\frac{15}{2}\left(z+z^{2}+z^{3}+\cdots\right) & =\frac{15}{2}\left(1+z^{2}+z^{3}+\cdots\right)-\frac{15}{2} \\
& =\frac{15}{2}\left(\frac{1}{1-z}\right)-\frac{15}{2}
\end{aligned}
$$
Now, after 12 seconds, $z$ has made a full circle in the complex plane centered at 0 and of radius $2 / 3$. Thus $1-z$ is a circle centered at 1 of radius $2 / 3$.
So $1-z$ traces a circle, and now we need to find the path that $\frac{1}{1-z}$ traces. In the complex plane, taking the reciprocal corresponds to a reflection about the real axis followed by a geometric inversion about the unit circle centered at 0 . It is well known that geometric inversion maps circles not passing through the center of the inversion to circles.
Now, the circle traced by $1-z$ contains the points $1-2 / 3=1 / 3$, and $1+2 / 3=5 / 3$. Therefore the circle $\frac{1}{1-z}$ contains the points 3 and $3 / 5$, with the center lying halfway between. So the radius of the circle is
$$
\frac{1}{2}\left(3-\frac{3}{5}\right)=\frac{6}{5}
$$
and so the perimeter is $2 \pi(6 / 5)=12 \pi / 5$. Scaling by $15 / 2$ gives an answer of
$$
\frac{15}{2}\left(\frac{12 \pi}{5}\right)=18 \pi
$$
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n28. [17]",
"solution_match": "\nAnswer: "
}
|
bfe3bdd0-7376-5d8d-8328-dc4ea095ae99
| 609,016
|
Consider the cube whose vertices are the eight points $(x, y, z)$ for which each of $x, y$, and $z$ is either 0 or 1 . How many ways are there to color its vertices black or white such that, for any vertex, if all of its neighbors are the same color then it is also that color? Two vertices are neighbors if they are the two endpoints of some edge of the cube.
|
118 Divide the 8 vertices of the cube into two sets $A$ and $B$ such that each set contains 4 vertices, any two of which are diagonally adjacent across a face of the cube. We do casework based on the number of vertices of each color in set $A$.
- Case 1: 4 black. Then all the vertices in $B$ must be black, for 1 possible coloring.
- Case 2: 3 black, 1 white. Then there are 4 ways to assign the white vertex. The vertex in $B$ surrounded by the black vertices must also be black. Meanwhile, the three remaining vertices in $B$ may be any configuration except all black, for a total of $4\left(2^{3}-1\right)=28$ possible colorings.
- Case 3: 2 black, 2 white. Then, there are 6 ways to assign the 2 white vertices. The 4 vertices of $B$ cannot all be the same color. Additionally, we cannot have 3 black vertices of $B$ surround a white vertex of $A$ with the other vertex of $B$ white, and vice-versa, so we have a total of $6\left(2^{4}-2-4\right)=60$ possible colorings.
- Case 4: 1 black, 3 white. As in case 2, there are 28 possible colorings.
- Case 5: 5 white. As in case 1, there is 1 possible coloring.
So there is a total of $1+28+60+28+1=118$ possible colorings.
|
118
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Consider the cube whose vertices are the eight points $(x, y, z)$ for which each of $x, y$, and $z$ is either 0 or 1 . How many ways are there to color its vertices black or white such that, for any vertex, if all of its neighbors are the same color then it is also that color? Two vertices are neighbors if they are the two endpoints of some edge of the cube.
|
118 Divide the 8 vertices of the cube into two sets $A$ and $B$ such that each set contains 4 vertices, any two of which are diagonally adjacent across a face of the cube. We do casework based on the number of vertices of each color in set $A$.
- Case 1: 4 black. Then all the vertices in $B$ must be black, for 1 possible coloring.
- Case 2: 3 black, 1 white. Then there are 4 ways to assign the white vertex. The vertex in $B$ surrounded by the black vertices must also be black. Meanwhile, the three remaining vertices in $B$ may be any configuration except all black, for a total of $4\left(2^{3}-1\right)=28$ possible colorings.
- Case 3: 2 black, 2 white. Then, there are 6 ways to assign the 2 white vertices. The 4 vertices of $B$ cannot all be the same color. Additionally, we cannot have 3 black vertices of $B$ surround a white vertex of $A$ with the other vertex of $B$ white, and vice-versa, so we have a total of $6\left(2^{4}-2-4\right)=60$ possible colorings.
- Case 4: 1 black, 3 white. As in case 2, there are 28 possible colorings.
- Case 5: 5 white. As in case 1, there is 1 possible coloring.
So there is a total of $1+28+60+28+1=118$ possible colorings.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n29. [19]",
"solution_match": "\nAnswer: "
}
|
7b2ed9f4-6009-5326-bb9b-694323b90a90
| 609,017
|
You have a twig of length 1. You repeatedly do the following: select two points on the twig independently and uniformly at random, make cuts on these two points, and keep only the largest piece. After 2012 repetitions, what is the expected length of the remaining piece?
|
$(11 / 18)^{2012}$ First let $p(x)$ be the probability density of $x$ being the longest length.
Let $a_{n}$ be the expected length after $n$ cuts. $a_{n}=\int_{0}^{1} p(x) \cdot\left(x a_{n-1}\right) d x=a_{n-1} \int_{0}^{1} x p(x) d x=a_{1} a_{n-1}$. It follows that $a_{n}=a_{1}^{n}$, so our answer is $\left(a_{1}\right)^{2012}$. We now calculate $a_{1}$.
Let $P(z)$ be the probability that the longest section is $\leq z$. Clearly $P(z)=0$ for $z \leq \frac{1}{3}$.
To simulate making two cuts we pick two random numbers $x, y$ from $[0,1]$, and assume without loss of generality that $x \leq y$. Then picking two such points is equivalent to picking a point in the top left triangle half of the unit square. This figure has area $\frac{1}{2}$ so our $P(z)$ will be double the area where $x \leq z, y \geq 1-z$ and $y-x \leq z$. For $\frac{1}{3} \leq z \leq \frac{1}{2}$ the probability is double the area bounded by $x=z, 1-z=y, y-x=z$. This is $2\left(\frac{1}{2}(3 z-1)^{2}\right)=(3 z-1)^{2}$.
For $\frac{1}{2} \leq z \leq 1$ this value is double the hexagon bounded by $x=0, y=1-z, y=x, x=z, y=1$, $y=x+z$. The complement of this set, however, is three triangles of area $\frac{(1-z)^{2}}{2}$, so $P(z)=1-3(1-z)^{2}$ for $\frac{1}{2} \leq z \leq 1$.
Now note that $P^{\prime}(z)=p(z)$. Therefore by integration by parts $a_{1}=\int_{0}^{1} z p(z) d z=\int_{0}^{1} z P^{\prime}(z) d z=$ ${ }_{0}^{1} z P(z)-\int_{0}^{1} P(z) d z$. This equals
$$
\begin{gathered}
1-\int_{\frac{1}{3}}^{\frac{1}{2}}(3 z-1)^{2} d z-\int_{\frac{1}{2}}^{1} 1-3(1-z)^{2} d z \\
=1-\left[\frac{1}{\frac{1}{2}} \frac{(3 z-1)^{3}}{9}-\frac{1}{2}+\left[{ }_{\frac{1}{2}}^{1}(z-1)^{3}\right.\right. \\
=1-\frac{1}{72}-\frac{1}{2}+\frac{1}{8}=\frac{1}{2}+\frac{1}{9} \\
=\frac{11}{18}
\end{gathered}
$$
So the answer is $\left(\frac{11}{18}\right)^{2012}$.
|
\left(\frac{11}{18}\right)^{2012}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
You have a twig of length 1. You repeatedly do the following: select two points on the twig independently and uniformly at random, make cuts on these two points, and keep only the largest piece. After 2012 repetitions, what is the expected length of the remaining piece?
|
$(11 / 18)^{2012}$ First let $p(x)$ be the probability density of $x$ being the longest length.
Let $a_{n}$ be the expected length after $n$ cuts. $a_{n}=\int_{0}^{1} p(x) \cdot\left(x a_{n-1}\right) d x=a_{n-1} \int_{0}^{1} x p(x) d x=a_{1} a_{n-1}$. It follows that $a_{n}=a_{1}^{n}$, so our answer is $\left(a_{1}\right)^{2012}$. We now calculate $a_{1}$.
Let $P(z)$ be the probability that the longest section is $\leq z$. Clearly $P(z)=0$ for $z \leq \frac{1}{3}$.
To simulate making two cuts we pick two random numbers $x, y$ from $[0,1]$, and assume without loss of generality that $x \leq y$. Then picking two such points is equivalent to picking a point in the top left triangle half of the unit square. This figure has area $\frac{1}{2}$ so our $P(z)$ will be double the area where $x \leq z, y \geq 1-z$ and $y-x \leq z$. For $\frac{1}{3} \leq z \leq \frac{1}{2}$ the probability is double the area bounded by $x=z, 1-z=y, y-x=z$. This is $2\left(\frac{1}{2}(3 z-1)^{2}\right)=(3 z-1)^{2}$.
For $\frac{1}{2} \leq z \leq 1$ this value is double the hexagon bounded by $x=0, y=1-z, y=x, x=z, y=1$, $y=x+z$. The complement of this set, however, is three triangles of area $\frac{(1-z)^{2}}{2}$, so $P(z)=1-3(1-z)^{2}$ for $\frac{1}{2} \leq z \leq 1$.
Now note that $P^{\prime}(z)=p(z)$. Therefore by integration by parts $a_{1}=\int_{0}^{1} z p(z) d z=\int_{0}^{1} z P^{\prime}(z) d z=$ ${ }_{0}^{1} z P(z)-\int_{0}^{1} P(z) d z$. This equals
$$
\begin{gathered}
1-\int_{\frac{1}{3}}^{\frac{1}{2}}(3 z-1)^{2} d z-\int_{\frac{1}{2}}^{1} 1-3(1-z)^{2} d z \\
=1-\left[\frac{1}{\frac{1}{2}} \frac{(3 z-1)^{3}}{9}-\frac{1}{2}+\left[{ }_{\frac{1}{2}}^{1}(z-1)^{3}\right.\right. \\
=1-\frac{1}{72}-\frac{1}{2}+\frac{1}{8}=\frac{1}{2}+\frac{1}{9} \\
=\frac{11}{18}
\end{gathered}
$$
So the answer is $\left(\frac{11}{18}\right)^{2012}$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n30. [19]",
"solution_match": "\nAnswer: "
}
|
55aac9a1-952e-5fda-8863-d3b807665026
| 609,018
|
Let $S_{7}$ denote all the permutations of $1,2, \ldots, 7$. For any $\pi \in S_{7}$, let $f(\pi)$ be the smallest positive integer $i$ such that $\pi(1), \pi(2), \ldots, \pi(i)$ is a permutation of $1,2, \ldots, i$. Compute $\sum_{\pi \in S_{7}} f(\pi)$.
|
29093 Extend the definition of $f$ to apply for any permutation of $1,2, \ldots, n$, for any positive integer $n$. For positive integer $n$, let $g(n)$ denote the number of permutations $\pi$ of $1,2, \ldots, n$ such that $f(\pi)=n$. We have $g(1)=1$. For fixed $n, k$ (with $k \leq n$ ), the number of permutations $\pi$ of $1,2, \ldots, n$ such that $f(\pi)=k$ is $g(k)(n-k)$ !. This gives us the recursive formula $g(n)=$ $n!-\sum_{k=1}^{n-1} g(k)(n-k)$ !. Using this formula, we find that the first 7 values of $g$ are $1,1,3,13,71,461,3447$. Our sum is then equal to $\sum_{k=1}^{7} k \cdot g(k)(7-k)$ !. Using our computed values of $g$, we get that the sum evaluates to 29093.
|
29093
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Let $S_{7}$ denote all the permutations of $1,2, \ldots, 7$. For any $\pi \in S_{7}$, let $f(\pi)$ be the smallest positive integer $i$ such that $\pi(1), \pi(2), \ldots, \pi(i)$ is a permutation of $1,2, \ldots, i$. Compute $\sum_{\pi \in S_{7}} f(\pi)$.
|
29093 Extend the definition of $f$ to apply for any permutation of $1,2, \ldots, n$, for any positive integer $n$. For positive integer $n$, let $g(n)$ denote the number of permutations $\pi$ of $1,2, \ldots, n$ such that $f(\pi)=n$. We have $g(1)=1$. For fixed $n, k$ (with $k \leq n$ ), the number of permutations $\pi$ of $1,2, \ldots, n$ such that $f(\pi)=k$ is $g(k)(n-k)$ !. This gives us the recursive formula $g(n)=$ $n!-\sum_{k=1}^{n-1} g(k)(n-k)$ !. Using this formula, we find that the first 7 values of $g$ are $1,1,3,13,71,461,3447$. Our sum is then equal to $\sum_{k=1}^{7} k \cdot g(k)(7-k)$ !. Using our computed values of $g$, we get that the sum evaluates to 29093.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n31. [19]",
"solution_match": "\nAnswer: "
}
|
7328e8bc-b488-5dfc-a133-91fb9f0c7948
| 609,019
|
Let $S$ be a set of size 3. How many collections $T$ of subsets of $S$ have the property that for any two subsets $U \in T$ and $V \in T$, both $U \cap V$ and $U \cup V$ are in $T$ ?
|
74 Let us consider the collections $T$ grouped based on the size of the set $X=\bigcup_{U \in T} U$, which we can see also must be in $T$ as long as $T$ contains at least one set. This leads us to count the number of collections on a set of size at most 3 satisfying the desired property with the additional property that the entire set must be in the collection. Let $C_{n}$ denote that number of such collections on a set of size $n$. Our answer will then be $1+\binom{3}{0} C_{0}+\binom{3}{1} C_{1}+\binom{3}{2} C_{2}+\binom{3}{3} C_{3}$, with the additional 1 coming from the empty collection.
Now for such a collection $T$ on a set of $n$ elements, consider the set $I=\bigcap_{U \in T} U$. Suppose this set has size $k$. Then removing all these elements from consideration gives us another such collection on a set of size $n-k$, but now containing the empty set. We can see that for each particular choice of $I$, this gives a bijection to the collections on the set $S$ to the collections on the set $S-I$. This leads us to consider the further restricted collections that must contain both the entire set and the empty set.
It turns out that such restricted collections are a well-studied class of objects called topological spaces. Let $T_{n}$ be the number of topological spaces on $n$ elements. Our argument before shows that $C_{n}=$ $\sum_{k=0}^{n}\binom{n}{k} T_{k}$. It is relatively straightforward to see that $T_{0}=1, T_{1}=1$, and $T_{2}=4$. For a set of size 3 , there are the following spaces. The number of symmetric versions is shown in parentheses.
- $\emptyset,\{a, b, c\}(1)$
- $\emptyset,\{a, b\},\{a, b, c\}(3)$
- $\emptyset,\{a\},\{a, b, c\}(3)$
- $\emptyset,\{a\},\{a, b\},\{a, b, c\}$ (6)
- $\emptyset,\{a\},\{b, c\},\{a, b, c\}$ (3)
- $\emptyset,\{a\},\{a, b\},\{a, c\},\{a, b, c\}(3)$
- $\emptyset,\{a\},\{b\},\{a, b\} \cdot\{a, b, c\}(3)$
- $\emptyset,\{a\},\{b\},\{a, b\},\{a, c\},\{a, b, c\}$ (6)
- $\emptyset,\{a\},\{b\},\{c\},\{a, b\},\{a, c\},\{b, c\},\{a, b, c\}$ (1)
which gives $T_{3}=29$. Tracing back our reductions, we have that $C_{0}=\binom{0}{0} T_{0}=1, C_{1}=\binom{1}{0} T_{0}+\binom{1}{1} T_{1}=$ $2, C_{2}=\binom{2}{0} T_{0}+\binom{2}{1} T_{1}+\binom{2}{2} T_{2}=7, C_{3}=\binom{3}{0} T_{0}+\binom{3}{1} T_{1}+\binom{3}{2} T_{2}+\binom{3}{3} T_{3}=45$, and then our answer is $1+\binom{3}{0} C_{0}+\binom{3}{1} C_{1}+\binom{3}{2} C_{2}+\binom{3}{3} C_{3}=1+1+6+21+45=74$.
|
74
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Let $S$ be a set of size 3. How many collections $T$ of subsets of $S$ have the property that for any two subsets $U \in T$ and $V \in T$, both $U \cap V$ and $U \cup V$ are in $T$ ?
|
74 Let us consider the collections $T$ grouped based on the size of the set $X=\bigcup_{U \in T} U$, which we can see also must be in $T$ as long as $T$ contains at least one set. This leads us to count the number of collections on a set of size at most 3 satisfying the desired property with the additional property that the entire set must be in the collection. Let $C_{n}$ denote that number of such collections on a set of size $n$. Our answer will then be $1+\binom{3}{0} C_{0}+\binom{3}{1} C_{1}+\binom{3}{2} C_{2}+\binom{3}{3} C_{3}$, with the additional 1 coming from the empty collection.
Now for such a collection $T$ on a set of $n$ elements, consider the set $I=\bigcap_{U \in T} U$. Suppose this set has size $k$. Then removing all these elements from consideration gives us another such collection on a set of size $n-k$, but now containing the empty set. We can see that for each particular choice of $I$, this gives a bijection to the collections on the set $S$ to the collections on the set $S-I$. This leads us to consider the further restricted collections that must contain both the entire set and the empty set.
It turns out that such restricted collections are a well-studied class of objects called topological spaces. Let $T_{n}$ be the number of topological spaces on $n$ elements. Our argument before shows that $C_{n}=$ $\sum_{k=0}^{n}\binom{n}{k} T_{k}$. It is relatively straightforward to see that $T_{0}=1, T_{1}=1$, and $T_{2}=4$. For a set of size 3 , there are the following spaces. The number of symmetric versions is shown in parentheses.
- $\emptyset,\{a, b, c\}(1)$
- $\emptyset,\{a, b\},\{a, b, c\}(3)$
- $\emptyset,\{a\},\{a, b, c\}(3)$
- $\emptyset,\{a\},\{a, b\},\{a, b, c\}$ (6)
- $\emptyset,\{a\},\{b, c\},\{a, b, c\}$ (3)
- $\emptyset,\{a\},\{a, b\},\{a, c\},\{a, b, c\}(3)$
- $\emptyset,\{a\},\{b\},\{a, b\} \cdot\{a, b, c\}(3)$
- $\emptyset,\{a\},\{b\},\{a, b\},\{a, c\},\{a, b, c\}$ (6)
- $\emptyset,\{a\},\{b\},\{c\},\{a, b\},\{a, c\},\{b, c\},\{a, b, c\}$ (1)
which gives $T_{3}=29$. Tracing back our reductions, we have that $C_{0}=\binom{0}{0} T_{0}=1, C_{1}=\binom{1}{0} T_{0}+\binom{1}{1} T_{1}=$ $2, C_{2}=\binom{2}{0} T_{0}+\binom{2}{1} T_{1}+\binom{2}{2} T_{2}=7, C_{3}=\binom{3}{0} T_{0}+\binom{3}{1} T_{1}+\binom{3}{2} T_{2}+\binom{3}{3} T_{3}=45$, and then our answer is $1+\binom{3}{0} C_{0}+\binom{3}{1} C_{1}+\binom{3}{2} C_{2}+\binom{3}{3} C_{3}=1+1+6+21+45=74$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n32. [19]",
"solution_match": "\nAnswer: "
}
|
d91dcf9d-f1ef-57d7-8f22-667461b3bf59
| 609,020
|
Compute the decimal expansion of $\sqrt{\pi}$. Your score will be $\min (23, k)$, where $k$ is the number of consecutive correct digits immediately following the decimal point in your answer.
|
1.77245385090551602729816... For this problem, it is useful to know the following square root algorithm that allows for digit-by-digit extraction of $\sqrt{x}$ and gives one decimal place of $\sqrt{x}$ for each two decimal places of $x$. We will illustrate how to extract the second digit after the decimal point of $\sqrt{\pi}$, knowing that $\pi=3.1415 \cdots$ and $\sqrt{\pi}=1.7 \cdots$.
Let $d$ be the next decimal digit. Then $d$ should be the largest digit such that $(1.7+0.01 d)^{2}<\pi$, which in this case we will treat as $(1.7+0.01 d)^{2}<3.1415$. Expanding this, we get $2.89+0.034 d+0.0001 d^{2}<$ 3.1415, from which we get the value of $d$ to be approximately $\left\lfloor\frac{3.1415-2.89}{0.034}\right\rfloor=\left\lfloor\frac{0.2515}{0.034}\right\rfloor=7$, since the $0.0001 d^{2}$ term is negligible. Indeed, 7 is the largest such digit, and so $d=7$ is the second digit of $\sqrt{\pi}$. Because we are constantly subtracting the square of our extracted answer so far, we can record the difference in a manner similar to long division, which yields a quick method of extracting square roots by hand.
|
1.77245385090551602729816
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Compute the decimal expansion of $\sqrt{\pi}$. Your score will be $\min (23, k)$, where $k$ is the number of consecutive correct digits immediately following the decimal point in your answer.
|
1.77245385090551602729816... For this problem, it is useful to know the following square root algorithm that allows for digit-by-digit extraction of $\sqrt{x}$ and gives one decimal place of $\sqrt{x}$ for each two decimal places of $x$. We will illustrate how to extract the second digit after the decimal point of $\sqrt{\pi}$, knowing that $\pi=3.1415 \cdots$ and $\sqrt{\pi}=1.7 \cdots$.
Let $d$ be the next decimal digit. Then $d$ should be the largest digit such that $(1.7+0.01 d)^{2}<\pi$, which in this case we will treat as $(1.7+0.01 d)^{2}<3.1415$. Expanding this, we get $2.89+0.034 d+0.0001 d^{2}<$ 3.1415, from which we get the value of $d$ to be approximately $\left\lfloor\frac{3.1415-2.89}{0.034}\right\rfloor=\left\lfloor\frac{0.2515}{0.034}\right\rfloor=7$, since the $0.0001 d^{2}$ term is negligible. Indeed, 7 is the largest such digit, and so $d=7$ is the second digit of $\sqrt{\pi}$. Because we are constantly subtracting the square of our extracted answer so far, we can record the difference in a manner similar to long division, which yields a quick method of extracting square roots by hand.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n33. [23]",
"solution_match": "\nAnswer: "
}
|
e1281a65-fb94-5a9b-a270-b7a4055be775
| 609,021
|
Let Q be the product of the sizes of all the non-empty subsets of $\{1,2, \ldots, 2012\}$, and let $M=$ $\log _{2}\left(\log _{2}(Q)\right)$. Give lower and upper bounds $L$ and $U$ for $M$. If $0<L \leq M \leq U$, then your score will be $\min \left(23,\left\lfloor\frac{23}{3(U-L)}\right\rfloor\right)$. Otherwise, your score will be 0 .
|
2015.318180... In this solution, all logarithms will be taken in base 2. It is clear that $\log (Q)=\sum_{k=1}^{2012}\binom{2012}{k} \log (k)$. By paring $k$ with $2012-k$, we get $\sum_{k=1}^{2011} 0.5 * \log (k(2012-k))\binom{2012}{k}+$ $\log (2012)$, which is between $0.5 * \log (2012) \sum_{k=0}^{2012}\binom{2012}{k}$ and $\log (2012) \sum_{k=0}^{2012}\binom{2012}{k}$; i.e., the answer is between $\log (2012) 2^{2011}$ and $\log (2012) 2^{2012}$. Thus $\log (\log (Q))$ is between $2011+\log (\log (2012))$ and $2012+\log (\log (2012))$. Also $3<\log (\log (2012))<4$. So we get $2014<M<2016$.
|
2015.318180
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Let Q be the product of the sizes of all the non-empty subsets of $\{1,2, \ldots, 2012\}$, and let $M=$ $\log _{2}\left(\log _{2}(Q)\right)$. Give lower and upper bounds $L$ and $U$ for $M$. If $0<L \leq M \leq U$, then your score will be $\min \left(23,\left\lfloor\frac{23}{3(U-L)}\right\rfloor\right)$. Otherwise, your score will be 0 .
|
2015.318180... In this solution, all logarithms will be taken in base 2. It is clear that $\log (Q)=\sum_{k=1}^{2012}\binom{2012}{k} \log (k)$. By paring $k$ with $2012-k$, we get $\sum_{k=1}^{2011} 0.5 * \log (k(2012-k))\binom{2012}{k}+$ $\log (2012)$, which is between $0.5 * \log (2012) \sum_{k=0}^{2012}\binom{2012}{k}$ and $\log (2012) \sum_{k=0}^{2012}\binom{2012}{k}$; i.e., the answer is between $\log (2012) 2^{2011}$ and $\log (2012) 2^{2012}$. Thus $\log (\log (Q))$ is between $2011+\log (\log (2012))$ and $2012+\log (\log (2012))$. Also $3<\log (\log (2012))<4$. So we get $2014<M<2016$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n34. [23]",
"solution_match": "\nAnswer: "
}
|
1b1851d6-d6a5-5ba0-92e6-7d30663b78d5
| 609,022
|
Let $N$ be the number of distinct roots of $\prod_{k=1}^{2012}\left(x^{k}-1\right)$. Give lower and upper bounds $L$ and $U$ on $N$. If $0<L \leq N \leq U$, then your score will be $\left\lfloor\frac{23}{(U / L)^{1.7}}\right\rfloor$. Otherwise, your score will be 0 .
|
1231288 For $x$ to be such a number is equivalent to $x$ being an $k^{\text {th }}$ root of unity for some $k$ up to 2012. For each $k$, there are $\varphi(k)$ primitive $k^{\text {th }}$ roots of unity, so the total number of roots is $\sum_{k=1}^{2012} \varphi(k)$.
We will give a good approximation of this number using well known facts about the Möbius function, defined by $\mu(n)=\left\{\begin{array}{ll}0 & \text { if } n \text { is not squarefree } \\ (-1)^{r} & \text { if } n \text { has } r \text { distinct prime factors }\end{array}\right.$. It turns out that if $f(n)=\sum_{d \mid n} g(d)$, then $g(n)=\sum_{d \mid n} \mu(d) f\left(\frac{n}{d}\right)$. Using this fact, since $n=\sum_{d \mid n} \varphi(d)$, we have that $\varphi(n)=\sum_{d \mid n} \mu(d) \frac{n}{d}$. Now we have reduced the problem to estimating $\sum_{k=1}^{2012} \sum_{d \mid k} \mu(d) \frac{k}{d}$. Let $a=\frac{k}{d}$, so we obtain $\sum_{k=1}^{2012} \sum_{d \mid k} a \mu(d)$.
We can interchange the order of summation by writing
$$
\begin{aligned}
\sum_{d=1}^{2012} \sum_{a=1}^{\left\lfloor\frac{2012}{d}\right\rfloor} a \mu(d) & \approx \sum_{d=1}^{2012} \mu(d) \frac{1}{2}\left(\left\lfloor\frac{2012}{d}\right\rfloor\right)^{2} \\
& \approx \sum_{d=1}^{2012} \mu(d) \frac{2012^{2}}{2 d^{2}} \\
& =\frac{2012^{2}}{2} \sum_{d=1}^{2012} \frac{\mu(d)}{d^{2}} \\
& \approx \frac{2012^{2}}{2} \sum_{d=1}^{\infty} \frac{\mu(d)}{d^{2}}
\end{aligned}
$$
The Möbius function also satisfies the property that $\sum_{d \mid n} \mu(d)=\left\{\begin{array}{ll}1 & \text { if } n=1 \\ 0 & \text { otherwise }\end{array}\right.$, which can be seen as a special case of the theorem above (letting $f(n)=1, g(n)=\left\{\begin{array}{ll}1 & \text { if } n=1 \\ 0 & \text { otherwise }\end{array}\right.$ ). We can then see that $\left(\sum_{d=1}^{\infty} \frac{\mu(d)}{d^{2}}\right)\left(\sum_{c=1}^{\infty} \frac{1}{c^{2}}\right)=\frac{1}{1^{2}}=1$, so $\sum_{d=1}^{\infty} \frac{\mu(d)}{d^{2}}=\frac{6}{\pi^{2}}$. Therefore, we have $\sum_{k=1}^{2012} \varphi(k) \approx \frac{3}{\pi^{2}} \cdot 2012^{2}=$ 1230488.266... 2012 is large enough that all of our approximations are pretty accurate and we should be comfortable perturbing this estimate by a small factor to give bounding values.
|
1230488.266
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let $N$ be the number of distinct roots of $\prod_{k=1}^{2012}\left(x^{k}-1\right)$. Give lower and upper bounds $L$ and $U$ on $N$. If $0<L \leq N \leq U$, then your score will be $\left\lfloor\frac{23}{(U / L)^{1.7}}\right\rfloor$. Otherwise, your score will be 0 .
|
1231288 For $x$ to be such a number is equivalent to $x$ being an $k^{\text {th }}$ root of unity for some $k$ up to 2012. For each $k$, there are $\varphi(k)$ primitive $k^{\text {th }}$ roots of unity, so the total number of roots is $\sum_{k=1}^{2012} \varphi(k)$.
We will give a good approximation of this number using well known facts about the Möbius function, defined by $\mu(n)=\left\{\begin{array}{ll}0 & \text { if } n \text { is not squarefree } \\ (-1)^{r} & \text { if } n \text { has } r \text { distinct prime factors }\end{array}\right.$. It turns out that if $f(n)=\sum_{d \mid n} g(d)$, then $g(n)=\sum_{d \mid n} \mu(d) f\left(\frac{n}{d}\right)$. Using this fact, since $n=\sum_{d \mid n} \varphi(d)$, we have that $\varphi(n)=\sum_{d \mid n} \mu(d) \frac{n}{d}$. Now we have reduced the problem to estimating $\sum_{k=1}^{2012} \sum_{d \mid k} \mu(d) \frac{k}{d}$. Let $a=\frac{k}{d}$, so we obtain $\sum_{k=1}^{2012} \sum_{d \mid k} a \mu(d)$.
We can interchange the order of summation by writing
$$
\begin{aligned}
\sum_{d=1}^{2012} \sum_{a=1}^{\left\lfloor\frac{2012}{d}\right\rfloor} a \mu(d) & \approx \sum_{d=1}^{2012} \mu(d) \frac{1}{2}\left(\left\lfloor\frac{2012}{d}\right\rfloor\right)^{2} \\
& \approx \sum_{d=1}^{2012} \mu(d) \frac{2012^{2}}{2 d^{2}} \\
& =\frac{2012^{2}}{2} \sum_{d=1}^{2012} \frac{\mu(d)}{d^{2}} \\
& \approx \frac{2012^{2}}{2} \sum_{d=1}^{\infty} \frac{\mu(d)}{d^{2}}
\end{aligned}
$$
The Möbius function also satisfies the property that $\sum_{d \mid n} \mu(d)=\left\{\begin{array}{ll}1 & \text { if } n=1 \\ 0 & \text { otherwise }\end{array}\right.$, which can be seen as a special case of the theorem above (letting $f(n)=1, g(n)=\left\{\begin{array}{ll}1 & \text { if } n=1 \\ 0 & \text { otherwise }\end{array}\right.$ ). We can then see that $\left(\sum_{d=1}^{\infty} \frac{\mu(d)}{d^{2}}\right)\left(\sum_{c=1}^{\infty} \frac{1}{c^{2}}\right)=\frac{1}{1^{2}}=1$, so $\sum_{d=1}^{\infty} \frac{\mu(d)}{d^{2}}=\frac{6}{\pi^{2}}$. Therefore, we have $\sum_{k=1}^{2012} \varphi(k) \approx \frac{3}{\pi^{2}} \cdot 2012^{2}=$ 1230488.266... 2012 is large enough that all of our approximations are pretty accurate and we should be comfortable perturbing this estimate by a small factor to give bounding values.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n35. [23]",
"solution_match": "\nAnswer: "
}
|
9452592f-55c0-59f3-972d-c7bad2aa148a
| 609,023
|
Maria is hopping up a flight of stairs with 100 steps. At every hop, she advances some integer number of steps. Each hop she makes has fewer steps. However, the positive difference between the length of consecutive hops decreases. Let $P$ be the number of distinct ways she can hop up the stairs. Find lower and upper bounds $L$ and $U$ for $P$. If $0<L \leq P \leq U$, your score will be $\left\lfloor\frac{23}{\sqrt{U / L}}\right\rfloor$. Otherwise, your score will be 0 .
|
6922 Consider the sequence of hops backwards. It is an increasing sequence where the first finite differences are increasing, so all the second finite differences are all positive integers. Furthermore, given positive integers $a, e_{0}$ (representing the initial value and initial first finite difference), and a sequence of positive integers $e_{1}, e_{2}, \ldots, e_{k}$, representing the second finite differences, we obtain a sequence of $k+2$ integers satisfying our constraints where the $i$-th term is equal to $a+\sum_{j=0}^{i-2}(i-j-1) e_{j}$. The sum of these values is equal to $(k+2) a+\sum_{j=0}^{k} \frac{(j+1)(j+2)}{2} e_{k-j}$. The number of sequences of length $k+2$ with sum 100 is then the number of positive integer solutions to $(k+2) a+\sum_{j=0}^{k} \frac{(j+1)(j+2)}{2} e_{k-j}=$ 100 in $a, e_{0}, \ldots, e_{k}$.
We can now approximate a count of the total number of solutions by caseworking over the possible values of $k$. First, we must consider all sequences of length 1 or 2 ; it easy to see that there are 1 and 49 of these, respectively. Otherwise, we want to consider the following equations:
$$
\begin{aligned}
x_{1}+3 x_{2}+3 x_{3} & =100, \\
x_{1}+4 x_{2}+3 x_{3}+6 x_{4} & =100, \\
x_{1}+5 x_{2}+3 x_{3}+6 x_{4}+10 x_{5} & =100, \\
x_{1}+6 x_{2}+3 x_{3}+6 x_{4}+10 x_{5}+15 x_{6} & =100, \\
x_{1}+7 x_{2}+3 x_{3}+6 x_{4}+10 x_{5}+15 x_{6}+21 x_{7} & =100, \\
x_{1}+8 x_{2}+3 x_{3}+6 x_{4}+10 x_{5}+15 x_{6}+21 x_{7}+28 x_{8} & =100 .
\end{aligned}
$$
(Any larger values of $k$ will yield equations with no solutions, as the sum of the coefficients will be greater than 100 in all of these.) We can compute the number of solutions to the last equation easily: there are 8 . For the remaining 5 equations, we can use the following observation to estimate the number of solutions. Suppose we wanted to count the number of positive integer solutions to
$\sum_{i=1}^{k} c_{i} x_{i}=n$, where $c_{i}=1$. This is equivalent to finding the number of nonnegative integer solutions to $\sum_{i=1}^{k} c_{i} x_{i}=n-\sum_{i=1}^{k} c_{i}$, which is also equivalent to finding the number of nonnegative integer solutions to $\sum_{i=2}^{k} c_{i} x_{i} \leq n-\sum_{i=1}^{k} c_{i}$. Let $n^{\prime}=n-\sum_{i=1}^{k} c_{i}$. Each $x_{i}$ can take values from 0 to $\frac{n^{\prime}}{c_{i}}$, giving about $\frac{\left(n^{\prime}\right)^{k-1}}{\prod_{i=2}^{k} c_{i}}$ choices. Of course, not all of these choices work; we try to estimate the probability that one does. We can think of a random selection of $x_{i}$ as approximated by choosing $X_{i}$ uniformly from $[0,1]$, then setting $x_{i}=X_{i} \cdot \frac{n^{\prime}}{c_{i}}$. The condition would then be $\sum_{i=2}^{k} X_{k} \leq 1$. The probability of this occuring is $\frac{1}{(k-1)!}$, so an approximate number of solutions would be $\frac{\left(n^{\prime}\right)^{k-1}}{(k-1)!\prod_{i=2}^{k} c_{i}}$. We can use these values to get a lower bound of around 4000, and we can also use $n$ instead of $n^{\prime \prime}$ for a reasonable upper bound of 16000 .
|
6922
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
Maria is hopping up a flight of stairs with 100 steps. At every hop, she advances some integer number of steps. Each hop she makes has fewer steps. However, the positive difference between the length of consecutive hops decreases. Let $P$ be the number of distinct ways she can hop up the stairs. Find lower and upper bounds $L$ and $U$ for $P$. If $0<L \leq P \leq U$, your score will be $\left\lfloor\frac{23}{\sqrt{U / L}}\right\rfloor$. Otherwise, your score will be 0 .
|
6922 Consider the sequence of hops backwards. It is an increasing sequence where the first finite differences are increasing, so all the second finite differences are all positive integers. Furthermore, given positive integers $a, e_{0}$ (representing the initial value and initial first finite difference), and a sequence of positive integers $e_{1}, e_{2}, \ldots, e_{k}$, representing the second finite differences, we obtain a sequence of $k+2$ integers satisfying our constraints where the $i$-th term is equal to $a+\sum_{j=0}^{i-2}(i-j-1) e_{j}$. The sum of these values is equal to $(k+2) a+\sum_{j=0}^{k} \frac{(j+1)(j+2)}{2} e_{k-j}$. The number of sequences of length $k+2$ with sum 100 is then the number of positive integer solutions to $(k+2) a+\sum_{j=0}^{k} \frac{(j+1)(j+2)}{2} e_{k-j}=$ 100 in $a, e_{0}, \ldots, e_{k}$.
We can now approximate a count of the total number of solutions by caseworking over the possible values of $k$. First, we must consider all sequences of length 1 or 2 ; it easy to see that there are 1 and 49 of these, respectively. Otherwise, we want to consider the following equations:
$$
\begin{aligned}
x_{1}+3 x_{2}+3 x_{3} & =100, \\
x_{1}+4 x_{2}+3 x_{3}+6 x_{4} & =100, \\
x_{1}+5 x_{2}+3 x_{3}+6 x_{4}+10 x_{5} & =100, \\
x_{1}+6 x_{2}+3 x_{3}+6 x_{4}+10 x_{5}+15 x_{6} & =100, \\
x_{1}+7 x_{2}+3 x_{3}+6 x_{4}+10 x_{5}+15 x_{6}+21 x_{7} & =100, \\
x_{1}+8 x_{2}+3 x_{3}+6 x_{4}+10 x_{5}+15 x_{6}+21 x_{7}+28 x_{8} & =100 .
\end{aligned}
$$
(Any larger values of $k$ will yield equations with no solutions, as the sum of the coefficients will be greater than 100 in all of these.) We can compute the number of solutions to the last equation easily: there are 8 . For the remaining 5 equations, we can use the following observation to estimate the number of solutions. Suppose we wanted to count the number of positive integer solutions to
$\sum_{i=1}^{k} c_{i} x_{i}=n$, where $c_{i}=1$. This is equivalent to finding the number of nonnegative integer solutions to $\sum_{i=1}^{k} c_{i} x_{i}=n-\sum_{i=1}^{k} c_{i}$, which is also equivalent to finding the number of nonnegative integer solutions to $\sum_{i=2}^{k} c_{i} x_{i} \leq n-\sum_{i=1}^{k} c_{i}$. Let $n^{\prime}=n-\sum_{i=1}^{k} c_{i}$. Each $x_{i}$ can take values from 0 to $\frac{n^{\prime}}{c_{i}}$, giving about $\frac{\left(n^{\prime}\right)^{k-1}}{\prod_{i=2}^{k} c_{i}}$ choices. Of course, not all of these choices work; we try to estimate the probability that one does. We can think of a random selection of $x_{i}$ as approximated by choosing $X_{i}$ uniformly from $[0,1]$, then setting $x_{i}=X_{i} \cdot \frac{n^{\prime}}{c_{i}}$. The condition would then be $\sum_{i=2}^{k} X_{k} \leq 1$. The probability of this occuring is $\frac{1}{(k-1)!}$, so an approximate number of solutions would be $\frac{\left(n^{\prime}\right)^{k-1}}{(k-1)!\prod_{i=2}^{k} c_{i}}$. We can use these values to get a lower bound of around 4000, and we can also use $n$ instead of $n^{\prime \prime}$ for a reasonable upper bound of 16000 .
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-guts-solutions.jsonl",
"problem_match": "\n36. [23]",
"solution_match": "\nAnswer: "
}
|
d19fde63-e4bc-50ba-b7b6-eb2a214679ad
| 609,024
|
Five points are chosen on a sphere of radius 1. What is the maximum possible volume of their convex hull?
|
$\sqrt{\frac{\sqrt{3}}{2}}$ Let the points be $A, B, C, X, Y$ so that $X$ and $Y$ are on opposite sides of the plane defined by triangle $A B C$. The volume is $1 / 3$ the product of the area of $A B C$ and sum of the distances from $X$ and $Y$ to the plane defined by $A B C$. The area of $A B C$ is maximized when the plane containing it intersects the sphere in the largest possible cross section, and $A B C$ is equilateral: this gives an area of $3 \sqrt{3} / 4$. Then, the sum of the distances from $X$ and $Y$ to the plane of $A B C$ is at most 2. This is clearly obtainable when A, B, and C form an equilateral triangle circumscribed by the equator of the sphere, and X and Y are at the poles, and we get a volume of $\sqrt{3} / 2$.
|
\sqrt{\frac{\sqrt{3}}{2}}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Five points are chosen on a sphere of radius 1. What is the maximum possible volume of their convex hull?
|
$\sqrt{\frac{\sqrt{3}}{2}}$ Let the points be $A, B, C, X, Y$ so that $X$ and $Y$ are on opposite sides of the plane defined by triangle $A B C$. The volume is $1 / 3$ the product of the area of $A B C$ and sum of the distances from $X$ and $Y$ to the plane defined by $A B C$. The area of $A B C$ is maximized when the plane containing it intersects the sphere in the largest possible cross section, and $A B C$ is equilateral: this gives an area of $3 \sqrt{3} / 4$. Then, the sum of the distances from $X$ and $Y$ to the plane of $A B C$ is at most 2. This is clearly obtainable when A, B, and C form an equilateral triangle circumscribed by the equator of the sphere, and X and Y are at the poles, and we get a volume of $\sqrt{3} / 2$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-team1-solutions.jsonl",
"problem_match": "\n7. [30]",
"solution_match": "\nAnswer: "
}
|
e4b2b362-e5ea-5682-b3ec-b119584cc713
| 609,031
|
Triangle $A B C$ has $A B=5, B C=3 \sqrt{2}$, and $A C=1$. If the altitude from $B$ to $A C$ and the angle bisector of angle $A$ intersect at at $D$, what is $B D$ ?
|
| $\frac{5}{3}$ |
| :---: |
| Let $E$ | be the foot of the perpendicular from $B$ to line $A C$. By the Law of Cosines, $\cos \angle B A C=\frac{4}{5}$, and it follows that $B E=3$ and $A E=4$. Now, by the Angle Bisector Theorem, $\frac{B D}{B E}=\frac{A B}{A B+A E}=\frac{5}{9}$, so $B D=\frac{5}{3}$.
|
\frac{5}{3}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Triangle $A B C$ has $A B=5, B C=3 \sqrt{2}$, and $A C=1$. If the altitude from $B$ to $A C$ and the angle bisector of angle $A$ intersect at at $D$, what is $B D$ ?
|
| $\frac{5}{3}$ |
| :---: |
| Let $E$ | be the foot of the perpendicular from $B$ to line $A C$. By the Law of Cosines, $\cos \angle B A C=\frac{4}{5}$, and it follows that $B E=3$ and $A E=4$. Now, by the Angle Bisector Theorem, $\frac{B D}{B E}=\frac{A B}{A B+A E}=\frac{5}{9}$, so $B D=\frac{5}{3}$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-team2-solutions.jsonl",
"problem_match": "\n1. [10]",
"solution_match": "\nAnswer: "
}
|
5faeecde-0e69-5bd2-9fc2-20f87debf045
| 609,035
|
You are given two line segments of length $2^{n}$ for each integer $0 \leq n \leq 10$. How many distinct nondegenerate triangles can you form with three of the segments? Two triangles are considered distinct if they are not congruent.
|
55 First, observe that if we have three sticks of distinct lengths $2^{a}<2^{b}<2^{c}$, then $2^{a}+2^{b}<2^{b+1} \leq 2^{c}$, so we cannot form a triangle. Thus, we must have (exactly) two of our sticks the same length, so that our triangle has side lengths $2^{a}, 2^{a}, 2^{b}$. This triangle is non-degenerate if and only if $2^{a+1}>2^{b}$, and since $a \neq b$, this happens if and only if $a>b$. Clearly, there are $\binom{11}{2}=55$ ways to choose such $a, b$.
|
55
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
You are given two line segments of length $2^{n}$ for each integer $0 \leq n \leq 10$. How many distinct nondegenerate triangles can you form with three of the segments? Two triangles are considered distinct if they are not congruent.
|
55 First, observe that if we have three sticks of distinct lengths $2^{a}<2^{b}<2^{c}$, then $2^{a}+2^{b}<2^{b+1} \leq 2^{c}$, so we cannot form a triangle. Thus, we must have (exactly) two of our sticks the same length, so that our triangle has side lengths $2^{a}, 2^{a}, 2^{b}$. This triangle is non-degenerate if and only if $2^{a+1}>2^{b}$, and since $a \neq b$, this happens if and only if $a>b$. Clearly, there are $\binom{11}{2}=55$ ways to choose such $a, b$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-team2-solutions.jsonl",
"problem_match": "\n2. [10]",
"solution_match": "\nAnswer: "
}
|
64707676-c47a-517d-91d1-4c8a7a5b3fa9
| 609,036
|
Mac is trying to fill 2012 barrels with apple cider. He starts with 0 energy. Every minute, he may rest, gaining 1 energy, or if he has $n$ energy, he may expend $k$ energy $(0 \leq k \leq n)$ to fill up to $n(k+1)$ barrels with cider. What is the minimal number of minutes he needs to fill all the barrels?
|
46 First, suppose that Mac fills barrels during two consecutive minutes. Let his energy immediately before doing so be $n$, and the energy spent in the next two minutes be $k_{1}, k_{2}$, respectively. It is not difficult to check that he can fill at least as many barrels by spending $k_{1}+k_{2}+1$ energy and resting for an additional minute before doing so, so that his starting energy is $n+1$ : this does not change the total amount of time. Furthermore, this does not affect the amount of energy Mac has remaining afterward. We may thus assume that Mac first rests for a (not necessarily fixed) period of time, then spends one minute filling barrels, and repeats this process until all of the barrels are filled.
Next, we check that he only needs to fill barrels once. Suppose that Mac first rests for $n_{1}$ minutes, then spends $k_{1}$ energy, and next rests for $n_{2}$ minutes and spends $k_{2}$ energy. It is again not difficult to check that Mac can instead rest for $n_{1}+n_{2}+1$ minutes and spend $k_{1}+k_{2}+1$ energy, to increase the number of barrels filled, while not changing the amount of time nor the energy remaining. Iterating this operation, we can reduce our problem to the case in which Mac first rests for $n$ minutes, then spends $n$ energy filling all of the barrels.
We need $n(n+1) \geq 2012$, so $n \geq 45$, and Mac needs a minimum of 46 minutes.
|
46
|
Yes
|
Yes
|
math-word-problem
|
Logic and Puzzles
|
Mac is trying to fill 2012 barrels with apple cider. He starts with 0 energy. Every minute, he may rest, gaining 1 energy, or if he has $n$ energy, he may expend $k$ energy $(0 \leq k \leq n)$ to fill up to $n(k+1)$ barrels with cider. What is the minimal number of minutes he needs to fill all the barrels?
|
46 First, suppose that Mac fills barrels during two consecutive minutes. Let his energy immediately before doing so be $n$, and the energy spent in the next two minutes be $k_{1}, k_{2}$, respectively. It is not difficult to check that he can fill at least as many barrels by spending $k_{1}+k_{2}+1$ energy and resting for an additional minute before doing so, so that his starting energy is $n+1$ : this does not change the total amount of time. Furthermore, this does not affect the amount of energy Mac has remaining afterward. We may thus assume that Mac first rests for a (not necessarily fixed) period of time, then spends one minute filling barrels, and repeats this process until all of the barrels are filled.
Next, we check that he only needs to fill barrels once. Suppose that Mac first rests for $n_{1}$ minutes, then spends $k_{1}$ energy, and next rests for $n_{2}$ minutes and spends $k_{2}$ energy. It is again not difficult to check that Mac can instead rest for $n_{1}+n_{2}+1$ minutes and spend $k_{1}+k_{2}+1$ energy, to increase the number of barrels filled, while not changing the amount of time nor the energy remaining. Iterating this operation, we can reduce our problem to the case in which Mac first rests for $n$ minutes, then spends $n$ energy filling all of the barrels.
We need $n(n+1) \geq 2012$, so $n \geq 45$, and Mac needs a minimum of 46 minutes.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-team2-solutions.jsonl",
"problem_match": "\n3. [10]",
"solution_match": "\nAnswer: "
}
|
68058de5-867d-56be-8bf0-d23a2f8f58ae
| 609,037
|
A restaurant has some number of seats, arranged in a line. Its customers are in parties arranged in a queue. To seat its customers, the restaurant takes the next party in the queue and attempts to seat all of the party's member(s) in a contiguous block of unoccupied seats. If one or more such blocks exist, then the restaurant places the party in an arbitrarily selected block; otherwise, the party leaves.
Suppose the queue has parties of sizes $6,4,2,5,3,1$ from front to back, and all seats are initially empty. What is the minimal number of seats the restaurant needs to guarantee that it will seat all of these customers?
|
29 First, note that if there are only 28 seats, it is possible for the seating not to be possible, in the following way. The party of six could be seated in such a way that the remaining contiguous regions have sizes 10 and 12 . Then, the party of 4 is seated in the middle of the region of size 12 , and the party of 2 is seated in the middle of the region of size 10 , so that the remaining regions all of size 4 . Now, it is impossible to seat the party of 5 . It is clear that fewer than 28 seats also make it impossible to guarantee that everyone can be seated.
Now, given 29 seats, clearly, the first party can be seated. Afterward, 23 seats remain in at most 2 contiguous regions, one of which has to have size at least 4 . Next, 19 seats remain in at most 3
contiguous regions, one of which has size at least 2. 17 seats in at most 4 contiguous regions remain for the party of 5 , and one region must have size at least 5 . Finally, 12 seats in at most 5 contiguous regions are available for the party of 3 , and the party of 1 can take any remaining seat. Our answer is therefore 29.
Remark: We can arrive at the answer of 29 by doing the above argument in reverse.
|
29
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
A restaurant has some number of seats, arranged in a line. Its customers are in parties arranged in a queue. To seat its customers, the restaurant takes the next party in the queue and attempts to seat all of the party's member(s) in a contiguous block of unoccupied seats. If one or more such blocks exist, then the restaurant places the party in an arbitrarily selected block; otherwise, the party leaves.
Suppose the queue has parties of sizes $6,4,2,5,3,1$ from front to back, and all seats are initially empty. What is the minimal number of seats the restaurant needs to guarantee that it will seat all of these customers?
|
29 First, note that if there are only 28 seats, it is possible for the seating not to be possible, in the following way. The party of six could be seated in such a way that the remaining contiguous regions have sizes 10 and 12 . Then, the party of 4 is seated in the middle of the region of size 12 , and the party of 2 is seated in the middle of the region of size 10 , so that the remaining regions all of size 4 . Now, it is impossible to seat the party of 5 . It is clear that fewer than 28 seats also make it impossible to guarantee that everyone can be seated.
Now, given 29 seats, clearly, the first party can be seated. Afterward, 23 seats remain in at most 2 contiguous regions, one of which has to have size at least 4 . Next, 19 seats remain in at most 3
contiguous regions, one of which has size at least 2. 17 seats in at most 4 contiguous regions remain for the party of 5 , and one region must have size at least 5 . Finally, 12 seats in at most 5 contiguous regions are available for the party of 3 , and the party of 1 can take any remaining seat. Our answer is therefore 29.
Remark: We can arrive at the answer of 29 by doing the above argument in reverse.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-team2-solutions.jsonl",
"problem_match": "\n4. [10]",
"solution_match": "\nAnswer: "
}
|
aefaab5d-28db-5761-81d3-ae3ea5e9052d
| 609,038
|
Steph and Jeff each start with the number 4, and Travis is flipping a coin. Every time he flips a heads, Steph replaces her number $x$ with $2 x-1$, and Jeff replaces his number $y$ with $y+8$. Every time he flips a tails, Steph replaces her number $x$ with $\frac{x+1}{2}$, and Jeff replaces his number $y$ with $y-3$. After some (positive) number of coin flips, Steph and Jeff miraculously end up with the same number below 2012. How many times was the coin flipped?
|
137 Suppose that $a$ heads and $b$ tails are flipped. Jeff's number at the end is $4+8 a-3 b$. Note that the operations which Steph applies are inverses of each other, and as a result it is not difficult to check by induction that her final number is simply $1+3 \cdot 2^{a-b}$.
We now have $3+3(a-b)+5 a=3 \cdot 2^{a-b}$. Letting $n=a-b$, we see that $2^{n}-n-1$ must be divisible by 5 , so that $a$ is an integer. In particular, $n$ is a positive integer. Furthermore, we have $1+3 \cdot 2^{n}<2012$, so that $n \leq 9$. We see that the only possibility is for $n=7=a-b$, and thus $4+8 a-3 b=385$. Solving, we get $a=72, b=65$, so our answer is $72+65=137$.
|
137
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Steph and Jeff each start with the number 4, and Travis is flipping a coin. Every time he flips a heads, Steph replaces her number $x$ with $2 x-1$, and Jeff replaces his number $y$ with $y+8$. Every time he flips a tails, Steph replaces her number $x$ with $\frac{x+1}{2}$, and Jeff replaces his number $y$ with $y-3$. After some (positive) number of coin flips, Steph and Jeff miraculously end up with the same number below 2012. How many times was the coin flipped?
|
137 Suppose that $a$ heads and $b$ tails are flipped. Jeff's number at the end is $4+8 a-3 b$. Note that the operations which Steph applies are inverses of each other, and as a result it is not difficult to check by induction that her final number is simply $1+3 \cdot 2^{a-b}$.
We now have $3+3(a-b)+5 a=3 \cdot 2^{a-b}$. Letting $n=a-b$, we see that $2^{n}-n-1$ must be divisible by 5 , so that $a$ is an integer. In particular, $n$ is a positive integer. Furthermore, we have $1+3 \cdot 2^{n}<2012$, so that $n \leq 9$. We see that the only possibility is for $n=7=a-b$, and thus $4+8 a-3 b=385$. Solving, we get $a=72, b=65$, so our answer is $72+65=137$.
|
{
"resource_path": "HarvardMIT/segmented/en-152-2012-feb-team2-solutions.jsonl",
"problem_match": "\n5. [10]",
"solution_match": "\nAnswer: "
}
|
93ec7458-d2c1-5f1e-ab65-c3ce50bc1878
| 609,039
|
What is the sum of all of the distinct prime factors of $25^{3}-27^{2}$ ?
|
28 We note that $25^{3}-27^{2}=5^{6}-3^{6}=\left(5^{3}-3^{3}\right)\left(5^{3}+3^{3}\right)=(5-3)\left(5^{2}+5 \cdot 3+3^{2}\right)(5+$ $3)\left(5^{2}-5 \cdot 3+3^{2}\right)=2 \cdot 7^{2} \cdot 2^{3} \cdot 19$, so the sum of the distinct prime factors is $2+7+19=28$.
|
28
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
What is the sum of all of the distinct prime factors of $25^{3}-27^{2}$ ?
|
28 We note that $25^{3}-27^{2}=5^{6}-3^{6}=\left(5^{3}-3^{3}\right)\left(5^{3}+3^{3}\right)=(5-3)\left(5^{2}+5 \cdot 3+3^{2}\right)(5+$ $3)\left(5^{2}-5 \cdot 3+3^{2}\right)=2 \cdot 7^{2} \cdot 2^{3} \cdot 19$, so the sum of the distinct prime factors is $2+7+19=28$.
|
{
"resource_path": "HarvardMIT/segmented/en-161-2012-nov-gen-solutions.jsonl",
"problem_match": "\n1. [3]",
"solution_match": "\nAnswer: "
}
|
644e9d00-ee49-5950-87c1-20b1731f53cd
| 609,040
|
Let $Q(x)=x^{2}+2 x+3$, and suppose that $P(x)$ is a polynomial such that
$$
P(Q(x))=x^{6}+6 x^{5}+18 x^{4}+32 x^{3}+35 x^{2}+22 x+8
$$
Compute $P(2)$.
|
2 Note that $Q(-1)=2$. Therefore, $P(2)=P(Q(-1))=1-6+18-32+35-22+8=2$.
|
2
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let $Q(x)=x^{2}+2 x+3$, and suppose that $P(x)$ is a polynomial such that
$$
P(Q(x))=x^{6}+6 x^{5}+18 x^{4}+32 x^{3}+35 x^{2}+22 x+8
$$
Compute $P(2)$.
|
2 Note that $Q(-1)=2$. Therefore, $P(2)=P(Q(-1))=1-6+18-32+35-22+8=2$.
|
{
"resource_path": "HarvardMIT/segmented/en-161-2012-nov-gen-solutions.jsonl",
"problem_match": "\n2. [3]",
"solution_match": "\nAnswer: "
}
|
5448eed8-0238-5c1a-9bcc-143755ae842b
| 609,041
|
$A B C D$ is a rectangle with $A B=20$ and $B C=3$. A circle with radius 5 , centered at the midpoint of $D C$, meets the rectangle at four points: $W, X, Y$, and $Z$. Find the area of quadrilateral $W X Y Z$.
|
27 Suppose that $X$ and $Y$ are located on $A B$ with $X$ closer to $A$ than $B$. Let $O$ be the center of the circle, and let $P$ be the midpoint of $A B$. We have $O P \perp A B$ so $O P X$ and $O P Y$ are right triangles with right angles at $P$. Because $O X=O Y=5$ and $O P=3$, we have $X P=P Y=4$ by the Pythagorean theorem. Now, $W X Y Z$ is a trapezoid with $W Z=W O+O Z=5+5=10$, $X Y=X P+P Y=8$, and height 3 , so its area is $\left(\frac{10+8}{2}\right) \times 3=27$.
|
27
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
$A B C D$ is a rectangle with $A B=20$ and $B C=3$. A circle with radius 5 , centered at the midpoint of $D C$, meets the rectangle at four points: $W, X, Y$, and $Z$. Find the area of quadrilateral $W X Y Z$.
|
27 Suppose that $X$ and $Y$ are located on $A B$ with $X$ closer to $A$ than $B$. Let $O$ be the center of the circle, and let $P$ be the midpoint of $A B$. We have $O P \perp A B$ so $O P X$ and $O P Y$ are right triangles with right angles at $P$. Because $O X=O Y=5$ and $O P=3$, we have $X P=P Y=4$ by the Pythagorean theorem. Now, $W X Y Z$ is a trapezoid with $W Z=W O+O Z=5+5=10$, $X Y=X P+P Y=8$, and height 3 , so its area is $\left(\frac{10+8}{2}\right) \times 3=27$.
|
{
"resource_path": "HarvardMIT/segmented/en-161-2012-nov-gen-solutions.jsonl",
"problem_match": "\n3. [3]",
"solution_match": "\nAnswer: "
}
|
506460ac-01ef-5a55-9f70-47b31489b83d
| 609,042
|
If you roll four fair 6 -sided dice, what is the probability that at least three of them will show the same value?
|
| 72 |
| :---: |
| 72 | We have two cases: either three of the dice show one value and the last shows a different value, or all four dice show the same value. In the first case, there are six choices for the value of the dice which are the same and $\binom{4}{3}$ choice for which dice show that value. Then there are 5 choices for the last die. In total, there are $6\binom{4}{3} 5=120$ possibilities. For the second case, there are 6 values that the last die can show. Consequently, the overall probability is, $\frac{120+6}{6^{4}}=\frac{126}{6^{4}}=\frac{7}{72}$.
|
\frac{7}{72}
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
If you roll four fair 6 -sided dice, what is the probability that at least three of them will show the same value?
|
| 72 |
| :---: |
| 72 | We have two cases: either three of the dice show one value and the last shows a different value, or all four dice show the same value. In the first case, there are six choices for the value of the dice which are the same and $\binom{4}{3}$ choice for which dice show that value. Then there are 5 choices for the last die. In total, there are $6\binom{4}{3} 5=120$ possibilities. For the second case, there are 6 values that the last die can show. Consequently, the overall probability is, $\frac{120+6}{6^{4}}=\frac{126}{6^{4}}=\frac{7}{72}$.
|
{
"resource_path": "HarvardMIT/segmented/en-161-2012-nov-gen-solutions.jsonl",
"problem_match": "\n4. [4]",
"solution_match": "\nAnswer: "
}
|
1b740519-988d-54db-b832-3bca18e6c7e5
| 609,043
|
How many ways are there to arrange three indistinguishable rooks on a $6 \times 6$ board such that no two rooks are attacking each other? (Two rooks are attacking each other if and only if they are in the same row or the same column.)
|
2400 There are $6 \times 6=36$ possible places to place the first rook. Since it cannot be in the same row or column as the first, the second rook has $5 \times 5=25$ possible places, and similarly, the third rook has $4 \times 4=16$ possible places. However, the rooks are indistinguishable, so there are $3!=6$ ways to reorder them. Therefore, the number of arrangements is $\frac{36 \times 25 \times 16}{6}=2400$.
|
2400
|
Yes
|
Yes
|
math-word-problem
|
Combinatorics
|
How many ways are there to arrange three indistinguishable rooks on a $6 \times 6$ board such that no two rooks are attacking each other? (Two rooks are attacking each other if and only if they are in the same row or the same column.)
|
2400 There are $6 \times 6=36$ possible places to place the first rook. Since it cannot be in the same row or column as the first, the second rook has $5 \times 5=25$ possible places, and similarly, the third rook has $4 \times 4=16$ possible places. However, the rooks are indistinguishable, so there are $3!=6$ ways to reorder them. Therefore, the number of arrangements is $\frac{36 \times 25 \times 16}{6}=2400$.
|
{
"resource_path": "HarvardMIT/segmented/en-161-2012-nov-gen-solutions.jsonl",
"problem_match": "\n5. [4]",
"solution_match": "\nAnswer: "
}
|
02b55b52-b0ff-507b-b225-ec157c2732f9
| 609,044
|
$A B C D$ is a parallelogram satisfying $A B=7, B C=2$, and $\angle D A B=120^{\circ}$. Parallelogram $E C F A$ is contained in $A B C D$ and is similar to it. Find the ratio of the area of $E C F A$ to the area of $A B C D$.
|
$\boxed{\frac{39}{67}}$ First, note that $BD$ is the long diagonal of $ABCD$, and $AC$ is the long diagonal of $E C F A$. Because the ratio of the areas of similar figures is equal to the square of the ratio of their side lengths, we know that the ratio of the area of $E C F A$ to the area of $A B C D$ is equal to the ratio $\frac{A C^{2}}{B D^{2}}$. Using law of cosines on triangle $A B D$, we have $B D^{2}=A D^{2}+A B^{2}-2(A D)(A B) \cos \left(120^{\circ}\right)=2^{2}+$ $7^{2}-2(2)(7)\left(-\frac{1}{2}\right)=67$.
Using law of cosines on triangle $A B C$, we have $A C^{2}=A B^{2}+B C^{2}-2(A B)(B C) \cos \left(60^{\circ}\right)=7^{2}+2^{2}-$ $2(7)(2)\left(\frac{1}{2}\right)=39$.
Finally, $\frac{A C^{2}}{B D^{2}}=\frac{39}{67}$.
|
\frac{39}{67}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
$A B C D$ is a parallelogram satisfying $A B=7, B C=2$, and $\angle D A B=120^{\circ}$. Parallelogram $E C F A$ is contained in $A B C D$ and is similar to it. Find the ratio of the area of $E C F A$ to the area of $A B C D$.
|
$\boxed{\frac{39}{67}}$ First, note that $BD$ is the long diagonal of $ABCD$, and $AC$ is the long diagonal of $E C F A$. Because the ratio of the areas of similar figures is equal to the square of the ratio of their side lengths, we know that the ratio of the area of $E C F A$ to the area of $A B C D$ is equal to the ratio $\frac{A C^{2}}{B D^{2}}$. Using law of cosines on triangle $A B D$, we have $B D^{2}=A D^{2}+A B^{2}-2(A D)(A B) \cos \left(120^{\circ}\right)=2^{2}+$ $7^{2}-2(2)(7)\left(-\frac{1}{2}\right)=67$.
Using law of cosines on triangle $A B C$, we have $A C^{2}=A B^{2}+B C^{2}-2(A B)(B C) \cos \left(60^{\circ}\right)=7^{2}+2^{2}-$ $2(7)(2)\left(\frac{1}{2}\right)=39$.
Finally, $\frac{A C^{2}}{B D^{2}}=\frac{39}{67}$.
|
{
"resource_path": "HarvardMIT/segmented/en-161-2012-nov-gen-solutions.jsonl",
"problem_match": "\n6. [5]",
"solution_match": "\nAnswer: "
}
|
4b3d988d-ba66-50d1-a1ee-5df7225349c7
| 609,045
|
Find the number of ordered 2012-tuples of integers $\left(x_{1}, x_{2}, \ldots, x_{2012}\right)$, with each integer between 0 and 2011 inclusive, such that the sum $x_{1}+2 x_{2}+3 x_{3}+\cdots+2012 x_{2012}$ is divisible by 2012 .
|
$2012^{2011}$ We claim that for any choice of $x_{2}, x_{3}, \ldots, x_{2012}$, there is exactly one possible value of $x_{1}$ satisfying the condition. We have $x_{1}+2 x_{2}+\ldots+2012 x_{2012} \equiv 0(\bmod 2012)$ or $x_{1} \equiv$ $-\left(2 x_{2}+\ldots+2012 x_{2012}\right)(\bmod 2012)$. Indeed, we see that the right hand side is always an integer between 0 and 2011, so $x_{1}$ must equal this number.
Now, there are 2012 choices for each of the 2011 variables $x_{2}, \ldots, x_{2012}$, and each of the $2012^{2011}$ possible combinations gives exactly one valid solution, so the total number of 2012 -tuples is $2012^{2011}$.
|
2012^{2011}
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Find the number of ordered 2012-tuples of integers $\left(x_{1}, x_{2}, \ldots, x_{2012}\right)$, with each integer between 0 and 2011 inclusive, such that the sum $x_{1}+2 x_{2}+3 x_{3}+\cdots+2012 x_{2012}$ is divisible by 2012 .
|
$2012^{2011}$ We claim that for any choice of $x_{2}, x_{3}, \ldots, x_{2012}$, there is exactly one possible value of $x_{1}$ satisfying the condition. We have $x_{1}+2 x_{2}+\ldots+2012 x_{2012} \equiv 0(\bmod 2012)$ or $x_{1} \equiv$ $-\left(2 x_{2}+\ldots+2012 x_{2012}\right)(\bmod 2012)$. Indeed, we see that the right hand side is always an integer between 0 and 2011, so $x_{1}$ must equal this number.
Now, there are 2012 choices for each of the 2011 variables $x_{2}, \ldots, x_{2012}$, and each of the $2012^{2011}$ possible combinations gives exactly one valid solution, so the total number of 2012 -tuples is $2012^{2011}$.
|
{
"resource_path": "HarvardMIT/segmented/en-161-2012-nov-gen-solutions.jsonl",
"problem_match": "\n7. [6]",
"solution_match": "\nAnswer: "
}
|
bd757f9b-479a-5dc4-8c67-abdd1665c96d
| 609,046
|
Let $n$ be the 200th smallest positive real solution to the equation $x-\frac{\pi}{2}=\tan x$. Find the greatest integer that does not exceed $\frac{n}{2}$.
|
314 Drawing the graphs of the functions $y=x-\frac{\pi}{2}$ and $y=\tan x$, we may observe that the graphs intersect exactly once in each of the intervals $\left(\frac{(2 k-1) \pi}{2}, \frac{(2 k+1) \pi}{2}\right)$ for each $k=1,2, \cdots$. Hence, the 200th intersection has $x$ in the range $\left(\frac{399 \pi}{2}, \frac{401 \pi}{2}\right)$. At this intersection, $y=x-\frac{\pi}{2}$ is large, and thus, the intersection will be slightly less than $\frac{401 \pi}{2}$. We have that $\left\lfloor\frac{401 \pi}{4}\right\rfloor=\left\lfloor 100 \pi+\frac{\pi}{4}\right\rfloor=\left\lfloor 314.16+\frac{\pi}{4}\right\rfloor=314$.
|
314
|
Yes
|
Yes
|
math-word-problem
|
Calculus
|
Let $n$ be the 200th smallest positive real solution to the equation $x-\frac{\pi}{2}=\tan x$. Find the greatest integer that does not exceed $\frac{n}{2}$.
|
314 Drawing the graphs of the functions $y=x-\frac{\pi}{2}$ and $y=\tan x$, we may observe that the graphs intersect exactly once in each of the intervals $\left(\frac{(2 k-1) \pi}{2}, \frac{(2 k+1) \pi}{2}\right)$ for each $k=1,2, \cdots$. Hence, the 200th intersection has $x$ in the range $\left(\frac{399 \pi}{2}, \frac{401 \pi}{2}\right)$. At this intersection, $y=x-\frac{\pi}{2}$ is large, and thus, the intersection will be slightly less than $\frac{401 \pi}{2}$. We have that $\left\lfloor\frac{401 \pi}{4}\right\rfloor=\left\lfloor 100 \pi+\frac{\pi}{4}\right\rfloor=\left\lfloor 314.16+\frac{\pi}{4}\right\rfloor=314$.
|
{
"resource_path": "HarvardMIT/segmented/en-161-2012-nov-gen-solutions.jsonl",
"problem_match": "\n8. [7]",
"solution_match": "\nAnswer: "
}
|
c2e1c365-6c0a-5e0a-be80-7280fdf67c35
| 609,047
|
Consider triangle $A B C$ where $B C=7, C A=8$, and $A B=9 . D$ and $E$ are the midpoints of $B C$ and $C A$, respectively, and $A D$ and $B E$ meet at $G$. The reflection of $G$ across $D$ is $G^{\prime}$, and $G^{\prime} E$ meets $C G$ at $P$. Find the length $P G$.
|
$\frac{\sqrt{145}}{9}$ Observe that since $G^{\prime}$ is a reflection and $G D=\frac{1}{2} A G$, we have $A G=G G^{\prime}$ and therefore, $P$ is the centroid of triangle $A C G^{\prime}$. Thus, extending $C G$ to hit $A B$ at $F, P G=\frac{1}{3} C G=$ $\frac{2}{9} C F=\frac{2}{9} \sqrt{\frac{2\left(8^{2}+7^{2}\right)-9^{2}}{4}}=\frac{\sqrt{145}}{9}$ by the formula for the length of a median.
|
\frac{\sqrt{145}}{9}
|
Yes
|
Yes
|
math-word-problem
|
Geometry
|
Consider triangle $A B C$ where $B C=7, C A=8$, and $A B=9 . D$ and $E$ are the midpoints of $B C$ and $C A$, respectively, and $A D$ and $B E$ meet at $G$. The reflection of $G$ across $D$ is $G^{\prime}$, and $G^{\prime} E$ meets $C G$ at $P$. Find the length $P G$.
|
$\frac{\sqrt{145}}{9}$ Observe that since $G^{\prime}$ is a reflection and $G D=\frac{1}{2} A G$, we have $A G=G G^{\prime}$ and therefore, $P$ is the centroid of triangle $A C G^{\prime}$. Thus, extending $C G$ to hit $A B$ at $F, P G=\frac{1}{3} C G=$ $\frac{2}{9} C F=\frac{2}{9} \sqrt{\frac{2\left(8^{2}+7^{2}\right)-9^{2}}{4}}=\frac{\sqrt{145}}{9}$ by the formula for the length of a median.
|
{
"resource_path": "HarvardMIT/segmented/en-161-2012-nov-gen-solutions.jsonl",
"problem_match": "\n9. [7]",
"solution_match": "\nAnswer: "
}
|
7ca27bf5-f3ed-53d6-b7b2-4f75007b3a52
| 609,048
|
Let $\alpha$ and $\beta$ be reals. Find the least possible value of
$$
(2 \cos \alpha+5 \sin \beta-8)^{2}+(2 \sin \alpha+5 \cos \beta-15)^{2} .
$$
|
100 Let the vector $\vec{v}=(2 \cos \alpha, 2 \sin \alpha)$ and $\vec{w}=(5 \sin \beta, 5 \cos \beta)$. The locus of ends of vectors expressible in the form $\vec{v}+\vec{w}$ are the points which are five units away from a point on the circle of radius two about the origin. The expression that we desire to minimize is the square of the distance from this point to $X=(8,15)$. Thus, the closest distance from such a point to $X$ is when the point is 7 units away from the origin along the segment from the origin to $X$. Thus, since $X$ is 17 units away from the origin, the minimum is $10^{2}=100$.
|
100
|
Yes
|
Yes
|
math-word-problem
|
Algebra
|
Let $\alpha$ and $\beta$ be reals. Find the least possible value of
$$
(2 \cos \alpha+5 \sin \beta-8)^{2}+(2 \sin \alpha+5 \cos \beta-15)^{2} .
$$
|
100 Let the vector $\vec{v}=(2 \cos \alpha, 2 \sin \alpha)$ and $\vec{w}=(5 \sin \beta, 5 \cos \beta)$. The locus of ends of vectors expressible in the form $\vec{v}+\vec{w}$ are the points which are five units away from a point on the circle of radius two about the origin. The expression that we desire to minimize is the square of the distance from this point to $X=(8,15)$. Thus, the closest distance from such a point to $X$ is when the point is 7 units away from the origin along the segment from the origin to $X$. Thus, since $X$ is 17 units away from the origin, the minimum is $10^{2}=100$.
|
{
"resource_path": "HarvardMIT/segmented/en-161-2012-nov-gen-solutions.jsonl",
"problem_match": "\n10. [8]",
"solution_match": "\nAnswer: "
}
|
706a32ed-9abd-54a9-b062-505c7a9df974
| 609,049
|
Find the number of integers between 1 and 200 inclusive whose distinct prime divisors sum to 16 . (For example, the sum of the distinct prime divisors of 12 is $2+3=5$.)
|
6 The primes less than 16 are $2,3,5,7,11$, and 13 . We can write 16 as the sum of such primes in three different ways and find the integers less than 200 with those prime factors:
- $13+3: 3 \cdot 13=39$ and $3^{2} \cdot 13=117$.
- $11+5: 5 \cdot 11=55$
- $11+3+2: 2 \cdot 3 \cdot 11=66,2^{2} \cdot 3 \cdot 11=132$, and $2 \cdot 3^{2} \cdot 11=198$.
There are therefore 6 numbers less than 200 whose prime divisors sum to 16 .
|
6
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Find the number of integers between 1 and 200 inclusive whose distinct prime divisors sum to 16 . (For example, the sum of the distinct prime divisors of 12 is $2+3=5$.)
|
6 The primes less than 16 are $2,3,5,7,11$, and 13 . We can write 16 as the sum of such primes in three different ways and find the integers less than 200 with those prime factors:
- $13+3: 3 \cdot 13=39$ and $3^{2} \cdot 13=117$.
- $11+5: 5 \cdot 11=55$
- $11+3+2: 2 \cdot 3 \cdot 11=66,2^{2} \cdot 3 \cdot 11=132$, and $2 \cdot 3^{2} \cdot 11=198$.
There are therefore 6 numbers less than 200 whose prime divisors sum to 16 .
|
{
"resource_path": "HarvardMIT/segmented/en-161-2012-nov-team-solutions.jsonl",
"problem_match": "\n1. [3]",
"solution_match": "\nAnswer: "
}
|
8993b30c-063d-5a99-87ef-31991b648974
| 609,050
|
Find the number of ordered triples of divisors $\left(d_{1}, d_{2}, d_{3}\right)$ of 360 such that $d_{1} d_{2} d_{3}$ is also a divisor of 360 .
|
800 Since $360=2^{3} \cdot 3^{2} \cdot 5$, the only possible prime divisors of $d_{i}$ are 2 , 3 , and 5 , so we can write $d_{i}=2^{a_{i}} \cdot 3^{b_{i}} \cdot 5^{c_{i}}$, for nonnegative integers $a_{i}, b_{i}$, and $c_{i}$. Then, $d_{1} d_{2} d_{3} \mid 360$ if and only if the following three inequalities hold.
$$
\begin{aligned}
a_{1}+a_{2}+a_{3} & \leq 3 \\
b_{1}+b_{2}+b_{3} & \leq 2 \\
c_{1}+c_{2}+c_{3} & \leq 1
\end{aligned}
$$
Now, one can count that there are 20 assignments of $a_{i}$ that satisfy the first inequality, 10 assignments of $b_{i}$ that satisfy the second inequality, and 4 assignments of $c_{i}$ that satisfy the third inequality, for a total of 800 ordered triples $\left(d_{1}, d_{2}, d_{3}\right)$.
(Alternatively, instead of counting, it is possible to show that the number of nonnegative-integer triples $\left(a_{1}, a_{2}, a_{3}\right)$ satisfying $a_{1}+a_{2}+a_{3} \leq n$ equals $\binom{n+3}{3}$, since this is equal to the number of nonnegativeinteger quadruplets ( $a_{1}, a_{2}, a_{3}, a_{4}$ ) satisfying $a_{1}+a_{2}+a_{3}+a_{4}=n$.)
|
800
|
Yes
|
Yes
|
math-word-problem
|
Number Theory
|
Find the number of ordered triples of divisors $\left(d_{1}, d_{2}, d_{3}\right)$ of 360 such that $d_{1} d_{2} d_{3}$ is also a divisor of 360 .
|
800 Since $360=2^{3} \cdot 3^{2} \cdot 5$, the only possible prime divisors of $d_{i}$ are 2 , 3 , and 5 , so we can write $d_{i}=2^{a_{i}} \cdot 3^{b_{i}} \cdot 5^{c_{i}}$, for nonnegative integers $a_{i}, b_{i}$, and $c_{i}$. Then, $d_{1} d_{2} d_{3} \mid 360$ if and only if the following three inequalities hold.
$$
\begin{aligned}
a_{1}+a_{2}+a_{3} & \leq 3 \\
b_{1}+b_{2}+b_{3} & \leq 2 \\
c_{1}+c_{2}+c_{3} & \leq 1
\end{aligned}
$$
Now, one can count that there are 20 assignments of $a_{i}$ that satisfy the first inequality, 10 assignments of $b_{i}$ that satisfy the second inequality, and 4 assignments of $c_{i}$ that satisfy the third inequality, for a total of 800 ordered triples $\left(d_{1}, d_{2}, d_{3}\right)$.
(Alternatively, instead of counting, it is possible to show that the number of nonnegative-integer triples $\left(a_{1}, a_{2}, a_{3}\right)$ satisfying $a_{1}+a_{2}+a_{3} \leq n$ equals $\binom{n+3}{3}$, since this is equal to the number of nonnegativeinteger quadruplets ( $a_{1}, a_{2}, a_{3}, a_{4}$ ) satisfying $a_{1}+a_{2}+a_{3}+a_{4}=n$.)
|
{
"resource_path": "HarvardMIT/segmented/en-161-2012-nov-team-solutions.jsonl",
"problem_match": "\n2. [5]",
"solution_match": "\nAnswer: "
}
|
cae7cd71-77d0-5538-8605-9ec6211205a6
| 609,051
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.