Found problems: 85335
1989 Tournament Of Towns, (227) 1
Find the number of solutions in positive integers of the equation $\lfloor \frac{x}{2} \rfloor = \lfloor \frac{x}{11} \rfloor +1$
where $\lfloor A\rfloor$ denotes the integer part of the number $A$, e.g. $\lfloor 2.031\rfloor = 2$, $\lfloor 2\rfloor = 2$, etc.
2006 Turkey MO (2nd round), 3
Find all the triangles such that its side lenghts, area and its angles' measures (in degrees) are rational.
2014 Tournament of Towns., 4
Point L is marked on side BC of triangle ABC so that AL is twice as long as the median CM. Given that angle ALC is equal to 45 degrees prove that AL is perpendicular to CM.
2014 IFYM, Sozopol, 1
A plane is cut into unit squares, each of which is colored in black or white. It is known that each rectangle 3 x 4 or 4 x 3 contains exactly 8 white squares. In how many ways can this plane be colored?
2008 District Olympiad, 2
Let $ S\equal{}\{1,2,\ldots,n\}$ be a set, where $ n\geq 6$ is an integer. Prove that $ S$ is the reunion of 3 pairwise disjoint subsets, with the same number of elements and the same sum of their elements, if and only if $ n$ is a multiple of 3.
VI Soros Olympiad 1999 - 2000 (Russia), 10.3
Find all functions $f$ that map the set of real numbers into the set of real numbers, satisfying the following conditions:
1) $|f(x)|\ge 1$,
2) $f(x+y)=\frac{f(x)+f(y)}{1+f(x)f(y)}$ of all real values of $x $ and $y$.
2008 Singapore Team Selection Test, 2
Find all functions $ f : \mathbb R \rightarrow \mathbb R$ such that $ (x \plus{} y)(f(x) \minus{} f(y)) \equal{} (x \minus{}y)f(x \plus{} y)$ for all $ x, y\in \mathbb R$
2010 Bulgaria National Olympiad, 1
Does there exist a number $n=\overline{a_1a_2a_3a_4a_5a_6}$ such that $\overline{a_1a_2a_3}+4 = \overline{a_4a_5a_6}$ (all bases are $10$) and $n=a^k$ for some positive integers $a,k$ with $k \geq 3 \ ?$
2025 Alborz Mathematical Olympiad, P3
For every positive integer \( n \), do there exist pairwise distinct positive integers \( a_1, a_2, \dots, a_n \) that satisfy the following condition?
For every \( 3 \leq m \leq n \), there exists an \( i \leq m-2 \) such that:
$$
a_m = a_{\gcd(m-1, i)} + \gcd(a_{m-1}, a_i).
$$
Proposed by Alireza Jannati
2016 Polish MO Finals, 5
There are given two positive real number $a<b$. Show that there exist positive integers $p, \ q, \ r, \ s$ satisfying following conditions:
$1$. $a< \frac{p}{q} < \frac{r}{s} < b$.
$2.$ $p^2+q^2=r^2+s^2$.
Swiss NMO - geometry, 2014.1
The points $A, B, C$ and $D$ lie in this order on the circle $k$. Let $t$ be the tangent at $k$ through $C$ and $s$ the reflection of $AB$ at $AC$. Let $G$ be the intersection of the straight line $AC$ and $BD$ and $H$ the intersection of the straight lines $s$ and $CD$. Show that $GH$ is parallel to $t$.
1979 AMC 12/AHSME, 29
For each positive number $x$, let \[f(x)=\displaystyle\frac{\left(x+\dfrac{1}{x}\right)^6-\left(x^6+\dfrac{1}{x^6}\right)-2}{\left(x+\frac{1}{x}\right)^3+\left(x^3+\frac{1}{x^3}\right)}.\] The minimum value of $f(x)$ is
$\textbf{(A) }1\qquad\textbf{(B) }2\qquad\textbf{(C) }3\qquad\textbf{(D) }4\qquad\textbf{(E) }6$
1998 Austrian-Polish Competition, 5
Determine all pairs $(a, b)$ of positive integers for which the equation $x^3 - 17x^2 + ax - b^2 = 0$ has three integer roots (not necessarily different).
2017 IMO Shortlist, G2
Let $R$ and $S$ be different points on a circle $\Omega$ such that $RS$ is not a diameter. Let $\ell$ be the tangent line to $\Omega$ at $R$. Point $T$ is such that $S$ is the midpoint of the line segment $RT$. Point $J$ is chosen on the shorter arc $RS$ of $\Omega$ so that the circumcircle $\Gamma$ of triangle $JST$ intersects $\ell$ at two distinct points. Let $A$ be the common point of $\Gamma$ and $\ell$ that is closer to $R$. Line $AJ$ meets $\Omega$ again at $K$. Prove that the line $KT$ is tangent to $\Gamma$.
[i]Proposed by Charles Leytem, Luxembourg[/i]
1979 AMC 12/AHSME, 28
Circles with centers $A ,~ B,$ and $C$ each have radius $r$, where $1 < r < 2$. The distance between each pair of centers is $2$. If $B'$ is the point of intersection of circle $A$ and circle $C$ which is outside circle $B$, and if $C'$ is the point of intersection of circle $A$ and circle $B$ which is outside circle $C$, then length $B'C'$ equals
$\textbf{(A) }3r-2\qquad\textbf{(B) }r^2\qquad\textbf{(C) }r+\sqrt{3(r-1)}\qquad$
$\textbf{(D) }1+\sqrt{3(r^2-1)}\qquad\textbf{(E) }\text{none of these}$
[asy]
//Holy crap, CSE5 is freaking amazing!
import cse5;
pathpen=black;
pointpen=black;
dotfactor=3;
size(200);
pair A=(1,2),B=(2,0),C=(0,0);
D(CR(A,1.5));
D(CR(B,1.5));
D(CR(C,1.5));
D(MP("$A$",A));
D(MP("$B$",B));
D(MP("$C$",C));
pair[] BB,CC;
CC=IPs(CR(A,1.5),CR(B,1.5));
BB=IPs(CR(A,1.5),CR(C,1.5));
D(BB[0]--CC[1]);
MP("$B'$",BB[0],NW);MP("$C'$",CC[1],NE);
//Credit to TheMaskedMagician for the diagram
[/asy]
1994 Korea National Olympiad, Problem 1
Consider the equation $ y^2\minus{}k\equal{}x^3$, where $ k$ is an integer.
Prove that the equation cannot have five integer solutions of the form
$ (x_1,y_1),(x_2,y_1\minus{}1),(x_3,y_1\minus{}2),(x_4,y_1\minus{}3),(x_5,y_1\minus{}4)$.
Also show that if it has the first four of these pairs as solutions, then $ 63|k\minus{}17$.
2021 China National Olympiad, 6
Find $f: \mathbb{Z}_+ \rightarrow \mathbb{Z}_+$, such that for any $x,y \in \mathbb{Z}_+$, $$f(f(x)+y)\mid x+f(y).$$
2016 District Olympiad, 4
Let $ a\ge 2 $ be a natural number. Show that the following relations are equivalent:
$ \text{(i)} \ a $ is the hypothenuse of a right triangle whose sides are natural numbers.
$ \text{(ii)}\quad $ there exists a natural number $ d $ for which the polynoms $ X^2-aX\pm d $ have integer roots.
2010 Today's Calculation Of Integral, 631
Evaluate $\int_{\sqrt{2}}^{\sqrt{3}} (x^2+\sqrt{x^4-1})(\frac{1}{\sqrt{x^2+1}}+{\frac{1}{\sqrt{x^2-1}})dx.}$
[i]Proposed by kunny[/i]
1988 National High School Mathematics League, 12
$a,b$ are real numbers, satisfying that $\frac{1}{a}+\frac{1}{b}=1$. Prove that for any $n\in\mathbb{Z}_+$, $(a+b)^{2n}-a^n-b^n\geq2^{2n}-2^{n+1}$.
2005 All-Russian Olympiad Regional Round, 9.7
9.7 Is there an infinite arithmetic sequence $\{a_n\}\subset \mathbb N$ s.t. $a_n+...+a_{n+9}\mid a_n...a_{n+9}$ for all $n$?
([i]V. Senderov[/i])
May Olympiad L1 - geometry, 2004.4
In a square $ABCD$ of diagonals $AC$ and $BD$, we call $O$ at the center of the square. A square $PQRS$ is constructed with sides parallel to those of $ABCD$ with $P$ in segment $AO, Q$ in segment $BO, R$ in segment $CO, S$ in segment $DO$. If area of $ABCD$ equals two times the area of $PQRS$, and $M$ is the midpoint of the $AB$ side, calculate the measure of the angle $\angle AMP$.
2023 Iran Team Selection Test, 3
Arman, starting from a number, calculates the sum of the cubes of the digits of that number, and again calculates the sum of the cubes of the digits of the resulting number and continues the same process. Arman calls a number $Good$ if it reaches $1$ after performing a number of steps. Prove that there is an arithmetic progression of length $1402$ of good numbers.
[i]Proposed by Navid Safaei [/i]
1994 IMC, 5
a) Let $f\in C[0,b]$, $g\in C(\mathbb R)$ and let $g$ be periodic with period $b$. Prove that $\int_0^b f(x) g(nx)\,\mathrm dx$ has a limit as $n\to\infty$ and
$$\lim_{n\to\infty}\int_0^b f(x)g(nx)\,\mathrm dx=\frac 1b \int_0^b f(x)\,\mathrm dx\cdot\int_0^b g(x)\,\mathrm dx$$
b) Find
$$\lim_{n\to\infty}\int_0^\pi \frac{\sin x}{1+3\cos^2nx}\,\mathrm dx$$
2016 Junior Balkan Team Selection Tests - Romania, 4
We have a 4x4 board.All 1x1 squares are white.A move is changing colours of all squares of a 1x3 rectangle from black to white and from white to black.It is possible to make all the 1x1 squares black after several moves?