This website contains problems from math contests. Problems and corresponding tags were obtained from the Art of Problem Solving website.

Tags were heavily modified to better represent problems.

AND:
OR:
NO:

Found problems: 10

2019 MIG, 3

Tags: 2019 Team
Calculate $1+2+3+4-5-6-7-8+9+\cdots-96+97+98+99+100$

2019 MIG, 10

Tags: 2019 Team
$40$ people, numbered $1$ through $40$ counterclockwise, sit around a circular table. They begin playing a game. Each person is initially considered "alive". Starting with person $1$, the first person eliminates the closest "alive" person to their right (so Person $1$ eliminates Person $2$). Then the next "alive" person, moving counterclockwise, eliminates the closest "alive" person to their right (so since Person $2$ is eliminated, Person $3$ eliminates Person $4$). This process continues until there is only $1$ "alive" person remaining. What is the number of the last "alive" person? [asy] usepackage("cancel", "makeroom, thicklines"); usepackage("bm"); size(15cm); picture p; draw(p, circle((0,0), 5)); for(int i = 0; i < 4; ++i) { label(p, "$" + string(40 - i) + "$", 5 * dir(-20 * i - 100), 2 * dir(-20 * i - 100)); label(p, "$" + string(i + 1) + "$", 5 * dir(20 * i - 80), 2 * dir(20 * i - 80)); } int n = 20; for(int i = 0; i <= n; ++i) { label(p, scale(2)*"$\cdot$", 6 *dir(180 / n * i)); } draw(p, arc((0,0), 8 * dir(-80), 8 * dir(0)), EndArrow); add(shift(-20, 0) * p); draw((-11, 0)--(-8,0), EndArrow); picture q; draw(q, circle((0,0), 5)); for(int i = 0; i < 4; ++i) { label(q, "$" + string(40 - i) + "$", 5 * dir(-20 * i - 100), 2 * dir(-20 * i - 100)); if(i != 1) label(q, "$" + string(i + 1) + "$", 5 * dir(20 * i - 80), 2 * dir(20 * i - 80)); } int n = 20; for(int i = 0; i <= n; ++i) { label(q, scale(2)*"$\cdot$", 6 *dir(180 / n * i)); } draw(q, arc((0,0), 8 * dir(-80), 8 * dir(0)), EndArrow); for(int i = 0; i < 1; i+=2) { //label(q, "\bm\xcancel{~}", 5 * dir(-20 * i - 100), 2 * dir(-20 * i - 100)); label(q, "\xcancel{2}", 5 * dir(20 * (i + 1) - 80), 2 * dir(20 * (i + 1) - 80)); } add(q); draw((9,0)--(12,0), EndArrow); picture r; draw(r, circle((0,0), 5)); for(int i = 0; i < 4; ++i) { if(i % 2 == 1) label(r, "$" + string(40 - i) + "$", 5 * dir(-20 * i - 100), 2 * dir(-20 * i - 100)); if(i % 2 != 1) label(r, "$" + string(i + 1) + "$", 5 * dir(20 * i - 80), 2 * dir(20 * i - 80)); } int n = 20; for(int i = 0; i <= n; ++i) { label(r, scale(2)*"$\cdot$", 6 *dir(180 / n * i)); } draw(r, arc((0,0), 8 * dir(-80), 8 * dir(0)), EndArrow); for(int i = 0; i < 4; i+=2) { label(r, "\xcancel{" + string(40 - i) +"}", 5 * dir(-20 * i - 100), 2 * dir(-20 * i - 100)); label(r, "\xcancel{" + string(i + 1) + "}", 5 * dir(20 * (i + 1) - 80), 2 * dir(20 * (i + 1) - 80)); } add(shift(20, 0) * r); [/asy] [center]In the last step here, Person $39$ eliminates Person $40$. Next turn, Person $1$ eliminates the closest person to his right, Person $3$.[/center]

2019 MIG, 9

Tags: 2019 Team
Kevin develops a method for shuffling a stack of $10$ cards numbered $1$ through $10$. He starts with the unshuffled pile, which is in perfect order with $1$ at the top and $10$ at the bottom. He takes the top card off the unshuffled pile and places it in what he calls the shuffled pile. Then, he flips a coin. If the coin is heads, he takes the card at the top of the unshuffled pile and places it at the top of the shuffled pile. If the coin comes up tails, he places the card at the at the bottom of the shuffled pile. He repeats this process for all the remaining cards. What is the probability that at the end of this shuffling, the top card is a prime number? Express your answer as a common fraction.

2019 MIG, 4

$AB$ is the diameter of circle $O$. A random point $P$ is selected on $O$ so that $AP = 4$ and $BP = 3$. Points $C$ and $D$ are drawn on circle $O$ so that $OC$ bisects $AP$ and $OD$ bisects $BP$. What is the degree measure of $\angle COD$?

2019 MIG, 6

Tags: 2019 Team
Square $ABCD$ has side length $4$. Side $AB$ is extended to point $E$ so that $AE$ has the same length as $AC$, as shown below. What is the length of $EC$? Express your answer as a decimal to the nearest hundredth. [asy] size(80); defaultpen(fontsize(8pt)); pair EE = (4sqrt(2),0); pair A = (0,0); pair B = (4,0); pair C = (4,4); pair D = (0,4); draw(A--B--C--D--cycle); draw(A--EE); draw(C--EE,dotted); label("$A$",A,SW); label("$B$",B,S); label("$C$",C,N); label("$D$",D,N); label("$E$",EE,S); [/asy]

2019 MIG, 8

Tags: 2019 Team
Greg plays a game in which he is given three random $1$ digit numbers, each between $0$ and $9$, inclusive, with repeats allowed. He is to put these three numbers into any order. Exactly one ordering of the three numbers is correct, and if he guesses the correct ordering, he wins $\$150$. What are Greg's expected winnings for this game, given that he randomly guesses one valid ordering when he plays?

2019 MIG, 2

Tags: 2019 Team
A cup with a volume of $8$ fluid ounces is filled at the rate of $0.5$ ounces per second. However, a hole at the bottom of the cup also drains it at the rate of $0.3$ ounces per second. Once the cup is full, how many ounces of water will have drained out of the cup?

2019 MIG, 7

Tags: 2019 Team
How many positive integers less than or equal to $150$ have exactly three distinct prime factors?

2019 MIG, 5

Tags: 2019 Team
$3$ builders are scheduled to build a house in $60$ days. However, they suffer from a bout of procrastination and thus do nothing for the first $50$ days. Panicked, they realize in order to build the house on time, they must hire more workers [i]and[/i] work twice as fast as they would have originally. If the new workers they hire also will work at the doubled rate, how many new workers will they need to hire? Assume each builder works at the same rate as the others and they do not get in each other's way.

2019 MIG, 1

Tags: 2019 Team
An ant walks around on the coordinate plane. It moves from the origin to $(3,4)$, then to $(-9, 9)$, then back to the origin. How many units did it walk? Express your answer as a decimal rounded to the nearest tenth.