Found problems: 1679
Let $ABC$ be a triangle with area $1$ and $P$ the middle of the side $[BC]$. $M$ and $N$ are two points of $[AB]-\left \{ A,B \right \} $ and $[AC]-\left \{ A,C \right \}$ respectively such that $AM=2MB$ and$CN=2AN$. The two lines $(AP)$ and $(MN)$ intersect in a point $D$. Find the area of the triangle $ADN$.
A circle is inscribed in an equilateral triangle. Three nested sequences of circles are then constructed as follows: each circle touches the previous circle and has two edges of the triangle as tangents. This is represented by the figure below.
[asy]
import olympiad;
pair A, B, C;
A = dir(90);
B = dir(210);
C = dir(330);
draw(A--B--C--cycle);
draw(incircle(A,B,C));
draw(incircle(A,2/3*A+1/3*B,2/3*A+1/3*C));
draw(incircle(A,8/9*A+1/9*B,8/9*A+1/9*C));
draw(incircle(A,26/27*A+1/27*B,26/27*A+1/27*C));
draw(incircle(A,80/81*A+1/81*B,80/81*A+1/81*C));
draw(incircle(A,242/243*A+1/243*B,242/243*A+1/243*C));
draw(incircle(B,2/3*B+1/3*A,2/3*B+1/3*C));
draw(incircle(B,8/9*B+1/9*A,8/9*B+1/9*C));
draw(incircle(B,26/27*B+1/27*A,26/27*B+1/27*C));
draw(incircle(B,80/81*B+1/81*A,80/81*B+1/81*C));
draw(incircle(B,242/243*B+1/243*A,242/243*B+1/243*C));
draw(incircle(C,2/3*C+1/3*B,2/3*C+1/3*A));
draw(incircle(C,8/9*C+1/9*B,8/9*C+1/9*A));
draw(incircle(C,26/27*C+1/27*B,26/27*C+1/27*A));
draw(incircle(C,80/81*C+1/81*B,80/81*C+1/81*A));
draw(incircle(C,242/243*C+1/243*B,242/243*C+1/243*A));
[/asy]
What is the ratio of the area of the largest circle to the combined area of all the other circles?
$\text{(A) }\frac{8}{1}\qquad\text{(B) }\frac{8}{3}\qquad\text{(C) }\frac{9}{1}\qquad\text{(D) }\frac{9}{3}\qquad\text{(E) }\frac{10}{3}$
Prove that in all triangles $\vartriangle ABC$ with $\angle A = 2 \angle B$ it holds that, if $D$ is the foot of the perpendicular from $C$ to the perpendicular bisector of $AB$, $\frac{AC}{DC}$ is constant for any value of $\angle B$.
The triangle $ ABC$ with the circumcircle $ k(U,r)$ is given. On the extension of the radii $ UA$ a point $ P$ is chosen. The reflection of the line $ PB$ on the line $ BA$ is called $ g$. Likewise the reflection of the line $ PC$ on the line $ CA$ is called $ h$. The intersection of $ g$ and $ h$ is called $ Q$.
Find the geometric location of all possible intersections $ Q$, while $ P$ passes through the extension of the radii $ UA$.
Let $ABC$ be an equilateral triangle whose angle bisectors of $B$ and $C$ intersect at $D$. Perpendicular bisectors of $BD$ and $CD$ intersect $BC$ at points $E$ and $Z$ respectively.
a) Prove that $BE=EZ=ZC$.
b) Find the ratio of the areas of the triangles $BDE$ to $ABC$
On circle $ O$, points $ C$ and $ D$ are on the same side of diameter $ \overline{AB}$, $ \angle AOC \equal{} 30^\circ$, and $ \angle DOB \equal{} 45^\circ$. What is the ratio of the area of the smaller sector $ COD$ to the area of the circle?
[asy]unitsize(6mm);
defaultpen(linewidth(0.7)+fontsize(8pt));
pair C = 3*dir (30);
pair D = 3*dir (135);
pair A = 3*dir (0);
pair B = 3*dir(180);
pair O = (0,0);
draw (Circle ((0, 0), 3));
label ("$C$", C, NE);
label ("$D$", D, NW);
label ("$B$", B, W);
label ("$A$", A, E);
label ("$O$", O, S);
label ("$45^\circ$", (-0.3,0.1), WNW);
label ("$30^\circ$", (0.5,0.1), ENE);
draw (A--B);
draw (O--D);
draw (O--C);[/asy]$ \textbf{(A)}\ \frac {2}{9} \qquad \textbf{(B)}\ \frac {1}{4} \qquad \textbf{(C)}\ \frac {5}{18} \qquad \textbf{(D)}\ \frac {7}{24} \qquad \textbf{(E)}\ \frac {3}{10}$
The diagram below shows twelve $30-60-90$ triangles placed in a circle so that the hypotenuse of each triangle coincides with the longer leg of the next triangle. The fourth and last triangle in this diagram are shaded. The ratio of the perimeters of these two triangles can be written as $\tfrac{m}{n}$ where $m$ and $n$ are relatively prime positive integers. Find $m + n$.
[asy]
size(200);
defaultpen(linewidth(0.8));
pair point=(-sqrt(3),0);
pair past,unit;
path line;
for(int i=0;i<=12;++i) {
past = point;
line=past--origin;
unit=waypoint(line,1/200);
point=extension(past,rotate(90,past)*unit,origin,dir(180-30*i));
if (i == 4) {
filldraw(origin--past--point--cycle,gray(0.7));
} else if (i==12) {
filldraw(origin--past--point--cycle,gray(0.7));
} else {
draw(origin--past--point);
}
}
draw(origin--point);
[/asy]
Michael walks at the rate of $ 5$ feet per second on a long straight path. Trash pails are located every $ 200$ feet along the path. A garbage truck travels at $ 10$ feet per second in the same direction as Michael and stops for $ 30$ seconds at each pail. As Michael passes a pail, he notices the truck ahead of him just leaving the next pail. How many times will Michael and the truck meet?
$ \textbf{(A)}\ 4\qquad \textbf{(B)}\ 5\qquad \textbf{(C)}\ 6\qquad \textbf{(D)}\ 7\qquad \textbf{(E)}\ 8$
The digits of the three-digit integers $a, b,$ and $c$ are the nine nonzero digits $1,2,3,\cdots 9$ each of them appearing exactly once. Given that the ratio $a:b:c$ is $1:3:5$, determine $a, b,$ and $c$.
In square $ABCE$, $AF=2FE$ and $CD=2DE$. What is the ratio of the area of $\triangle BFD$ to the area of square $ABCE$?
[asy]
size((100));
draw((0,0)--(9,0)--(9,9)--(0,9)--cycle);
draw((3,0)--(9,9)--(0,3)--cycle);
dot((3,0));
dot((0,3));
dot((9,9));
dot((0,0));
dot((9,0));
dot((0,9));
label("$A$", (0,9), NW);
label("$B$", (9,9), NE);
label("$C$", (9,0), SE);
label("$D$", (3,0), S);
label("$E$", (0,0), SW);
label("$F$", (0,3), W);
[/asy]
$ \textbf{(A)}\ \frac{1}{6}\qquad\textbf{(B)}\ \frac{2}{9}\qquad\textbf{(C)}\ \frac{5}{18}\qquad\textbf{(D)}\ \frac{1}{3}\qquad\textbf{(E)}\ \frac{7}{20} $
The angle bisector of $A$ in triangle $ABC$ intersects $BC$ in the point $D$. The point $E$ lies on the side $AC$, and the lines $AD$ and $BE$ intersect in the point $F$. Furthermore, $\frac{|AF|}{|F D|}= 3$ and $\frac{|BF|}{|F E|}=\frac{5}{3}$. Prove that $|AB| = |AC|$.
[img]https://1.bp.blogspot.com/-evofDCeJWPY/XzT9dmxXzVI/AAAAAAAAMVY/ZN87X3Cg8iMiULwvMhgFrXbdd_f1f-JWwCLcBGAsYHQ/s0/2013%2BMohr%2Bp5.png[/img]
In the acute angle triangle $ABC$ the point $O$ is the center of the circumscribed circle and the lines $OA,OB,OC$ intersect sides $BC,CA,AB$ respectively in points $M,N,P$ such that $\angle NMP=90^o$.
[b](a)[/b] Find the ratios $\frac{\angle AMN}{\angle NMC}$,$\frac{\angle AMP}{\angle PMB}$.
[b](b)[/b] If any of the angles of the triangle $ABC$ is $60^o$, find the two other angles.
Four congruent spheres are stacked so that each is tangent to the other three. A larger sphere, $R$, contains the four congruent spheres so that all four are internally tangent to $R$. A smaller sphere, $S$, sits in the space between the four congruent spheres so that all four are externally tangent to $S$. The ratio of the surface area of $R$ to the surface area of $S$ can be written $m+\sqrt{n}$ where $m$ and $n$ are positive integers. Find $m + n$.
We say that a polygon $P$ is inscribed in another polygon $Q$ when all the vertices of $P$ belong to the perimeter of $Q$. We also say in this case that $Q$ is circumscribed to $P$. Given a triangle $T$, let $\ell$ be the largest side of a square inscribed in $T$ and $L$ is the shortest side of a square circumscribed to $T$ . Find the smallest possible value of the ratio $L/\ell$ .
The altitudes $AA_1, BB_1, CC_1$ of an acute triangle $ABC$ concur at $H$. The perpendicular lines from $H$ to $B_1C_1, A_1C_1$ meet rays $CA, CB$ at $P, Q$ respectively. Prove that the line from $C$ perpendicular to $A_1B_1$ passes through the midpoint of $PQ$.
Side $ AC$ of right triangle $ ABC$ is divide into $ 8$ equal parts. Seven line segments parallel to $ BC$ are drawn to $ AB$ from the points of division. If $ BC \equal{} 10$, then the sum of the lengths of the seven line segments:
$ \textbf{(A)}\ \text{cannot be found from the given information} \qquad
\textbf{(B)}\ \text{is }{33}\qquad
\textbf{(C)}\ \text{is }{34}\qquad
\textbf{(D)}\ \text{is }{35}\qquad
\textbf{(E)}\ \text{is }{45}$
Two positive valued sequences $\{ a_{n}\}$ and $\{ b_{n}\}$ satisfy:
(a): $a_{0}=1 \geq a_{1}$, $a_{n}(b_{n+1}+b_{n-1})=a_{n-1}b_{n-1}+a_{n+1}b_{n+1}$, $n \geq 1$.
(b): $\sum_{i=1}^{n}b_{i}\leq n^{\frac{3}{2}}$, $n \geq 1$.
Find the general term of $\{ a_{n}\}$.
Cosider ellipse $\epsilon$ with two foci $A$ and $B$ such that the lengths of it's major axis and minor axis are $2a$ and $2b$ respectively. From a point $T$ outside of the ellipse, we draw two tangent lines $TP$ and $TQ$ to the ellipse $\epsilon$. Prove that
\[\frac{TP}{TQ}\ge \frac{b}{a}.\]
[i]Proposed by Morteza Saghafian[/i]
An airport contains 25 terminals which are two on two connected by tunnels. There is exactly 50 main tunnels which can be traversed in the two directions, the others are with single direction. A group of four terminals is called [i]good[/i] if of each terminal of the four we can arrive to the 3 others by using only the tunnels connecting them. Find the maximum number of good groups.
A circle with center $I$ and radius $r$ is inscribed in a triangle $ABC$ with a right angle at $C$. Rays $AI$ and $CI$ meet the opposite sides at $D$ and $E$ respectively. Prove that $\frac{1}{AE}+\frac{1}{BD}=\frac{1}{r}$
Let $P$ be a convex planar polygon with equal angles. Let $l_1,\cdots, l_n$ be its sides. Show that a necessary and sufficient condition for $P$ to be regular is that the sum of the ratios $\frac{l_i}{l_{i+1}} (i = 1,\cdots, n; l_{n+1}= l_1)$ equals the number of sides.
In a convex pentagon every diagonal is parallel to one side. Show that the ratios between the lengths of diagonals and the sides parallel to them are equal and find their value.
Let $ABC$ be a triangle. Let $M$ and $N$ be the points in which the median and the angle bisector, respectively, at $A$ meet the side $BC$. Let $Q$ and $P$ be the points in which the perpendicular at $N$ to $NA$ meets $MA$ and $BA$, respectively. And $O$ the point in which the perpendicular at $P$ to $BA$ meets $AN$ produced.
Prove that $QO$ is perpendicular to $BC$.
Let $ABC$ be a triangle. Let $K, L$ and $M$ be points on the sides $BC, AC$ and $AB$, respectively, such that $\frac{|AM|}{|MB|}\cdot \frac{|BK|}{|KC|}\cdot \frac{|CL|}{|LA|} = 1$. Prove that it is possible to choose two triangles out of $ALM, BMK, CKL$ whose inradii sum up to at least the inradius of triangle $ABC$.
Circles $ w_{1}$ and $ w_{2}$ with centres $ O_{1}$ and $ O_{2}$ are externally tangent at point $ D$ and internally tangent to a circle $ w$ at points $ E$ and $ F$ respectively. Line $ t$ is the common tangent of $ w_{1}$ and $ w_{2}$ at $ D$. Let $ AB$ be the diameter of $ w$ perpendicular to $ t$, so that $ A, E, O_{1}$ are on the same side of $ t$. Prove that lines $ AO_{1}$, $ BO_{2}$, $ EF$ and $ t$ are concurrent.