Difference between revisions of "2021 WSMO Team Round"

Line 1: Line 1:
==Problem 1==
+
'''2021 WSMO Team Round''' problems and solutions. '''This test was held on ZOOM on 12/21/2021 at 6:40 PM EST.''' The first link contains the full set of test problems.  The rest contain each individual problem and its solution.
How many ways are there to pick a three-letter word using only letters from "Winter Solstice" such that the word is a capital letter followed by two lowercase letters? (A word does not have to be an English word, and the word can only use a letter in "Winter Solstice" as many times as it appears)
+
*[[2021 WSMO Team Round Problems Problems]]
 
+
*[[2021 WSMO Team Round Problems Answer Key]]
[[2021 WSMO Team Round/Problem 1|Solution]]
+
**[[2021 WSMO Team Round Problems/Problem 1|Problem 1]]
 
+
**[[2021 WSMO Team Round Problems/Problem 2|Problem 2]]
==Problem 2==
+
**[[2021 WSMO Team Round Problems/Problem 3|Problem 3]]
Bobby has some pencils. When he tries to split them into 5 equal groups, he has 2 left over. When he tries to split them into groups of 8, he has 6 left over. What is the second smallest number of pencils that Bobby could have?
+
**[[2021 WSMO Team Round Problems/Problem 4|Problem 4]]
 
+
**[[2021 WSMO Team Round Problems/Problem 5|Problem 5]]
[[2021 WSMO Team Round/Problem 2|Solution]]
+
**[[2021 WSMO Team Round Problems/Problem 6|Problem 6]]
 
+
**[[2021 WSMO Team Round Problems/Problem 7|Problem 7]]
==Problem 3==
+
**[[2021 WSMO Team Round Problems/Problem 8|Problem 8]]
Farmer Sam has <math>n</math> dollars. He knows that this is exactly enough to buy either 50 pounds of grass and 32 ounces of hay or 96 ounces of grass and 24 pounds of hay. However, he must save 4 dollars for tax. After some quick calculations, he finds that he has exactly enough to buy 18 pounds of grass and 16 pounds of hay (and still have money left over for tax!). Find <math>n.</math>
+
**[[2021 WSMO Team Round Problems/Problem 9|Problem 9]]
 
+
**[[2021 WSMO Team Round Problems/Problem 10|Problem 10]]
[[2021 WSMO Team Round/Problem 3|Solution]]
+
**[[2021 WSMO Team Round Problems/Problem 11|Problem 11]]
 
+
**[[2021 WSMO Team Round Problems/Problem 12|Problem 12]]
==Problem 4==
+
**[[2021 WSMO Team Round Problems/Problem 13|Problem 13]]
Consider a triangle <math>A_1B_1C_1</math> satisfying <math>A_1B_1=3,B_1C_1=3\sqrt{3},A_1C_1=6</math>. For all successive triangles <math>A_nB_nC_n</math>, we have <math>A_nB_nC_n\sim B_{n-1}A_{n-1}C_{n-1}</math> and <math>A_n=B_{n-1},C_n=C_{n-1}</math>, where <math>A_nB_nC_n</math> is outside of <math>A_{n-1}B_{n-1}C_{n-1}</math>. Find the value of <cmath>\left(\sum_{i=1}^{\infty}[A_iB_iC_i]\right)^2,</cmath> where <math>[A_iB_iC_i]</math> is the area of <math>A_iB_iC_i</math>.
+
**[[2021 WSMO Team Round Problems/Problem 14|Problem 14]]
 
+
**[[2021 WSMO Team Round Problems/Problem 15|Problem 15]]
[[2021 WSMO Team Round/Problem 4|Solution]]
 
 
 
==Problem 5==
 
Two runners are running at different speeds. The first runner runs at a consistent 12 miles per hour. The second runner runs at <math>t+4</math> miles per hour, where <math>t</math> is the number of hours that have passed. After <math>n</math> hours, the runners have run the same distance, where <math>n</math> is positive. Find <math>n</math>.
 
 
 
[[2021 WSMO Team Round/Problem 5|Solution]]
 
 
 
==Problem 6==
 
Suppose that regular dodecagon <math>ABCDEFGHIJKL</math> has side length <math>5.</math> The area of the shaded region can be expressed as <math>a+b\sqrt{c},</math> where <math>c</math> is not divisible by the square of any prime. Find <math>a+b+c</math>.
 
<center>
 
<asy>
 
size(150);
 
filldraw(polygon(12),grey);
 
 
 
filldraw(rotate(75)*(dir(60)--dir(150)--dir(240)--dir(330)--cycle),white);
 
 
 
for(int i=30; i<=360; i+=30){
 
dot(rotate(75)*dir(i));
 
}
 
label("$C$",dir(45),NE);
 
label("$B$",dir(75),N);
 
label("$A$",dir(105),N);
 
label("$L$",dir(135),NW);
 
label("$K$",dir(165),W);
 
label("$J$",dir(195),W);
 
label("$I$",dir(225),SW);
 
label("$H$",dir(255),S);
 
label("$G$",dir(285),S);
 
label("$F$",dir(315),SE);
 
label("$E$",dir(345),E);
 
label("$D$",dir(375),E);
 
</asy>
 
</center>
 
 
 
[[2021 WSMO Team Round/Problem 6|Solution]]
 
 
 
==Problem 7==
 
A frog makes one hop every minute on the first quadrant of the coordinate plane (this means that the frog's <math>x</math> and <math>y</math> coordinates are positive). The frog can hop up one unit, right one unit, left one unit, down one unit, or it can stay in place, and will always randomly choose a valid hop from these 5 directions (a valid hop is a hop that does not place the frog outside the first quadrant). Given that the frog starts at <math>(1,1)</math>, the expected number of minutes until the frog reaches the line <math>x+y=5</math> can be expressed as <math>\frac{m}{n}</math>, where <math>m</math> and <math>n</math> are relatively prime positive integers. Find <math>m+n</math>.
 
 
 
[[2021 WSMO Team Round/Problem 7|Solution]]
 
 
 
==Problem 8==
 
Isaac, Gottfried, Carl, Euclid, Albert, Srinivasa, René, Adihaya, and Euler sit around a round table (not necessarily in that order). Then, Hypatia takes a seat. There are <math>a\cdot b!</math> possible seatings where Euler doesn't sit next to Hypatia and Isaac doesn't sit next to Gottfried, where <math>b</math> is maximized. Find <math>a+b</math>. (Rotations are not distinct, but reflections are).
 
 
 
[[2021 WSMO Team Round/Problem 8|Solution]]
 
 
 
==Problem 9==
 
In triangle <math>ABC,</math> points <math>D</math> and <math>E</math> trisect side <math>BC</math> such that <math>D</math> is closer to <math>C</math> than <math>E.</math> If <math>\angle{CAD}=\angle{EAD},ED=3,</math> and <math>[AEB]=6,</math> then find <math>[ABC],</math> where <math>[ABC]</math> is the area of <math>ABC</math>.
 
 
 
[[2021 WSMO Team Round/Problem 9|Solution]]
 
 
 
==Problem 10==
 
The minimum possible value of <cmath>\sqrt{m^2+n^2}+\sqrt{3m^2+3n^2-6m+12n+15}</cmath> can be expressed as <math>a.</math> Find <math>a^2.</math>
 
 
 
[[2021 WSMO Team Round/Problem 10|Solution]]
 
 
 
==Problem 11==
 
Find the remainder when <cmath>\sum_{x+y+z\leq10}\frac{(x+y+z)!}{x!y!z!}</cmath> is divided by <math>100</math>. (<math>x,y,z\geq 0</math>)
 
 
 
[[2021 WSMO Team Round/Problem 11|Solution]]
 
 
 
==Problem 12==
 
Choose three integers <math>x,y,z</math> randomly and independently from the nonnegative integers. The probability that the sum of the factors of <math>2^x3^y5^z</math> is divisible by <math>6</math> is <math>\frac{m}{n}</math>, where <math>m</math> and <math>n</math> are relatively prime positive integers. Find <math>m+n</math>.
 
 
 
[[2021 WSMO Team Round/Problem 12|Solution]]
 
 
 
==Problem 13==
 
Square <math>BCDE</math> is drawn outside of equilateral triangle <math>ABC.</math> Regular hexagon <math>DEFGHI</math> is drawn outside of square <math>BCDE.</math> If the area of triangle <math>AED</math> is 3, then the area of triangle <math>AGH</math> can be expressed as <math>a\sqrt{b}-c,</math> where <math>b</math> is not divisible by the square of any prime. Find <math>a+b+c.</math>
 
 
 
[[2021 WSMO Team Round/Problem 13|Solution]]
 
 
 
==Problem 14==
 
Suppose that <math>x</math> is a complex number such that <math>x+\frac{1}{x}=\frac{\sqrt{6}+\sqrt{2}}{2}</math> and the imaginary part of <math>x</math> is nonnegative. Find the sum of the five smallest nonnegative integers <math>n</math> such that <math>x^{n}+\frac{1}{x^n}</math> is an integer.
 
 
 
[[2021 WSMO Team Round/Problem 14|Solution]]
 
 
 
==Problem 15==
 
Let <math>ABCD</math> and <math>DEFG</math> (vertices labelled clockwise) be squares that intersect exactly once and with areas <math>1011^2</math> and <math>69^2</math> respectively. There exists a constant <math>M</math> such that <math>CE+AG>M</math> where <math>M</math> is maximized. Find <math>M.</math>
 
 
 
[[2021 WSMO Team Round/Problem 15|Solution]]
 

Revision as of 17:56, 22 December 2021

2021 WSMO Team Round problems and solutions. This test was held on ZOOM on 12/21/2021 at 6:40 PM EST. The first link contains the full set of test problems. The rest contain each individual problem and its solution.