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

1989 IMO Shortlist, 1

$ ABC$ is a triangle, the bisector of angle $ A$ meets the circumcircle of triangle $ ABC$ in $ A_1$, points $ B_1$ and $ C_1$ are defined similarly. Let $ AA_1$ meet the lines that bisect the two external angles at $ B$ and $ C$ in $ A_0$. Define $ B_0$ and $ C_0$ similarly. Prove that the area of triangle $ A_0B_0C_0 \equal{} 2 \cdot$ area of hexagon $ AC_1BA_1CB_1 \geq 4 \cdot$ area of triangle $ ABC$.

LMT Speed Rounds, 25

Tags: geometry
In triangle $ABC$ with centroid $G$ and circumcircle $\omega$, line $\overline{AG}$ intersects $BC$ at $D$ and $\omega$ at $P$. Given that $GD =DP = 3$, and $GC = 4$, find $AB^2$. [i]Proposed by Muztaba Syed[/i]

2010 Germany Team Selection Test, 1

Tags: geometry
In the plane we have points $P,Q,A,B,C$ such triangles $APQ,QBP$ and $PQC$ are similar accordantly (same direction). Then let $A'$ ($B',C'$ respectively) be the intersection of lines $BP$ and $CQ$ ($CP$ and $AQ;$ $AP$ and $BQ,$ respectively.) Show that the points $A,B,C,A',B',C'$ lie on a circle.

2016 Harvard-MIT Mathematics Tournament, 7

Tags:
Determine the smallest positive integer $n \ge 3$ for which \[ A \equiv 2^{10n} \pmod{2^{170}} \] where $A$ denotes the result when the numbers $2^{10}$, $2^{20}$, $\dots$, $2^{10n}$ are written in decimal notation and concatenated (for example, if $n=2$ we have $A = 10241048576$).

2007 Iran MO (3rd Round), 5

Let $ ABC$ be a triangle. Squares $ AB_{c}B_{a}C$, $ CA_{b}A_{c}B$ and $ BC_{a}C_{b}A$ are outside the triangle. Square $ B_{c}B_{c}'B_{a}'B_{a}$ with center $ P$ is outside square $ AB_{c}B_{a}C$. Prove that $ BP,C_{a}B_{a}$ and $ A_{c}B_{c}$ are concurrent.

Swiss NMO - geometry, 2017.1

Let $A$ and $B$ be points on the circle $k$ with center $O$, so that $AB> AO$. Let $C$ be the intersection of the bisectors of $\angle OAB$ and $k$, different from $A$. Let $D$ be the intersection of the straight line $AB$ with the circumcircle of the triangle $OBC$, different from $B$. Show that $AD = AO$ .

2011 Indonesia MO, 2

For each positive integer $n$, let $s_n$ be the number of permutations $(a_1, a_2, \cdots, a_n)$ of $(1, 2, \cdots, n)$ such that $\dfrac{a_1}{1} + \dfrac{a_2}{2} + \cdots + \dfrac{a_n}{n}$ is a positive integer. Prove that $s_{2n} \ge n$ for all positive integer $n$.

2014 Contests, 4

Tags: function , algebra
Find all functions $f:\mathbb{R}\to\mathbb{R}$ such that $f(x)f(y)=f(x+y)+xy$ for all $x,y\in \mathbb{R}$.

2015 Kurschak Competition, 1

In fencing, you win a round if you are the first to reach $15$ points. Suppose that when $A$ plays against $B$, at any point during the round, $A$ scores the next point with probability $p$ and $B$ scores the next point with probability $q=1-p$. (However, they never can both score a point at the same time.) Suppose that in this round, $A$ already has $14-k$ points, and $B$ has $14-\ell$ (where $0\le k,\ell\le 14$). By how much will the probability that $A$ wins the round increase if $A$ scores the next point?

2014 IMO, 6

A set of lines in the plane is in [i]general position[/i] if no two are parallel and no three pass through the same point. A set of lines in general position cuts the plane into regions, some of which have finite area; we call these its [i]finite regions[/i]. Prove that for all sufficiently large $n$, in any set of $n$ lines in general position it is possible to colour at least $\sqrt{n}$ lines blue in such a way that none of its finite regions has a completely blue boundary. [i]Note[/i]: Results with $\sqrt{n}$ replaced by $c\sqrt{n}$ will be awarded points depending on the value of the constant $c$.

2017 Ecuador NMO (OMEC), 1

Determine what day of the week day was: June $6$, $1944$. Note: Leap years are those that are multiples of $4$ and do not end in $00$ or that are multiples of $400$, for example $1812$, $1816$, $1820$, $1600$, $2000$, but $1800$, $1810$, $2100$ are not leaps. Giving the answer without any mathematical justification will not award points.

2015 German National Olympiad, 6

Prove that for all $x,y,z>0$, the inequality \[\frac{x+y+z}{3}+\frac{3}{\frac{1}{x}+\frac{1}{y}+\frac{1}{z}} \ge 5 \sqrt[3]{\frac{xyz}{16}}\] holds. Determine if equality can hold and if so, in which cases it occurs.

2023 Ukraine National Mathematical Olympiad, 10.1

Find all positive integers $k$, for which the product of some consecutive $k$ positive integers ends with $k$. [i]Proposed by Oleksiy Masalitin[/i]

1949-56 Chisinau City MO, 11

Tags: factoring , algebra
Factor the polynomial $x^3+x^2z+xyz+y^2z-y^3$.

2025 AMC 8, 9

Tags:
Nigli looks at the $6$ pairs of numbers directly across from each other on a clock. She takes the average of each pair of numbers. What is the average of the resulting $6$ numbers? [asy] import graph; size(8cm); // Draw the outer circle draw(circle((0,0), 1)); // Add the hour notches for (int i = 1; i <= 12; ++i) { real angle = (90 - i * 30) * pi / 180; pair outer = (cos(angle), sin(angle)); // Outer point of the notch pair inner = 0.9 * outer; // Inner point of the notch draw(inner -- outer); // Draw the notch // Add the hour numbers pair textPos = 1.15 * outer; // Position slightly outside the circle label(format("%d", i), textPos, align=(0,0)); } // Calculate the positions for 2 and 8 real angle2 = (90 - 2 * 30) * pi / 180; // 2 o'clock position real angle8 = (90 - 8 * 30) * pi / 180; // 8 o'clock position pair pos2 = (cos(angle2), sin(angle2)); // Position for 2 o'clock pair pos8 = (cos(angle8), sin(angle8)); // Position for 8 o'clock // Draw a dashed line from 2 to 8 draw(pos2 -- pos8, dashed); [/asy] $\textbf{(A) }5 \qquad\textbf{(B) } 6.5\qquad\textbf{(C) }8\qquad\textbf{(D) }9.5 \qquad\textbf{(E) }12$\\

MathLinks Contest 5th, 3.2

Let $0 < a_1 < a_2 <... < a_{16} < 122$ be $16$ integers. Prove that there exist integers $(p, q, r, s)$, with $1 \le p < r \le s < q \le 16$, such that $a_p + a_q = a_r + a_s$. An additional $2$ points will be awarded for this problem, if you can find a larger bound than $122$ (with proof).

2015 Singapore Senior Math Olympiad, 1

In an acute-angled triangle $ABC$, $M$ is a point on the side $BC$, the line $AM$ meets the circumcircle $\omega$ of $ABC$ at the point $Q$ distinct from $A$. The tangent to $\omega$ at $Q$ intersects the line through $M$ perpendicular to the diameter $AK$ of $\omega$ at the point $P$. Let $L$ be the point on $\omega$ distinct from $Q$ such that $PL$ is tangent to $\omega$ at $L$. Prove that $L,M$ and $K$ are collinear.

2017-IMOC, C2

On a large chessboard, there are $4$ puddings that form a square with size $1$. A pudding $A$ could jump over a pudding $B$, or equivalently, $A$ moves to the symmetric point with respect to $B$. Is it possible that after finite times of jumping, the puddings form a square with size $2$?

2018 Azerbaijan Senior NMO, 4

Numbers $1,2,3...,100$ are written on a board. $A$ and $B$ plays the following game: They take turns choosing a number from the board and deleting them. $A$ starts first. They sum all the deleted numbers. If after a player's turn (after he deletes a number on the board) the sum of the deleted numbers can't be expressed as difference of two perfect squares,then he loses, if not, then the game continues as usual. Which player got a winning strategy?

2022 May Olympiad, 5

The vertices of a regular polygon with $N$ sides are marked on the blackboard. Ana and Beto play alternately, Ana begins. Each player, in turn, must do the following: $\bullet$ join two vertices with a segment, without cutting another already marked segment; or $\bullet$ delete a vertex that does not belong to any marked segment. The player who cannot take any action on his turn loses the game. Determine which of the two players can guarantee victory: a) if $N=28$ b) if $N=29$

LMT Guts Rounds, 35

Tags:
Consider a set of $6$ fixed points in the plane, with no three collinear. Between some pairs of these points, we may draw one arrow from one point to the other. How many possible configurations of arrows are there such that if there is an arrow from point $A$ to point $B$ and an arrow from $B$ to $C,$ then there is an arrow from $A$ to $C?$ Your score will be $16-\frac{1}{800}|\textbf{Your Answer}-\textbf{Actual Answer}|$ rounded to the nearest integer or zero, whichever is higher.

2021 CIIM, 3

Let $m,n$ and $N$ be positive integers and $\mathbb{Z}_{N}=\{0,1,\dots,N-1\}$ a set of residues modulo $N$. Consider a table $m\times n$ such that each one of the $mn$ cells has an element of $\mathbb{Z}_{N}$. A [i]move[/i] is choose an element $g\in \mathbb{Z}_{N}$, a cell in the table and add $+g$ to the elements in the same row/column of the chosen cell(the sum is modulo $N$). Prove that if $N$ is coprime with $m-1,n-1,m+n-1$ then any initial arrangement of your elements in the table cells can become any other arrangement using an finite quantity of moves.

2017 AMC 10, 22

The diameter $\overline{AB}$ of a circle of radius $2$ is extended to a point $D$ outside the circle so that $BD=3$. Point $E$ is chosen so that $ED=5$ and the line $ED$ is perpendicular to the line $AD$. Segment $\overline{AE}$ intersects the circle at point $C$ between $A$ and $E$. What is the area of $\triangle ABC$? $\textbf{(A) \ } \frac{120}{37}\qquad \textbf{(B) \ } \frac{140}{39}\qquad \textbf{(C) \ } \frac{145}{39}\qquad \textbf{(D) \ } \frac{140}{37}\qquad \textbf{(E) \ } \frac{120}{31}$

2003 IMO Shortlist, 1

Let $m$ be a fixed integer greater than $1$. The sequence $x_0$, $x_1$, $x_2$, $\ldots$ is defined as follows: \[x_i = \begin{cases}2^i&\text{if }0\leq i \leq m - 1;\\\sum_{j=1}^mx_{i-j}&\text{if }i\geq m.\end{cases}\] Find the greatest $k$ for which the sequence contains $k$ consecutive terms divisible by $m$ . [i]Proposed by Marcin Kuczma, Poland[/i]

1996 Estonia National Olympiad, 2

Does there exist a positive integer such that its last digit is nonzero and that it becomes exactly two times bigger when the order of its digits is reversed?