Found problems: 85335
2007 Stanford Mathematics Tournament, 14
Let $p, q$ be positive integers and let $x_{0}=0$. Suppose $x_{n+1}=x_{n} + p + \sqrt{q^{2} + 4px_{n}}$. Find an explicit formula for $x_{n}$.
1973 IMO Shortlist, 2
Given a circle $K$, find the locus of vertices $A$ of parallelograms $ABCD$ with diagonals $AC \leq BD$, such that $BD$ is inside $K$.
2002 Austria Beginners' Competition, 3
Find all real numbers $x$ that satisfy the following inequality $|x^2-4x+1|>|x^2-4x+5|$
2008 Tuymaada Olympiad, 5
Every street in the city of Hamiltonville connects two squares, and every square may be reached by streets from every other. The governor discovered that if he closed all squares of any route not passing any square more than once, every remained square would be reachable from each other. Prove that there exists a circular route passing every square of the city exactly once.
[i]Author: S. Berlov[/i]
2011 All-Russian Olympiad Regional Round, 9.3
A closed non-self-intersecting polygonal chain is drawn through the centers of some squares on the $8\times 8$ chess board. Every link of the chain connects the centers of adjacent squares either horizontally, vertically or diagonally, where the two squares are adjacent if they share an edge or a corner. For the interior polygon bounded by the chain, prove that the total area of black pieces equals the total area of white pieces. (Author: D. Khramtsov)
1951 Miklós Schweitzer, 13
Of how many terms does the expansion of a determinant of order $ 2n$ consist if those and only those elements $ a_{ik}$ are non-zero for which $ i\minus{}k$ is divisible by $ n$?
2012 Korea Junior Math Olympiad, 6
$p > 3$ is a prime number such that $p|2^{p-1} - 1$ and $p \nmid 2^x - 1$ for $x = 1, 2,...,p-2$. Let $p = 2k + 3$. Now we define sequence $\{a_n\}$ as $$a_i = a_{i+k} = 2^i \,\, (1 \le i \le k ), \,\,\,\, a_{j+2k} = a_ja_{j+k} \,\, (j \le 1)$$
Prove that there exist $2k$ consecutive terms of sequence $a_{x+1},a_{x+2},..., a_{x+2k}$ such that $a_{x+i } \not\equiv a_{x+j}$ (mod $p$) for all $1 \le i < j \le 2k$ .
2019 Belarusian National Olympiad, 11.8
At each node of the checkboard $n\times n$ board, a beetle sat. At midnight, each beetle crawled into the center of a cell. It turned out that the distance between any two beetles sitting in the adjacent (along the side) nodes didn't increase.
Prove that at least one beetle crawled into the center of a cell at the vertex of which it sat initially.
[i](A. Voidelevich)[/i]
2004 Abels Math Contest (Norwegian MO), 2
(a) Prove that $(x+y+z)^2 \le 3(x^2 +y^2 +z^2)$ for any real numbers $x,y,z$.
(b) If positive numbers $a,b,c$ satisfy $a+b+c \ge abc$, prove that $a^2 +b^2 +c^2 \ge \sqrt3 abc$
2010 LMT, 1
J has several cheetahs in his dresser, which has $7$ drawers, such that each drawer has the same number of cheetahs. He notices that he can take out one drawer, and redistribute all of the cheetahs (including those in the removed drawer) in the remaining $6$ drawers such that each drawer still has an equal number of cheetahs as the other drawers. If he has at least one cheetah, what is the smallest number of cheetahs that he can have?
2000 VJIMC, Problem 1
Is there a countable set $Y$ and an uncountable family $\mathcal F$ of its subsets such that for every two distinct $A,B\in\mathcal F$, their intersection $A\cap B$ is finite?
2020 USMCA, 2
Let $ABC$ be an acute triangle with circumcircle $\Gamma$ and let $D$ be the midpoint of minor arc $BC$. Let $E, F$ be on $\Gamma$ such that $DE \bot AC$ and $DF \bot AB$. Lines $BE$ and $DF$ meet at $G$, and lines $CF$ and $DE$ meet at $H$. Show that $BCHG$ is a parallelogram.
2011 AIME Problems, 8
In triangle $ABC$, $BC = 23$, $CA = 27$, and $AB = 30$. Points $V$ and $W$ are on $\overline{AC}$ with $V$ on $\overline{AW}$, points $X$ and $Y$ are on $\overline{BC}$ with $X$ on $\overline{CY}$, and points $Z$ and $U$ are on $\overline{AB}$ with $Z$ on $\overline{BU}$. In addition, the points are positioned so that $\overline{UV} \parallel \overline{BC}$, $\overline{WX} \parallel \overline{AB}$, and $\overline{YZ} \parallel \overline{CA}$. Right angle folds are then made along $\overline{UV}$, $\overline{WX}$, and $\overline{YZ}$. The resulting figure is placed on a level floor to make a table with triangular legs. Let $h$ be the maximum possible height of a table constructed from triangle $ABC$ whose top is parallel to the floor. Then $h$ can be written in the form $\tfrac{k \sqrt{m}}{n}$, where $k$ and $n$ are relatively prime positive integers and $m$ is a positive integer that is not divisible by the square of any prime. Find $k + m + n$.
[asy]
unitsize(1 cm);
pair translate;
pair[] A, B, C, U, V, W, X, Y, Z;
A[0] = (1.5,2.8);
B[0] = (3.2,0);
C[0] = (0,0);
U[0] = (0.69*A[0] + 0.31*B[0]);
V[0] = (0.69*A[0] + 0.31*C[0]);
W[0] = (0.69*C[0] + 0.31*A[0]);
X[0] = (0.69*C[0] + 0.31*B[0]);
Y[0] = (0.69*B[0] + 0.31*C[0]);
Z[0] = (0.69*B[0] + 0.31*A[0]);
translate = (7,0);
A[1] = (1.3,1.1) + translate;
B[1] = (2.4,-0.7) + translate;
C[1] = (0.6,-0.7) + translate;
U[1] = U[0] + translate;
V[1] = V[0] + translate;
W[1] = W[0] + translate;
X[1] = X[0] + translate;
Y[1] = Y[0] + translate;
Z[1] = Z[0] + translate;
draw (A[0]--B[0]--C[0]--cycle);
draw (U[0]--V[0],dashed);
draw (W[0]--X[0],dashed);
draw (Y[0]--Z[0],dashed);
draw (U[1]--V[1]--W[1]--X[1]--Y[1]--Z[1]--cycle);
draw (U[1]--A[1]--V[1],dashed);
draw (W[1]--C[1]--X[1]);
draw (Y[1]--B[1]--Z[1]);
dot("$A$",A[0],N);
dot("$B$",B[0],SE);
dot("$C$",C[0],SW);
dot("$U$",U[0],NE);
dot("$V$",V[0],NW);
dot("$W$",W[0],NW);
dot("$X$",X[0],S);
dot("$Y$",Y[0],S);
dot("$Z$",Z[0],NE);
dot(A[1]);
dot(B[1]);
dot(C[1]);
dot("$U$",U[1],NE);
dot("$V$",V[1],NW);
dot("$W$",W[1],NW);
dot("$X$",X[1],dir(-70));
dot("$Y$",Y[1],dir(250));
dot("$Z$",Z[1],NE);
[/asy]
2011 Saudi Arabia BMO TST, 2
For each positive integer $n$ let the set $A_n$ consist of all numbers $\pm 1 \pm 2 \pm ...\pm n$. For example, $$A_1 = \{-1,1\}, A_2 = \{ -3 ,-1 ,1 ,3 \} , A_3 = \{ -6 ,-4 ,-2 ,0 ,2 ,4 ,6 \}.$$
Find the number of elements in $A_n$ .
1951 AMC 12/AHSME, 20
When simplified and expressed with negative exponents, the expression $ (x \plus{} y)^{ \minus{} 1}(x^{ \minus{} 1} \plus{} y^{ \minus{} 1})$ is equal to:
$ \textbf{(A)}\ x^{ \minus{} 2} \plus{} 2x^{ \minus{} 1}y^{ \minus{} 1} \plus{} y^{ \minus{} 2} \qquad\textbf{(B)}\ x^{ \minus{} 2} \plus{} 2^{ \minus{} 1}x^{ \minus{} 1}y^{ \minus{} 1} \plus{} y^{ \minus{} 2} \qquad\textbf{(C)}\ x^{ \minus{} 1}y^{ \minus{} 1}$
$ \textbf{(D)}\ x^{ \minus{} 2} \plus{} y^{ \minus{} 2} \qquad\textbf{(E)}\ \frac {1}{x^{ \minus{} 1}y^{ \minus{} 1}}$
2019 Baltic Way, 12
Let $ABC$ be a triangle and $H$ its orthocenter. Let $D$ be a point lying on the segment $AC$ and let $E$ be the point on the line $BC$ such that $BC\perp DE$. Prove that $EH\perp BD$ if and only if $BD$ bisects $AE$.
2002 Kurschak Competition, 3
Prove that the edges of a complete graph with $3^n$ vertices can be partitioned into disjoint cycles of length $3$.
1970 IMO Longlists, 2
Prove that the two last digits of $9^{9^{9}}$ and $9^{9^{9^{9}}}$ are the same in decimal representation.
2003 National Olympiad First Round, 9
How many integer triangles are there with inradius $1$?
$
\textbf{(A)}\ 0
\qquad\textbf{(B)}\ 1
\qquad\textbf{(C)}\ 2
\qquad\textbf{(D)}\ 3
\qquad\textbf{(E)}\ \text{Infinite}
$
2017 CMIMC Algebra, 8
Suppose $a_1$, $a_2$, $\ldots$, $a_{10}$ are nonnegative integers such that \[\sum_{k=1}^{10}a_k=15\qquad\text{and}\qquad \sum_{k=1}^{10}ka_k = 80.\] Let $M$ and $m$ denote the maximum and minimum respectively of $\sum_{k=1}^{10}k^2a_k$. Compute $M-m$.
2002 China Western Mathematical Olympiad, 1
Find all positive integers $ n$ such that $ n^4\minus{}4n^3\plus{}22n^2\minus{}36n\plus{}18$ is a perfect square.
1990 IMO Longlists, 5
Let $x,y,z$ be positive reals and $x \geq y \geq z$. Prove that
\[\frac{x^2y}{z}+\frac{y^2z}{x}+\frac{z^2x}{y} \geq x^2+y^2+z^2\]
1969 Miklós Schweitzer, 10
In $ n$-dimensional Euclidean space, the square of the two-dimensional Lebesgue measure of a bounded, closed, (two-dimensional) planar set is equal to the sum of the squares of the measures of the orthogonal projections of the given set on the $ n$-coordinate hyperplanes.
[i]L. Tamassy[/i]
2011 National Olympiad First Round, 16
There are $2011$ stones, whose weights are positive integers. If it is possible to divide these stones into $n$ groups not containing two stones with one weighs two times of the other, what is the least possible value of $n$?
$\textbf{(A)}\ 102 \qquad\textbf{(B)}\ 51 \qquad\textbf{(C)}\ 12 \qquad\textbf{(D)}\ 11 \qquad\textbf{(E)}\ \text{None}$
2010 Contests, 1
A [i]permutation[/i] of the set of positive integers $[n] = \{1, 2, . . . , n\}$ is a sequence $(a_1 , a_2 , \ldots, a_n ) $ such that each element of $[n]$ appears precisely one time as a term of the sequence. For example, $(3, 5, 1, 2, 4)$ is a permutation of $[5]$. Let $P (n)$ be the number of permutations of $[n]$ for which $ka_k$ is a perfect square for all $1 \leq k \leq n$. Find with proof the smallest $n$ such that $P (n)$ is a multiple of $2010$.