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

2010 Czech-Polish-Slovak Match, 2

Tags: inequalities
Let $x$, $y$, $z$ be positive real numbers satisfying $x+y+z\ge 6$. Find, with proof, the minimum value of \[ x^2+y^2+z^2+\frac{x}{y^2+z+1}+\frac{y}{z^2+x+1}+\frac{z}{x^2+y+1}. \]

2021 CCA Math Bonanza, L1.4

Tags:
On Day $1$, Alice starts with the number $a_1=5$. For all positive integers $n>1$, on Day $n$, Alice randomly selects a positive integer $a_n$ between $a_{n-1}$ and $2a_{n-1}$, inclusive. Given that the probability that all of $a_2,a_3,\ldots,a_7$ are odd can be written as $\frac{m}{n}$, where $m$ and $n$ are relatively prime positive integers, compute $m+n$. [i]2021 CCA Math Bonanza Lightning Round #1.4[/i]

2020 GQMO, 6

Decide whether there exist infinitely many triples $(a,b,c)$ of positive integers such that all prime factors of $a!+b!+c!$ are smaller than $2020$. [i]Pitchayut Saengrungkongka, Thailand[/i]

2022 HMNT, 1

Tags:
Compute $\sqrt{2022^2-12^6}.$

2023 Princeton University Math Competition, A1 / B3

Tags: geometry
Define a common chord between two intersecting circles to be the line segment connecting their two intersection points. Let $\omega_1,\omega_2,\omega_3$ be three circles of radii $3, 5,$ and $7$, respectively. Suppose they are arranged in such a way that the common chord of $\omega_1$ and $\omega_2$ is a diameter of $\omega_1$, the common chord of $\omega_1$ and $\omega_3$ is a diameter of $\omega_1$, and the common chord of $\omega_2$ and $\omega_3$ is a diameter of $\omega_2$. Compute the square of the area of the triangle formed by the centers of the three circles.

2020 Spain Mathematical Olympiad, 3

To each point of $\mathbb{Z}^3$ we assign one of $p$ colors. Prove that there exists a rectangular parallelepiped with all its vertices in $\mathbb{Z}^3$ and of the same color.

2018 Nepal National Olympiad, 3c

Tags: geometry
[b]Problem Section #3 c) Let $ABCDE$ be a convex pentagon such that $BC \parallel AE, AB = BC + AE$, and $\angle{ABC} =\angle{CDE}$. Let $M$ be the midpoint of $CE$, and let $O$ be the circumcenter of triangle $BCD$. Given that $\angle{DMO}=90^{o}$, prove that $2\angle{BDA} =\angle{CDE}$.

2001 National Olympiad First Round, 33

Let $ABC$ be a triangle such that $|AC|=1$ and $|AB|=\sqrt 2$. Let $M$ be a point such that $|MA|=|AB|$, $m(\widehat{MAB}) = 90^\circ$, and $C$ and $M$ are on the opposite sides of $AB$. Let $N$ be a point such that $|NA|=|AX|$, $m(\widehat{NAC}) = 90^\circ$, and $B$ and $N$ are on the opposite sides of $AC$. If the line passing throung $A$ and the circumcenter of triangle $MAN$ meets $[BC]$ at $F$, what is $\dfrac {|BF|}{|FC|}$? $ \textbf{(A)}\ 2\sqrt 2 \qquad\textbf{(B)}\ 2\sqrt 3 \qquad\textbf{(C)}\ 2 \qquad\textbf{(D)}\ 3 \qquad\textbf{(E)}\ 3\sqrt 2 $

2017 BAMO, A

Tags:
Consider the $4 \times 4$ “multiplication table” below. The numbers in the first column multiplied by the numbers in the first row give the remaining numbers in the table. For example, the $3$ in the first column times the $4$ in the first row give the $12 (= 3 \cdot 4)$ in the cell that is in the 3rd row and 4th column. [asy] size(3cm); for (int x=0; x<=4; ++x) draw((x, 0) -- (x, 4), linewidth(.5pt)); for (int y=0; y<=4; ++y) draw((0, y) -- (4, y), linewidth(.5pt)); draw((0,0)--(4,0)--(4,4)--(0,4)--cycle); void foo(int x, int y, string n) { label(n, (x+0.5, y+0.5)); } foo(0, 3, "1"); foo(1, 3, "2"); foo(2, 3, "3"); foo(3, 3, "4"); foo(0, 2, "2"); foo(1, 2, "4"); foo(2, 2, "6"); foo(3, 2, "8"); foo(0, 1, "3"); foo(1, 1, "6"); foo(2, 1, "9"); foo(3, 1, "12"); foo(0, 0, "4"); foo(1, 0, "8"); foo(2, 0, "12"); foo(3, 0, "16"); [/asy] We create a path from the upper-left square to the lower-right square by always moving one cell either to the right or down. For example, here is one such possible path, with all the numbers along the path circled: [asy] import graph; size(3cm); for (int x=0; x<=4; ++x) draw((x, 0) -- (x, 4), linewidth(.5pt)); for (int y=0; y<=4; ++y) draw((0, y) -- (4, y), linewidth(.5pt)); draw((0,0)--(4,0)--(4,4)--(0,4)--cycle); void foo(int x, int y, string n) { label(n, (x+0.5, y+0.5)); } draw(Circle((0.5,3.5),0.5)); draw(Circle((1.5,3.5),0.5)); draw(Circle((2.5,3.5),0.5)); draw(Circle((2.5,2.5),0.5)); draw(Circle((3.5,2.5),0.5)); draw(Circle((3.5,1.5),0.5)); draw(Circle((3.5,0.5),0.5)); foo(0, 3, "1"); foo(1, 3, "2"); foo(2, 3, "3"); foo(3, 3, "4"); foo(0, 2, "2"); foo(1, 2, "4"); foo(2, 2, "6"); foo(3, 2, "8"); foo(0, 1, "3"); foo(1, 1, "6"); foo(2, 1, "9"); foo(3, 1, "12"); foo(0, 0, "4"); foo(1, 0, "8"); foo(2, 0, "12"); foo(3, 0, "16"); [/asy] If we add up the circled numbers in the example above (including the start and end squares), we get $48$. Considering all such possible paths: (a) What is the smallest sum we can possibly get when we add up the numbers along such a path? Prove your answer is correct. (b) What is the largest sum we can possibly get when we add up the numbers along such a path? Prove your answer is correct.

2002 Pan African, 3

Tags:
Prove for every integer $n>0$, there exists an integer $k>0$ such that $2^nk$ can be written in decimal notation using only digits 1 and 2.

2013 IPhOO, 2

Light of a blue laser (wavelength $\lambda=475 \, \text{nm}$) goes through a narrow slit which has width $d$. After the light emerges from the slit, it is visible on a screen that is $ \text {2.013 m} $ away from the slit. The distance between the center of the screen and the first minimum band is $ \text {765 mm} $. Find the width of the slit $d$, in nanometers. [i](Proposed by Ahaan Rungta)[/i]

2021 CMIMC, 14

Let $S$ be the set of lattice points $(x,y) \in \mathbb{Z}^2$ such that $-10\leq x,y \leq 10$. Let the point $(0,0)$ be $O$. Let Scotty the Dog's position be point $P$, where initially $P=(0,1)$. At every second, consider all pairs of points $C,D \in S$ such that neither $C$ nor $D$ lies on line $OP$, and the area of quadrilateral $OCPD$ (with the points going clockwise in that order) is $1$. Scotty finds the pair $C,D$ maximizing the sum of the $y$ coordinates of $C$ and $D$, and randomly jumps to one of them, setting that as the new point $P$. After $50$ such moves, Scotty ends up at point $(1, 1)$. Find the probability that he never returned to the point $(0,1)$ during these $50$ moves. [i]Proposed by David Tang[/i]

PEN Q Problems, 3

Tags: polynomial
Let $n \ge 2$ be an integer. Prove that if $k^2 + k + n$ is prime for all integers $k$ such that $0 \leq k \leq \sqrt{\frac{n}{3}}$, then $k^2 +k + n$ is prime for all integers $k$ such that $0 \leq k \leq n - 2$.

2011 Silk Road, 1

Tags: combinatorics , set
Determine the smallest possible value of $| A_{1} \cup A_{2} \cup A_{3} \cup A_{4} \cup A_{5} |$, where $A_{1}, A_{2}, A_{3}, A_{4}, A_{5}$ sets simultaneously satisfying the following conditions: $(i)$ $| A_{i}\cap A_{j} | = 1$ for all $1\leq i < j\leq 5$, i.e. any two distinct sets contain exactly one element in common; $(ii)$ $A_{i}\cap A_{j} \cap A_{k}\cap A_{l} =\varnothing$ for all $1\leq i<j<k<l\leq 5$, i.e. any four different sets contain no common element. Where $| S |$ means the number of elements of $S$.

2025 Bangladesh Mathematical Olympiad, P4

Find all prime numbers $p, q$ such that$$p(p+1)(p^2+1) = q^2(q^2+q+1) + 2025.$$ [i]Proposed by Md. Fuad Al Alam[/i]

2020 BMT Fall, 9

Tags: algebra
A sequence $a_n$ is defined by $a_0 = 0$, and for all $n \ge 1$, $a_n = a_{n-1} + (-1)^n \cdot n^2$. Compute $a_{100}$

2009 Indonesia TST, 2

Find the formula to express the number of $ n\minus{}$series of letters which contain an even number of vocals (A,I,U,E,O).

2016 Oral Moscow Geometry Olympiad, 6

Given an acute triangle $ABC$. Let $A'$ be a point symmetric to $A$ with respect to $BC, O_A$ is the center of the circle passing through $A$ and the midpoints of the segments $A'B$ and $A'C. O_B$ and $O_C$ points are defined similarly. Find the ratio of the radii of the circles circumscribed around the triangles $ABC$ and $O_AO_BO_C$.

2016 India National Olympiad, P4

Suppose $2016$ points of the circumference of a circle are colored red and the remaining points are colored blue . Given any natural number $n\ge 3$, prove that there is a regular $n$-sided polygon all of whose vertices are blue.

2021 JHMT HS, 3

Let $(x,y)$ be the coordinates of a point chosen uniformly at random within the unit square with vertices at $(0,0), (0,1), (1,0),$ and $(1,1).$ The probability that $|x - \tfrac{1}{2}| + |y - \tfrac{1}{2}| < \tfrac{1}{2}$ is $\tfrac{p}{q},$ where $p$ and $q$ are relatively prime integers. Find $p + q.$

2008 IberoAmerican, 4

Prove that the equation \[ x^{2008}\plus{} 2008!\equal{} 21^{y}\] doesn't have solutions in integers.

1999 Irish Math Olympiad, 1

Solve the system of equations: $ y^2\equal{}(x\plus{}8)(x^2\plus{}2),$ $ y^2\minus{}(8\plus{}4x)y\plus{}(16\plus{}16x\minus{}5x^2)\equal{}0.$

2002 AMC 10, 4

Tags: inequalities
For how many positive integers $ m$ does there exist at least one positive integer $ n$ such that $ m\cdot n \le m \plus{} n$? $ \textbf{(A)}\ 4 \qquad \textbf{(B)}\ 6 \qquad \textbf{(C)}\ 9 \qquad \textbf{(D)}\ 12 \qquad \textbf{(E)}$ infinitely many

2000 Brazil Team Selection Test, Problem 1

Consider a triangle $ABC$ and $I$ its incenter. The line $(AI)$ meets the circumcircle of $ABC$ in $D$. Let $E$ and $F$ be the orthogonal projections of $I$ on $(BD)$ and $(CD)$ respectively. Assume that $IE+IF=\frac{1}{2}AD$. Calculate $\angle{BAC}$. [color=red][Moderator edited: Also discussed at http://www.mathlinks.ro/Forum/viewtopic.php?t=5088 .][/color]

1999 Tournament Of Towns, 3

Tags: combinatorics , sum
Several positive integers $a_0 , a_1 , a_2 , ... , a_n$ are written on a board. On a second board, we write the amount $b_0$ of numbers written on the first board, the amount $b_1$ of numbers on the first board exceeding $1$, the amount $b_2$ of numbers greater than $2$, and so on as long as the $b$s are still positive. Then we stop, so that we do not write any zeros. On a third board we write the numbers $c_0 , c_1 , c_2 , ...$. using the same rules as before, but applied to the numbers $b_0 , b_1 , b_2 , ...$ of the second board. Prove that the same numbers are written on the first and the third boards. (H. Lebesgue - A Kanel)