Found problems: 3349
1990 IMO Shortlist, 12
Let $ ABC$ be a triangle, and let the angle bisectors of its angles $ CAB$ and $ ABC$ meet the sides $ BC$ and $ CA$ at the points $ D$ and $ F$, respectively. The lines $ AD$ and $ BF$ meet the line through the point $ C$ parallel to $ AB$ at the points $ E$ and $ G$ respectively, and we have $ FG \equal{} DE$. Prove that $ CA \equal{} CB$.
[i]Original formulation:[/i]
Let $ ABC$ be a triangle and $ L$ the line through $ C$ parallel to the side $ AB.$ Let the internal bisector of the angle at $ A$ meet the side $ BC$ at $ D$ and the line $ L$ at $ E$ and let the internal bisector of the angle at $ B$ meet the side $ AC$ at $ F$ and the line $ L$ at $ G.$ If $ GF \equal{} DE,$ prove that $ AC \equal{} BC.$
2007 Today's Calculation Of Integral, 208
Find the values of real numbers $a,\ b$ for which the function $f(x)=a|\cos x|+b|\sin x|$ has local minimum at $x=-\frac{\pi}{3}$ and satisfies $\int_{-\frac{\pi}{2}}^{\frac{\pi}{2}}\{f(x)\}^{2}dx=2$.
2012 Today's Calculation Of Integral, 811
Let $a$ be real number. Evaluate $\int_a^{a+\pi} |x|\cos x\ dx.$
2004 Romania National Olympiad, 3
Let $H$ be the orthocenter of the acute triangle $ABC$. Let $BB'$ and $CC'$ be altitudes of the triangle ($B^{\prime} \in AC$, $C^{\prime} \in AB$). A variable line $\ell$ passing through $H$ intersects the segments $[BC']$ and $[CB']$ in $M$ and $N$. The perpendicular lines of $\ell$ from $M$ and $N$ intersect $BB'$ and $CC'$ in $P$ and $Q$. Determine the locus of the midpoint of the segment $[ PQ]$.
[i]Gheorghe Szolosy[/i]
2001 Croatia National Olympiad, Problem 2
In a triangle $ABC$ with $AC\ne BC$, $M$ is the midpoint of $AB$ and $\angle A=\alpha$, $\angle B=\beta$, $\angle ACM=\varphi$ and $\angle BSM=\Psi$. Prove that
$$\frac{\sin\alpha\sin\beta}{\sin(\alpha-\beta)}=\frac{\sin\varphi\sin\Psi}{\sin(\varphi-\Psi)}.$$
1967 IMO Shortlist, 3
Find all $x$ for which, for all $n,$ \[\sum^n_{k=1} \sin {k x} \leq \frac{\sqrt{3}}{2}.\]
2002 AMC 12/AHSME, 22
Triangle $ ABC$ is a right triangle with $ \angle ACB$ as its right angle, $ m\angle ABC \equal{} 60^\circ$, and $ AB \equal{} 10$. Let $ P$ be randomly chosen inside $ \triangle ABC$, and extend $ \overline{BP}$ to meet $ \overline{AC}$ at $ D$. What is the probability that $ BD > 5\sqrt2$?
[asy]import math;
unitsize(4mm);
defaultpen(fontsize(8pt)+linewidth(0.7));
dotfactor=4;
pair A=(10,0);
pair C=(0,0);
pair B=(0,10.0/sqrt(3));
pair P=(2,2);
pair D=extension(A,C,B,P);
draw(A--C--B--cycle);
draw(B--D);
dot(P);
label("A",A,S);
label("D",D,S);
label("C",C,S);
label("P",P,NE);
label("B",B,N);[/asy]
$ \textbf{(A)}\ \frac {2 \minus{} \sqrt2}{2} \qquad \textbf{(B)}\ \frac {1}{3} \qquad \textbf{(C)}\ \frac {3 \minus{} \sqrt3}{3} \qquad \textbf{(D)}\ \frac {1}{2} \qquad \textbf{(E)}\ \frac {5 \minus{} \sqrt5}{5}$
2010 Today's Calculation Of Integral, 598
For a constant $a$, denote $C(a)$ the part $x\geq 1$ of the curve $y=\sqrt{x^2-1}+\frac{a}{x}$.
(1) Find the maximum value $a_0$ of $a$ such that $C(a)$ is contained to lower part of $y=x$, or $y<x$.
(2) For $0<\theta <\frac{\pi}{2}$, find the volume $V(\theta)$ of the solid $V$ obtained by revoloving the figure bounded by $C(a_0)$ and three lines $y=x,\ x=1,\ x=\frac{1}{\cos \theta}$ about the $x$-axis.
(3) Find $\lim_{\theta \rightarrow \frac{\pi}{2}-0} V(\theta)$.
1992 Tokyo University entrance exam/Science, 2nd exam
2005 India IMO Training Camp, 3
For real numbers $a,b,c,d$ not all equal to $0$ , define a real function $f(x) = a +b\cos{2x} + c\sin{5x} +d \cos{8x}$. Suppose $f(t) = 4a$ for some real $t$. prove that there exist a real number $s$ s.t. $f(s)<0$
2001 Romania National Olympiad, 3
Let $f:[-1,1]\rightarrow\mathbb{R}$ be a continuous function. Show that:
a) if $\int_0^1 f(\sin (x+\alpha ))\, dx=0$, for every $\alpha\in\mathbb{R}$, then $f(x)=0,\ \forall x\in [-1,1]$.
b) if $\int_0^1 f(\sin (nx))\, dx=0$, for every $n\in\mathbb{Z}$, then $f(x)=0,\ \forall x\in [-1,1]$.
2014 Purple Comet Problems, 25
The diagram below shows equilateral $\triangle ABC$ with side length $2$. Point $D$ lies on ray $\overrightarrow{BC}$ so that $CD = 4$. Points $E$ and $F$ lie on $\overline{AB}$ and $\overline{AC}$, respectively, so that $E$, $F$, and $D$ are collinear, and the area of $\triangle AEF$ is half of the area of $\triangle ABC$. Then $\tfrac{AE}{AF}=\tfrac m n$, where $m$ and $n$ are relatively prime positive integers. Find $m + 2n$.
[asy]
import math;
size(7cm);
pen dps = fontsize(10);
defaultpen(dps);
dotfactor=4;
pair A,B,C,D,E,F;
B=origin;
C=(2,0);
D=(6,0);
A=(1,sqrt(3));
E=(1/3,sqrt(3)/3);
F=extension(A,C,E,D);
draw(C--A--B--D,linewidth(1.1));
draw(E--D,linewidth(.7));
dot(A);
dot(B);
dot(C);
dot(D);
dot(E);
dot(F);
label("$A$",A,N);
label("$B$",B,S);
label("$C$",C,S);
label("$D$",D,S);
label("$E$",E,NW);
label("$F$",F,NE);
[/asy]
2011 Korea - Final Round, 2
$ABC$ is a triangle such that $AC<AB<BC$ and $D$ is a point on side $AB$ satisfying $AC=AD$.
The circumcircle of $ABC$ meets with the bisector of angle $A$ again at $E$ and meets with $CD$ again at $F$.
$K$ is an intersection point of $BC$ and $DE$. Prove that $CK=AC$ is a necessary and sufficient condition for $DK \cdot EF = AC \cdot DF$.
2006 Kyiv Mathematical Festival, 3
See all the problems from 5-th Kyiv math festival
[url=http://www.mathlinks.ro/Forum/viewtopic.php?p=506789#p506789]here[/url]
Let $O$ be the circumcenter and $H$ be the intersection point of the altitudes of acute triangle $ABC.$ The straight lines $BH$ and $CH$ intersect the segments $CO$ and $BO$ at points $D$ and $E$ respectively. Prove that if triangles $ODH$ and $OEH$ are isosceles then triangle $ABC$ is isosceles too.
1967 IMO Longlists, 3
Prove the trigonometric inequality $\cos x < 1 - \frac{x^2}{2} + \frac{x^4}{16},$ when $x \in \left(0, \frac{\pi}{2} \right).$
2004 AMC 12/AHSME, 24
In $ \triangle ABC$, $ AB \equal{} BC$, and $ BD$ is an altitude. Point $ E$ is on the extension of $ \overline{AC}$ such that $ BE \equal{} 10$. The values of $ \tan CBE$, $ \tan DBE$, and $ \tan ABE$ form a geometric progression, and the values of $ \cot DBE$, $ \cot CBE$, $ \cot DBC$ form an arithmetic progression. What is the area of $ \triangle ABC$?
[asy]unitsize(3mm);
defaultpen(linewidth(.8pt)+fontsize(10pt));
pair D=(0,0), C=(3,0), A=(-3,0), B=(0, 8), Ep=(6,0);
draw(A--B--Ep--cycle);
draw(D--B--C);
label("$A$",A,S);
label("$D$",D,S);
label("$C$",C,S);
label("$E$",Ep,S);
label("$B$",B,N);[/asy]$ \textbf{(A)}\ 16 \qquad \textbf{(B)}\ \frac {50}{3} \qquad \textbf{(C)}\ 10\sqrt3 \qquad \textbf{(D)}\ 8\sqrt5 \qquad \textbf{(E)}\ 18$
2010 Today's Calculation Of Integral, 627
Evaluate $\int_{\frac{\pi}{4}}^{\frac{\pi}{3}} \frac{(2\sin \theta +1)\cos ^ 3 \theta}{(\sin ^ 2 \theta +1)^2}d\theta .$
[i]Proposed by kunny[/i]
1980 IMO, 14
Let $A$ be a fixed point in the interior of a circle $\omega$ with center $O$ and radius $r$, where $0<OA<r$. Draw two perpendicular chords $BC,DE$ such that they pass through $A$. For which position of these cords does $BC+DE$ maximize?
2006 Taiwan TST Round 1, 2
Let $P$ be a point on the plane. Three nonoverlapping equilateral triangles $PA_1A_2$, $PA_3A_4$, $PA_5A_6$ are constructed in a clockwise manner. The midpoints of $A_2A_3$, $A_4A_5$, $A_6A_1$ are $L$, $M$, $N$, respectively. Prove that triangle $LMN$ is equilateral.
2013 Stanford Mathematics Tournament, 9
Evaluate $\int_{0}^{\pi/2}\frac{dx}{\left(\sqrt{\sin x}+\sqrt{\cos x}\right)^4}$.
1994 Canada National Olympiad, 5
Let $ABC$ be an acute triangle. Let $AD$ be the altitude on $BC$, and let $H$ be any interior point on $AD$. Lines $BH,CH$, when extended, intersect $AC,AB$ at $E,F$ respectively. Prove that $\angle EDH=\angle FDH$.
2005 AIME Problems, 10
Given that $O$ is a regular octahedron, that $C$ is the cube whose vertices are the centers of the faces of $O$, and that the ratio of the volume of $O$ to that of $C$ is $\frac{m}{n}$, where $m$ and $n$ are relatively prime integers, find $m+n$.
2012 Iran Team Selection Test, 3
Suppose $ABCD$ is a parallelogram. Consider circles $w_1$ and $w_2$ such that $w_1$ is tangent to segments $AB$ and $AD$ and $w_2$ is tangent to segments $BC$ and $CD$. Suppose that there exists a circle which is tangent to lines $AD$ and $DC$ and externally tangent to $w_1$ and $w_2$. Prove that there exists a circle which is tangent to lines $AB$ and $BC$ and also externally tangent to circles $w_1$ and $w_2$.
[i]Proposed by Ali Khezeli[/i]
2011 Today's Calculation Of Integral, 735
Evaluate the following definite integrals:
(a) $\int_0^{\frac{\sqrt{\pi}}{2}} x\tan (x^2)\ dx$
(b) $\int_0^{\frac 13} xe^{3x}\ dx$
(c) $\int_e^{e^e} \frac{1}{x\ln x}\ dx$
(d) $\int_2^3 \frac{x^2+1}{x(x+1)}\ dx$
2011 Morocco National Olympiad, 1
Let $x$, $y$, and $z$ be three real positive numbers such that $x^{2}+y^{2}+z^{2}+2xyz=1$.
Prove that $2(x+y+z)\leq 3$.
2014 China Team Selection Test, 1
Let the circumcenter of triangle $ABC$ be $O$. $H_A$ is the projection of $A$ onto $BC$. The extension of $AO$ intersects the circumcircle of $BOC$ at $A'$. The projections of $A'$ onto $AB, AC$ are $D,E$, and $O_A$ is the circumcentre of triangle $DH_AE$. Define $H_B, O_B, H_C, O_C$ similarly.
Prove: $H_AO_A, H_BO_B, H_CO_C$ are concurrent