Found problems: 85335
1980 VTRMC, 4
Let $P(x)$ be any polynomial of degree at most $3.$ It can be shown that there are numbers $x_1$ and $x_2$ such that $\textstyle\int_{-1}^1 P(x) \ dx = P(x_1) + P(x_2),$ where $x_1$ and $x_2$ are independent of the polynomial $P.$
(a) Show that $x_1=-x_2.$
(b) Find $x_1$ and $x_2.$
1984 AIME Problems, 3
A point $P$ is chosen in the interior of $\triangle ABC$ so that when lines are drawn through $P$ parallel to the sides of $\triangle ABC$, the resulting smaller triangles, $t_1$, $t_2$, and $t_3$ in the figure, have areas 4, 9, and 49, respectively. Find the area of $\triangle ABC$.
[asy]
size(200);
pathpen=black+linewidth(0.65);pointpen=black;
pair A=(0,0),B=(12,0),C=(4,5);
D(A--B--C--cycle); D(A+(B-A)*3/4--A+(C-A)*3/4); D(B+(C-B)*5/6--B+(A-B)*5/6);D(C+(B-C)*5/12--C+(A-C)*5/12);
MP("A",C,N);MP("B",A,SW);MP("C",B,SE); /* sorry mixed up points according to resources diagram. */
MP("t_3",(A+B+(B-A)*3/4+(A-B)*5/6)/2+(-1,0.8),N);
MP("t_2",(B+C+(B-C)*5/12+(C-B)*5/6)/2+(-0.3,0.1),WSW);
MP("t_1",(A+C+(C-A)*3/4+(A-C)*5/12)/2+(0,0.15),ESE);[/asy]
LMT Accuracy Rounds, 2022 S1
Kevin colors a ninja star on a piece of graph paper where each small square has area $1$ square inch. Find the area of the region colored, in square inches.
[img]https://cdn.artofproblemsolving.com/attachments/3/3/86f0ae7465e99d3e4bd3a816201383b98dc429.png[/img]
2014 France Team Selection Test, 1
Let $n$ be an positive integer. Find the smallest integer $k$ with the following property; Given any real numbers $a_1 , \cdots , a_d $ such that $a_1 + a_2 + \cdots + a_d = n$ and $0 \le a_i \le 1$ for $i=1,2,\cdots ,d$, it is possible to partition these numbers into $k$ groups (some of which may be empty) such that the sum of the numbers in each group is at most $1$.
2005 Slovenia Team Selection Test, 1
The diagonals of a convex quadrilateral $ABCD$ intersect at $M$. The bisector of $\angle ACD$ intersects the ray $BA$ at $K$. Prove that if $MA\cdot MC + MA\cdot CD = MB \cdot MD $, then $\angle BKC = \angle BDC$
1988 China Team Selection Test, 1
Let $f(x) = 3x + 2.$ Prove that there exists $m \in \mathbb{N}$ such that $f^{100}(m)$ is divisible by $1988$.
1987 AMC 12/AHSME, 24
How many polynomial functions $f$ of degree $\ge 1$ satisfy
\[ f(x^2)=[f(x)]^2=f(f(x)) \ ? \]
$ \textbf{(A)}\ 0 \qquad\textbf{(B)}\ 1 \qquad\textbf{(C)}\ 2 \qquad\textbf{(D)}\ \text{finitely many but more than 2} \\ \qquad\textbf{(E)}\ \text{infinitely many} $
Russian TST 2017, P2
Prove that every rational number is representable as $x^4+y^4-z^4-t^4$ with rational $x,y,z,t$.
2005 CHKMO, 2
In a school there $b$ teachers and $c$ students. Suppose that
a) each teacher teaches exactly $k$ students, and
b)for any two (distinct) students , exactly $h$ teachers teach both of them.
Prove that $\frac{b}{h}=\frac{c(c-1)}{k(k-1)}$.
2000 Belarus Team Selection Test, 1.1
Find the minimal number of cells on a $5\times 7$ board that must be painted so that any cell which is not painted has exactly one neighboring (having a common side) painted cell.
2016 HMNT, 8
Alex has an $20 \times 16$ grid of lightbulbs, initially all off. He has $36$ switches, one for each row and column. Flipping the switch for the $i$th row will toggle the state of each lightbulb in the $i$th row (so that if it were on before, it would be off, and vice versa). Similarly, the switch for the $j$th column will toggle the state of each bulb in the $j$th column. Alex makes some (possibly empty) sequence of switch flips, resulting in some configuration of the lightbulbs and their states. How many distinct possible configurations of lightbulbs can Alex achieve with such a sequence? Two configurations are distinct if there exists a lightbulb that is on in one configuration and off in another.
2022 Malaysia IMONST 2, 3
Given an integer $n$. We rearrange the digits of $n$ to get another number $m$. Prove that it is impossible to get $m+n = 999999999$.
2020 Romanian Master of Mathematics Shortlist, C1
Bethan is playing a game on an $n\times n$ grid consisting of $n^2$ cells. A move consists of placing a counter in an unoccupied cell $C$ where the $2n-2$ other cells in the same row or column as $C$ contain an even number of counters. After making $M$ moves Bethan realises she cannot make any more moves. Determine the minimum value of $M$.
[i]United Kingdom, Sam Bealing[/i]
2012 China Girls Math Olympiad, 2
Circles $Q_1$ and $Q_2$ are tangent to each other externally at $T$. Points $A$ and $E$ are on $Q_1$, lines $AB$ and $DE$ are tangent to $Q_2$ at $B$ and $D$, respectively, lines $AE$ and $BD$ meet at point $P$. Prove that
(1) $\frac{AB}{AT}=\frac{ED}{ET}$;
(2) $\angle ATP + \angle ETP = 180^{\circ}$.
[asy]import graph; size(5.97cm); real lsf=0.5; pathpen=linewidth(0.7); pointpen=black; pen fp=fontsize(10); pointfontpen=fp; real xmin=-6,xmax=5.94,ymin=-3.19,ymax=3.43;
pair Q_1=(-2.5,-0.5), T=(-1.5,-0.5), Q_2=(0.5,-0.5), A=(-2.09,0.41), B=(-0.42,1.28), D=(-0.2,-2.37), P=(-0.52,2.96);
D(CR(Q_1,1)); D(CR(Q_2,2)); D(A--B); D((-3.13,-1.27)--D); D(P--(-3.13,-1.27)); D(P--D); D(T--(-3.13,-1.27)); D(T--A); D(T--P);
D(Q_1); MP("Q_1",(-2.46,-0.44),NE*lsf); D(T); MP("T",(-1.46,-0.44),NE*lsf); D(Q_2); MP("Q_2",(0.54,-0.44),NE*lsf); D(A); MP("A",(-2.22,0.58),NE*lsf); D(B); MP("B",(-0.35,1.45),NE*lsf); D((-3.13,-1.27)); MP("E",(-3.52,-1.62),NE*lsf); D(D); MP("D",(-0.17,-2.31),NE*lsf); D(P); MP("P",(-0.47,3.02),NE*lsf);
clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle); [/asy]
2006 German National Olympiad, 5
Let $x \neq 0$ be a real number satisfying $ax^2+bx+c=0$ with $a,b,c \in \mathbb{Z}$ obeying $|a|+|b|+|c| > 1$. Then prove \[ |x| \geq \frac{1}{|a|+|b|+|c|-1}. \]
2005 Germany Team Selection Test, 3
A positive integer is called [i]nice[/i] if the sum of its digits in the number system with base $ 3$ is divisible by $ 3$.
Calculate the sum of the first $ 2005$ nice positive integers.
Kvant 2023, M2756
a) Determine if there exists a convex hexagon $ABCDEF$ with
$$\angle ABD + \angle AED > 180^{\circ},$$
$$\angle BCE + \angle BFE > 180^{\circ},$$
$$\angle CDF + \angle CAF > 180^{\circ}.$$
b) The same question, with additional condition, that diagonals $AD, BE,$ and $CF$ are concurrent.
2010 Kyrgyzstan National Olympiad, 6
Let $p$ - a prime, where $p> 11$. Prove that there exists a number $k$ such that the product $p \cdot k$ can be written in the decimal system with only ones.
1998 Miklós Schweitzer, 10
Let $\xi_1 , \xi_2 , ...$ be a series of independent, zero-expected-value random variables for which $\lim_{n\to\infty} E(\xi_n ^ 2) = 0$, and $S_n = \sum_{j = 1}^n \xi_j$ . Denote by I(A) the indicator function of event A. Prove that
$$\frac{1}{\log n} \sum_{k = 1}^n \frac1k I\bigg(\max_{1\leq j\leq k} |S_j|>\sqrt k\bigg) \to 0$$
with probability 1 if $n\to\infty$ .
2017 Balkan MO, 4
On a circular table sit $\displaystyle {n> 2}$ students. First, each student has just one candy. At each step, each student chooses one of the following actions:
(A) Gives a candy to the student sitting on his left or to the student sitting on his right.
(B) Separates all its candies in two, possibly empty, sets and gives one set to the student sitting on his left and the other to the student sitting on his right.
At each step, students perform the actions they have chosen at the same time.
A distribution of candy is called legitimate if it can occur after a finite number of steps.
Find the number of legitimate distributions.
(Two distributions are different if there is a student who has a different number of candy in each of these distributions.)
(Forgive my poor English)
1947 Moscow Mathematical Olympiad, 135-
Position the $4$ points on plane so that when measuring of all pairwise distances between them, it turned out only two different numbers. Find all such locations.
2005 Harvard-MIT Mathematics Tournament, 6
Find the sum of the x-coordinates of the distinct points of intersection of the plane curves given by $x^2 = x + y + 4$ and $y^2 = y - 15x + 36$.
2015 Sharygin Geometry Olympiad, P9
Let $ABC$ be an acute-angled triangle. Construct points $A', B', C'$ on its sides $BC, CA, AB$ such that:
- $A'B' \parallel AB$,
- $C'C$ is the bisector of angle $A'C'B'$,
- $A'C' + B'C'= AB$.
2012 Indonesia TST, 4
Find all odd prime $p$ such that $1+k(p-1)$ is prime for all integer $k$ where $1 \le k \le \dfrac{p-1}{2}$.
2023 MOAA, 4
A two-digit number $\overline{ab}$ is [i]self-loving[/i] if $a$ and $b$ are relatively prime positive integers and $\overline{ab}$ is divisible by $a+b$. How many self-loving numbers are there?
[i]Proposed by Anthony Yang and Andy Xu[/i]