Found problems: 85335
2008 Sharygin Geometry Olympiad, 1
(B.Frenkin) Does a convex quadrilateral without parallel sidelines exist such that it can be divided into four congruent triangles?
2011 AMC 12/AHSME, 6
Two tangents to a circle are drawn from a point $A$. The points of contact $B$ and $C$ divide the circle into arcs with lengths in the ratio $2:3$. What is the degree measure of $\angle BAC$?
$ \textbf{(A)}\ 24 \qquad
\textbf{(B)}\ 30 \qquad
\textbf{(C)}\ 36 \qquad
\textbf{(D)}\ 48 \qquad
\textbf{(E)}\ 60 $
Putnam 1939, B3
Given $a_n = (n^2 + 1) 3^n,$ find a recurrence relation $a_n + p a_{n+1} + q a_{n+2} + r a_{n+3} = 0.$ Hence evaluate $\sum_{n\geq0} a_n x^n.$
2013 National Olympiad First Round, 4
The numbers $1,2,\dots, 49$ are written on unit squares of a $7\times 7$ chessboard such that consequtive numbers are on unit squares sharing a common edge. At most how many prime numbers can a row have?
$
\textbf{(A)}\ 7
\qquad\textbf{(B)}\ 6
\qquad\textbf{(C)}\ 5
\qquad\textbf{(D)}\ 3
\qquad\textbf{(E)}\ 3
$
PEN A Problems, 42
Suppose that $2^n +1$ is an odd prime for some positive integer $n$. Show that $n$ must be a power of $2$.
2007 China Team Selection Test, 3
Consider a $ 7\times 7$ numbers table $ a_{ij} \equal{} (i^2 \plus{} j)(i \plus{} j^2), 1\le i,j\le 7.$ When we add arbitrarily each term of an arithmetical progression consisting of $ 7$ integers to corresponding to term of certain row (or column) in turn, call it an operation. Determine whether such that each row of numbers table is an arithmetical progression, after a finite number of operations.
2016 Dutch IMO TST, 4
Let $\Gamma_1$ be a circle with centre $A$ and $\Gamma_2$ be a circle with centre $B$, with $A$ lying on $\Gamma_2$. On $\Gamma_2$ there is a (variable) point $P$ not lying on $AB$. A line through $P$ is a tangent of $\Gamma_1$ at $S$, and it intersects $\Gamma_2$ again in $Q$, with $P$ and $Q$ lying on the same side of $AB$. A different line through $Q$ is tangent to $\Gamma_1$ at $T$. Moreover, let $M$ be the foot of the perpendicular to $AB$ through $P$. Let $N$ be the intersection of $AQ$ and $MT$.
Show that $N$ lies on a line independent of the position of $P$ on $\Gamma_2$.
1995 Tournament Of Towns, (450) 6
Can it happen that $6$ parallelepipeds, no two of which have common points, are placed in space so that there is a point outside of them from which no vertex of a parallelepiped is visible? (The parallelepipeds are not transparent.)
(V Proizvolov)
2019 India IMO Training Camp, P2
Determine all positive integers $m$ satisfying the condition that there exists a unique positive integer $n$ such that there exists a rectangle which can be decomposed into $n$ congruent squares and can also be decomposed into $m+n$ congruent squares.
2010 Slovenia National Olympiad, 3
Find all functions $f: [0, +\infty) \to [0, +\infty)$ satisfying the equation
\[(y+1)f(x+y) = f\left(xf(y)\right)\]
For all non-negative real numbers $x$ and $y.$
2012 Princeton University Math Competition, A4 / B7
Let f be a polynomial of degree $3$ with integer coefficients such that $f(0) = 3$ and $f(1) = 11$.
If f has exactly $2$ integer roots, how many such polynomials $f$ exist?
2020 Harvest Math Invitational Team Round Problems, HMI Team #9
9. A sequence of nonzero complex numbers $a_1, a_2, \dots, a_{2020}$ satisfies $a_3=a_2^2+2a_1a_2$ and
$$\frac{a_{n+2}}{a_{n+1}}-\frac{a_{n+1}}{a_{n}}=a_n+a_{n+1},$$
for all $2018\ge n\ge 2$. Given $a_2-a_{2020}=2025$, how many integers $0\le a_1\le 2020$ are there, such that $a_1+a_2+\cdots+a_{2019}$ is a real number?
[i]Proposed by winnertakeover[/i]
2018 ASDAN Math Tournament, 8
Let $f(n)$ be the integer closest to $\sqrt{n}$. Compute the largest $N$ less than or equal to $2018$ such that $\sum_{i=1}^N\frac{1}{f(i)}$ is integral.
2011 Purple Comet Problems, 11
Six distinct positive integers are randomly chosen between $1$ and $2011;$ inclusive. The probability that some pair of the six chosen integers has a difference that is a multiple of $5 $ is $n$ percent. Find $n.$
2023 Indonesia Regional, 2
Let $K$ be a positive integer such that there exist a triple of positive integers $(x,y,z)$ such that
\[x^3+Ky , y^3 + Kz, \text{and } z^3 + Kx\]
are all perfect cubes.
(a) Prove that $K \ne 2$ and $K \ne 4$
(b) Find the minimum value of $K$ that satisfies.
[i]Proposed by Muhammad Afifurrahman[/i]
2002 Iran Team Selection Test, 4
$O$ is a point in triangle $ABC$. We draw perpendicular from $O$ to $BC,AC,AB$ which intersect $BC,AC,AB$ at $A_{1},B_{1},C_{1}$. Prove that $O$ is circumcenter of triangle $ABC$ iff perimeter of $ABC$ is not less than perimeter of triangles $AB_{1}C_{1},BC_{1}A_{1},CB_{1}A_{1}$.
1991 IMTS, 4
Let $\triangle ABC$ be an arbitary triangle, and construct $P,Q,R$ so that each of the angles marked is $30^\circ$. Prove that $\triangle PQR$ is an equilateral triangle.
[asy]
size(200);
defaultpen(linewidth(0.7)+fontsize(10));
pair ext30(pair pt1, pair pt2) {
pair r1 = pt1+rotate(-30)*(pt2-pt1), r2 = pt2+rotate(30)*(pt1-pt2);
draw(anglemark(r1,pt1,pt2,25)); draw(anglemark(pt1,pt2,r2,25));
return intersectionpoints(pt1--r1, pt2--r2)[0];
}
pair A = (0,0), B=(10,0), C=(3,7), P=ext30(B,C), Q=ext30(C,A), R=ext30(A,B);
draw(A--B--C--A--R--B--P--C--Q--A); draw(P--Q--R--cycle, linetype("8 8"));
label("$A$", A, SW); label("$B$", B, SE); label("$C$", C, N); label("$P$", P, NE); label("$Q$", Q, NW); label("$R$", R, S);[/asy]
2019 SAFEST Olympiad, 5
There are $25$ IMO participants attending a party. Every two of them speak to each other in some language, and they use only one language even if they both know some other language as well. Among every three participants there is a person who uses the same language to speak to the other two (in that group of three). Prove that there is an IMO participant who speaks the same language to at least $10$ other participants
2014 IMO Shortlist, G5
Convex quadrilateral $ABCD$ has $\angle ABC = \angle CDA = 90^{\circ}$. Point $H$ is the foot of the perpendicular from $A$ to $BD$. Points $S$ and $T$ lie on sides $AB$ and $AD$, respectively, such that $H$ lies inside triangle $SCT$ and \[
\angle CHS - \angle CSB = 90^{\circ}, \quad \angle THC - \angle DTC = 90^{\circ}. \] Prove that line $BD$ is tangent to the circumcircle of triangle $TSH$.
2011 JHMT, 6
Let $\vartriangle ABC$ be equilateral. Two points $D$ and $E$ are on side $BC$ (with order $B, D, E, C$), and satisfy $\angle DAE = 30^o$ . If $BD = 2$ and $CE = 3$, what is $BC$?
[img]https://cdn.artofproblemsolving.com/attachments/c/8/27b756f84e086fe31b5ea695f51fb6c78b63d0.png[/img]
MBMT Team Rounds, 2020.36
$ABCD$ is a rectangle $\overline{AB} = 5\sqrt{3}$, $\overline{AD} = 30$. Extend $\overline{BC}$ past $C$ and construct point $P$ on this extension such that $\angle APD = 60^{\circ}$. Point $H$ is on $\overline{AP}$ such that $\overline{DH} \perp \overline{AP}$. Find the length of $\overline{DH}$.
[i]Proposed by Kevin Wu[/i]
2020 Latvia TST, 1.5
Given a $6\times 6$ square consisting of unit squares, denote its rows and columns from $1$ to $6$. Figure [i]p-horse[/i] can move from square $(x; y)$ to $(x’; y’)$ if and only if both $x + x’$ and $y + y’$ are primes. At the start the [i]p-horse[/i] is located in one of the unit squares.
$a)$ Can the [i]p-horse[/i] visit every unit square exactly once?
$b$) Can the [i]p-horse[/i] visit every unit square exactly once and with the last move return to the initial starting position?
1999 ITAMO, 2
An integer is [i]balance[/i] if the number of digit in its decimal representation is equal to the number of its distinct prime factors (For example, 15 is [i]balanced[/i], but not 49).
Prove that there are [b]finite[/b] [i]balanced[/i] number.
2006 National Olympiad First Round, 29
Let $I$ be the center of incircle of $\triangle ABC$, and $J$ be the center of excircle tangent to $[BC]$. If $m(\widehat B) = 45^\circ$, $m(\widehat A) = 120^\circ$, and $|IJ|=\sqrt 3$, then what is $|BC|$?
$
\textbf{(A)}\ \frac 32
\qquad\textbf{(B)}\ \frac {\sqrt 3}2
\qquad\textbf{(C)}\ \frac 34
\qquad\textbf{(D)}\ \frac {\sqrt 6}2
\qquad\textbf{(E)}\ \sqrt3 - 1
$
2021 China Team Selection Test, 3
Given positive integer $n$. Prove that for any integers $a_1,a_2,\cdots,a_n,$ at least $\lceil \tfrac{n(n-6)}{19} \rceil$ numbers from the set $\{ 1,2, \cdots, \tfrac{n(n-1)}{2} \}$ cannot be represented as $a_i-a_j (1 \le i, j \le n)$.