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: 85335

2003 China Western Mathematical Olympiad, 1

The sequence $ \{a_n\}$ satisfies $ a_0 \equal{} 0, a_{n \plus{} 1} \equal{} ka_n \plus{} \sqrt {(k^2 \minus{} 1)a_n^2 \plus{} 1}, n \equal{} 0, 1, 2, \ldots$, where $ k$ is a fixed positive integer. Prove that all the terms of the sequence are integral and that $ 2k$ divides $ a_{2n}, n \equal{} 0, 1, 2, \ldots$.

2019 AMC 10, 20

As shown in the figure, line segment $\overline{AD}$ is trisected by points $B$ and $C$ so that $AB=BC=CD=2.$ Three semicircles of radius $1,$ $\overarc{AEB},\overarc{BFC},$ and $\overarc{CGD},$ have their diameters on $\overline{AD},$ and are tangent to line $EG$ at $E,F,$ and $G,$ respectively. A circle of radius $2$ has its center on $F. $ The area of the region inside the circle but outside the three semicircles, shaded in the figure, can be expressed in the form \[\frac{a}{b}\cdot\pi-\sqrt{c}+d,\] where $a,b,c,$ and $d$ are positive integers and $a$ and $b$ are relatively prime. What is $a+b+c+d$? [asy] size(6cm); filldraw(circle((0,0),2), gray(0.7)); filldraw(arc((0,-1),1,0,180) -- cycle, gray(1.0)); filldraw(arc((-2,-1),1,0,180) -- cycle, gray(1.0)); filldraw(arc((2,-1),1,0,180) -- cycle, gray(1.0)); dot((-3,-1)); label("$A$",(-3,-1),S); dot((-2,0)); label("$E$",(-2,0),NW); dot((-1,-1)); label("$B$",(-1,-1),S); dot((0,0)); label("$F$",(0,0),N); dot((1,-1)); label("$C$",(1,-1), S); dot((2,0)); label("$G$", (2,0),NE); dot((3,-1)); label("$D$", (3,-1), S); [/asy] $\textbf{(A) } 13 \qquad\textbf{(B) } 14 \qquad\textbf{(C) } 15 \qquad\textbf{(D) } 16\qquad\textbf{(E) } 17$

2012 CHMMC Spring, 2

Tags: geometry
In the diagram below, $A$ and $B$ trisect $DE$, $C$ and $A$ trisect $F G$, and $B$ and $C$ trisect $HI$. Given that $DI = 5$, $EF = 6$, $GH = 7$, find the area of $\vartriangle ABC$. [img]https://cdn.artofproblemsolving.com/attachments/d/5/90334e1bf62c99433be41f3b5e03c47c4d4916.png[/img]

2012 Vietnam Team Selection Test, 3

There are $42$ students taking part in the Team Selection Test. It is known that every student knows exactly $20$ other students. Show that we can divide the students into $2$ groups or $21$ groups such that the number of students in each group is equal and every two students in the same group know each other.

LMT Guts Rounds, 2020 F17

Tags:
In a regular square room of side length $2\sqrt{2}$ ft, two cats that can see $2$ feet ahead of them are randomly placed into the four corners such that they do not share the same corner. If the probability that they don't see the mouse, also placed randomly into the room can be expressed as $\frac{a-b\pi}{c},$ where $a,b,c$ are positive integers with a greatest common factor of $1,$ then find $a+b+c.$ [i]Proposed by Ada Tsui[/i]

2006 Princeton University Math Competition, 1

Find the smallest positive integer $n$ such that $2n+1$ and $3n+1$ are both squares

2014 AMC 8, 9

In $\bigtriangleup ABC$, $D$ is a point on side $\overline{AC}$ such that $BD=DC$ and $\angle BCD$ measures $70^\circ$. What is the degree measure of $\angle ADB$? [asy] size(300); defaultpen(linewidth(0.8)); pair A=(-1,0),C=(1,0),B=dir(40),D=origin; draw(A--B--C--A); draw(D--B); dot("$A$", A, SW); dot("$B$", B, NE); dot("$C$", C, SE); dot("$D$", D, S); label("$70^\circ$",C,2*dir(180-35)); [/asy] $\textbf{(A) }100\qquad\textbf{(B) }120\qquad\textbf{(C) }135\qquad\textbf{(D) }140\qquad \textbf{(E) }150$

2000 Bundeswettbewerb Mathematik, 4

A circular game board is divided into $n \ge 3$ sectors. Each sector is either empty or occupied by a marker. In each step one chooses an occupied sector, removes its marker and then switches each of the two adjacent sectors from occupied to empty or vice-versa. Starting with a single occupied sector, for which $n$ is it possible to end up with all empty sectors after finitely many steps?

2022 Regional Olympiad of Mexico West, 4

Prove that in all triangles $\vartriangle ABC$ with $\angle A = 2 \angle B$ it holds that, if $D$ is the foot of the perpendicular from $C$ to the perpendicular bisector of $AB$, $\frac{AC}{DC}$ is constant for any value of $\angle B$.

2022 AMC 12/AHSME, 19

Tags:
Don't have original wording: In $\triangle{ABC}$ medians $\overline{AD}$ and $\overline{BE}$ intersect at $G$ and $\triangle{AGE}$ is equilateral. Then $\cos(C)$ can be written as $\frac{m\sqrt p}n$, where $m$ and $n$ are relatively prime positive integers and $p$ is a positive integer not divisible by the square of any prime. What is $m+n+p?$ [asy] import geometry; unitsize(2cm); real arg(pair p) { return atan2(p.y, p.x) * 180/pi; } pair G=(0,0),E=(1,0),A=(1/2,sqrt(3)/2),D=1.5*G-0.5*A,C=2*E-A,B=2*D-C; pair t(pair p) { return rotate(-arg(dir(B--C)))*p; } path t(path p) { return rotate(-arg(dir(B--C)))*p; } void d(path p, pen q = black+linewidth(1.5)) { draw(t(p),q); } void o(pair p, pen q = 5+black) { dot(t(p),q); } void l(string s, pair p, pair d) { label(s, t(p),d); } d(A--B--C--cycle); d(A--D); d(B--E); o(A); o(B); o(C); o(D); o(E); o(G); l("$A$",A,N); l("$B$",B,SW); l("$C$",C,SE); l("$D$",D,S); l("$E$",E,NE); l("$G$",G,NW); [/asy] $\textbf{(A)}44~\textbf{(B)}48~\textbf{(C)}52~\textbf{(D)}56~\textbf{(E)}60$

2007 AMC 10, 19

Tags: geometry , ratio
A paint brush is swept along both diagonals of a square to produce the symmetric painted area, as shown. Half the area of the square is painted. What is the ratio of the side length of the square to the brush width? [asy]unitsize(15mm); defaultpen(linewidth(.8pt)); path P=(-sqrt(2)/2,1)--(0,1-sqrt(2)/2)--(sqrt(2)/2,1); path Pc=(-sqrt(2)/2,1)--(0,1-sqrt(2)/2)--(sqrt(2)/2,1)--cycle; path S=(-1,-1)--(-1,1)--(1,1)--(1,-1)--cycle; fill(S,gray); for(int i=0;i<4;++i) { fill(rotate(90*i)*Pc,white); draw(rotate(90*i)*P); } draw(S);[/asy]$ \textbf{(A)}\ 2\sqrt {2} \plus{} 1 \qquad \textbf{(B)}\ 3\sqrt {2}\qquad \textbf{(C)}\ 2\sqrt {2} \plus{} 2 \qquad \textbf{(D)}\ 3\sqrt {2} \plus{} 1 \qquad \textbf{(E)}\ 3\sqrt {2} \plus{} 2$

1999 IMO Shortlist, 7

Let $p >3$ be a prime number. For each nonempty subset $T$ of $\{0,1,2,3, \ldots , p-1\}$, let $E(T)$ be the set of all $(p-1)$-tuples $(x_1, \ldots ,x_{p-1} )$, where each $x_i \in T$ and $x_1+2x_2+ \ldots + (p-1)x_{p-1}$ is divisible by $p$ and let $|E(T)|$ denote the number of elements in $E(T)$. Prove that \[|E(\{0,1,3\})| \geq |E(\{0,1,2\})|\] with equality if and only if $p = 5$.

2016 Irish Math Olympiad, 6

Triangle $ABC$ has sides $a = |BC| > b = |AC|$. The points $K$ and $H$ on the segment $BC$ satisfy $|CH| = (a + b)/3$ and $|CK| = (a - b)/3$. If $G$ is the centroid of triangle $ABC$, prove that $\angle KGH = 90^o$.

2005 AMC 10, 15

How many positive integer cubes divide $ 3!\cdot 5!\cdot 7!$? $ \textbf{(A)}\ 2\qquad \textbf{(B)}\ 3\qquad \textbf{(C)}\ 4\qquad \textbf{(D)}\ 5\qquad \textbf{(E)}\ 6$

2016 ASDAN Math Tournament, 7

Tags:
What is $$\sum_{n=1996}^{2016}\lfloor\sqrt{n}\rfloor?$$

2005 Flanders Math Olympiad, 2

Tags:
We can obviously put 100 unit balls in a $10\times10\times1$ box. How can one put $105$ unit balls in? How can we put $106$ unit balls in?

2011 Greece National Olympiad, 4

We consider an acute angled triangle $ABC$ (with $AB<AC$) and its circumcircle $c(O,R) $(with center $O$ and semidiametre $R$).The altitude $AD$ cuts the circumcircle at the point $E$ ,while the perpedicular bisector $(m)$ of the segment $AB$,cuts $AD$ at the point $L$.$BL$ cuts $AC$ at the point $M$ and the circumcircle $c(O,R)$ at the point $N$.Finally $EN$ cuts the perpedicular bisector $(m)$ at the point $Z$.Prove that: \[ MZ \perp BC \iff \left(CA=CB \;\; \text{or} \;\; Z\equiv O \right) \]

2006 Bulgaria Team Selection Test, 1

[b]Problem 1.[/b] Points $D$ and $E$ are chosen on the sides $AB$ and $AC$, respectively, of a triangle $\triangle ABC$ such that $DE\parallel BC$. The circumcircle $k$ of triangle $\triangle ADE$ intersects the lines $BE$ and $CD$ at the points $M$ and $N$ (different from $E$ and $D$). The lines $AM$ and $AN$ intersect the side $BC$ at points $P$ and $Q$ such that $BC=2\cdot PQ$ and the point $P$ lies between $B$ and $Q$. Prove that the circle $k$ passes through the point of intersection of the side $BC$ and the angle bisector of $\angle BAC$. [i]Nikolai Nikolov[/i]

MBMT Team Rounds, 2020.2

Tags:
Daniel, Clarence, and Matthew split a \$20.20 dinner bill so that Daniel pays half of what Clarence pays. If Daniel pays \$6.06, what is the ratio of Clarence's pay to Matthew's pay? [i]Proposed by Henry Ren[/i]

KoMaL A Problems 2023/2024, A. 872

For every positive integer $k$ let $a_{k,1},a_{k,2},\ldots$ be a sequence of positive integers. For every positive integer $k$ let sequence $\{a_{k+1,i}\}$ be the difference sequence of $\{a_{k,i}\}$, i.e. for all positive integers $k$ and $i$ the following holds: $a_{k,i+1}-a_{k,i}=a_{k+1,i}$. Is it possible that every positive integer appears exactly once among numbers $a_{k,i}$? [i]Proposed by Dávid Matolcsi, Berkeley[/i]

2010 Contests, 2

Tags:
If $a @ b = \frac{a\times b}{a+b}$, for $a,b$ positive integers, then what is $5 @10$? $\textbf{(A)}\ \frac{3}{10} \qquad\textbf{(B)}\ 1 \qquad\textbf{(C)}\ 2 \qquad\textbf{(D)}\ \frac{10}{3} \qquad\textbf{(E)}\ 50$

2012 Turkey Junior National Olympiad, 1

Let $x, y$ be integers and $p$ be a prime for which \[ x^2-3xy+p^2y^2=12p \] Find all triples $(x,y,p)$.

2015 Caucasus Mathematical Olympiad, 4

We call a number greater than $25$, [i] semi-prime[/i] if it is the sum of some two different prime numbers. What is the greatest number of consecutive natural numbers that can be [i]semi-prime[/i]?

2010 Lithuania National Olympiad, 3

In an $m\times n$ rectangular chessboard,there is a stone in the lower leftmost square. Two persons A,B move the stone alternately. In each step one can move the stone upward or rightward any number of squares. The one who moves it into the upper rightmost square wins. Find all $(m,n)$ such that the first person has a winning strategy.

2023 Ukraine National Mathematical Olympiad, 10.2

On a rectangular board $100 \times 300$, two people take turns coloring the cells that have not yet been colored. The first one colors cells in yellow, and the second one in blue. Coloring is completed when every cell of the board is colored. A [i]connected sequence[/i] of cells is a sequence of cells in which every two consecutive cells share a common side (and all cells in the sequence are different). Consider all possible connected sequences of yellow cells. The result of the first player is the number of cells in the connected sequence of yellow cells of maximum length. The first player's goal is to maximize the result, and the second player's goal is to make the first player's result as small as possible. Prove that if each player tries to achieve his goal, the result of the first player will be no more than $200$. [i]Proposed by Mykhailo Shtandenko and Fedir Yudin[/i]