Found problems: 259
1983 Canada National Olympiad, 3
The area of a triangle is determined by the lengths of its sides. Is the volume of a tetrahedron determined by the areas of its faces?
1992 IMO Longlists, 4
Let $p, q$, and $r$ be the angles of a triangle, and let $a = \sin2p, b = \sin2q$, and $c = \sin2r$. If $s = \frac{(a + b + c)}2$, show that
\[s(s - a)(s - b)(s -c) \geq 0.\]
When does equality hold?
2002 AMC 10, 13
The sides of a triangle have lengths of $ 15$, $ 20$, and $ 25$. Find the length of the shortest altitude.
$ \text{(A)}\ 6 \qquad
\text{(B)}\ 12 \qquad
\text{(C)}\ 12.5 \qquad
\text{(D)}\ 13 \qquad
\text{(E)}\ 15$
1989 IMO Shortlist, 6
For a triangle $ ABC,$ let $ k$ be its circumcircle with radius $ r.$ The bisectors of the inner angles $ A, B,$ and $ C$ of the triangle intersect respectively the circle $ k$ again at points $ A', B',$ and $ C'.$ Prove the inequality
\[ 16Q^3 \geq 27 r^4 P,\]
where $ Q$ and $ P$ are the areas of the triangles $ A'B'C'$ and $ABC$ respectively.
1999 ITAMO, 1
A rectangular sheet with sides $a$ and $b$ is fold along a diagonal. Compute the area of the overlapping triangle.
2005 USAMTS Problems, 3
Points $A, B,$ and $C$ are on a circle such that $\triangle ABC$ is an acute triangle. $X, Y ,$ and $Z$ are on the circle such that $AX$ is perpendicular to $BC$ at $D$, $BY$ is perpendicular to $AC$ at $E$, and $CZ$ is perpendicular to $AB$ at $F$. Find the value of \[ \frac{AX}{AD}+\frac{BY}{BE}+\frac{CZ}{CF}, \] and prove that this value is the same for all possible $A, B, C$ on the circle such that $\triangle ABC$ is acute.
[asy]
pathpen = linewidth(0.7);
pair B = (0,0), C = (10,0), A = (2.5,8); path cir = circumcircle(A,B,C);
pair D = foot(A,B,C), E = foot(B,A,C), F = foot(C,A,B), X = IP(D--2*D-A,cir), Y = IP(E--2*E-B,cir), Z = IP(F--2*F-C,cir); D(MP("A",A,N)--MP("B",B,SW)--MP("C",C,SE)--cycle); D(cir); D(A--MP("X",X)); D(B--MP("Y",Y,NE)); D(C--MP("Z",Z,NW)); D(rightanglemark(B,F,C,12)); D(rightanglemark(A,D,B,12)); D(rightanglemark(B,E,C,12));[/asy]
May Olympiad L1 - geometry, 1998.4
$ABCD$ is a square of center $O$. On the sides $DC$ and $AD$ the equilateral triangles DAF and DCE have been constructed. Decide if the area of the $EDF$ triangle is greater, less or equal to the area of the $DOC$ triangle.
[img]https://4.bp.blogspot.com/-o0lhdRfRxl0/XNYtJgpJMmI/AAAAAAAAKKg/lmj7KofAJosBZBJcLNH0JKjW3o17CEMkACK4BGAYYCw/s1600/may4_2.gif[/img]
2011 AIME Problems, 8
In triangle $ABC$, $BC = 23$, $CA = 27$, and $AB = 30$. Points $V$ and $W$ are on $\overline{AC}$ with $V$ on $\overline{AW}$, points $X$ and $Y$ are on $\overline{BC}$ with $X$ on $\overline{CY}$, and points $Z$ and $U$ are on $\overline{AB}$ with $Z$ on $\overline{BU}$. In addition, the points are positioned so that $\overline{UV} \parallel \overline{BC}$, $\overline{WX} \parallel \overline{AB}$, and $\overline{YZ} \parallel \overline{CA}$. Right angle folds are then made along $\overline{UV}$, $\overline{WX}$, and $\overline{YZ}$. The resulting figure is placed on a level floor to make a table with triangular legs. Let $h$ be the maximum possible height of a table constructed from triangle $ABC$ whose top is parallel to the floor. Then $h$ can be written in the form $\tfrac{k \sqrt{m}}{n}$, where $k$ and $n$ are relatively prime positive integers and $m$ is a positive integer that is not divisible by the square of any prime. Find $k + m + n$.
[asy]
unitsize(1 cm);
pair translate;
pair[] A, B, C, U, V, W, X, Y, Z;
A[0] = (1.5,2.8);
B[0] = (3.2,0);
C[0] = (0,0);
U[0] = (0.69*A[0] + 0.31*B[0]);
V[0] = (0.69*A[0] + 0.31*C[0]);
W[0] = (0.69*C[0] + 0.31*A[0]);
X[0] = (0.69*C[0] + 0.31*B[0]);
Y[0] = (0.69*B[0] + 0.31*C[0]);
Z[0] = (0.69*B[0] + 0.31*A[0]);
translate = (7,0);
A[1] = (1.3,1.1) + translate;
B[1] = (2.4,-0.7) + translate;
C[1] = (0.6,-0.7) + translate;
U[1] = U[0] + translate;
V[1] = V[0] + translate;
W[1] = W[0] + translate;
X[1] = X[0] + translate;
Y[1] = Y[0] + translate;
Z[1] = Z[0] + translate;
draw (A[0]--B[0]--C[0]--cycle);
draw (U[0]--V[0],dashed);
draw (W[0]--X[0],dashed);
draw (Y[0]--Z[0],dashed);
draw (U[1]--V[1]--W[1]--X[1]--Y[1]--Z[1]--cycle);
draw (U[1]--A[1]--V[1],dashed);
draw (W[1]--C[1]--X[1]);
draw (Y[1]--B[1]--Z[1]);
dot("$A$",A[0],N);
dot("$B$",B[0],SE);
dot("$C$",C[0],SW);
dot("$U$",U[0],NE);
dot("$V$",V[0],NW);
dot("$W$",W[0],NW);
dot("$X$",X[0],S);
dot("$Y$",Y[0],S);
dot("$Z$",Z[0],NE);
dot(A[1]);
dot(B[1]);
dot(C[1]);
dot("$U$",U[1],NE);
dot("$V$",V[1],NW);
dot("$W$",W[1],NW);
dot("$X$",X[1],dir(-70));
dot("$Y$",Y[1],dir(250));
dot("$Z$",Z[1],NE);
[/asy]
1988 IMO Longlists, 84
A point $ M$ is chosen on the side $ AC$ of the triangle $ ABC$ in such a way that the radii of the circles inscribed in the triangles $ ABM$ and $ BMC$ are equal. Prove that
\[ BM^{2} \equal{} X \cot \left( \frac {B}{2}\right)
\]
where X is the area of triangle $ ABC.$
2016 IFYM, Sozopol, 4
Circle $k$ passes through $A$ and intersects the sides of $\Delta ABC$ in $P,Q$, and $L$. Prove that:
$\frac{S_{PQL}}{S_{ABC}}\leq \frac{1}{4} (\frac{PL}{AQ})^2$.
1959 AMC 12/AHSME, 43
The sides of a triangle are $25,39,$ and $40$. The diameter of the circumscribed circle is:
$ \textbf{(A)}\ \frac{133}{3}\qquad\textbf{(B)}\ \frac{125}{3}\qquad\textbf{(C)}\ 42\qquad\textbf{(D)}\ 41\qquad\textbf{(E)}\ 40 $
2006 Junior Tuymaada Olympiad, 3
Given a convex $ n $-gon ($ n \geq 5 $). Prove that the number of triangles of area $1$ with vertices at the vertices of the $ n $-gon does not exceed $ \frac{1}{3} n (2n-5) $.
1993 Chile National Olympiad, 6
Let $ ABCD $ be a rectangle of area $ S $, and $ P $ be a point inside it. We denote by $ a, b, c, d $ the distances from $ P $ to the vertices $ A, B, C, D $ respectively. Prove that $ a ^ 2 + b ^ 2 + c ^ 2 + d ^ 2\ge 2S $. When there is equality?
1968 AMC 12/AHSME, 12
A circle passes through the vertices of a triangle with side-lengths of $7\tfrac{1}{2},10,12\tfrac{1}{2}$. The radius of the circle is:
$\textbf{(A)}\ \dfrac{15}{4} \qquad
\textbf{(B)}\ 5 \qquad
\textbf{(C)}\ \dfrac{25}{4} \qquad
\textbf{(D)}\ \dfrac{35}{4} \qquad
\textbf{(E)}\ \dfrac{15\sqrt2}{2} $
1969 Canada National Olympiad, 4
Let $ABC$ be an equilateral triangle, and $P$ be an arbitrary point within the triangle. Perpendiculars $PD,PE,PF$ are drawn to the three sides of the triangle. Show that, no matter where $P$ is chosen, \[ \frac{PD+PE+PF}{AB+BC+CA}=\frac{1}{2\sqrt{3}}. \]
2014 Harvard-MIT Mathematics Tournament, 6
In quadrilateral $ABCD$, we have $AB = 5$, $BC = 6$, $CD = 5$, $DA = 4$, and $\angle ABC = 90^\circ$. Let $AC$ and $BD$ meet at $E$. Compute $\dfrac{BE}{ED}$.
Estonia Open Senior - geometry, 1999.2.3
Two right triangles are given, of which the incircle of the first triangle is the circumcircle of the second triangle. Let the areas of the triangles be $S$ and $S'$ respectively. Prove that $\frac{S}{S'} \ge 3 +2\sqrt2$
2007 ITest, 37
Rob is helping to build the set for a school play. For one scene, he needs to build a multi-colored tetrahedron out of cloth and bamboo. He begins by fitting three lengths of bamboo together, such that they meet at the same point, and each pair of bamboo rods meet at a right angle. Three more lengths of bamboo are then cut to connect the other ends of the first three rods. Rob then cuts out four triangular pieces of fabric: a blue piece, a red piece, a green piece, and a yellow piece. These triangular pieces of fabric just fill in the triangular spaces between the bamboo, making up the four faces of the tetrahedron. The areas in square feet of the red, yellow, and green pieces are $60$, $20$, and $15$ respectively. If the blue piece is the largest of the four sides, find the number of square feet in its area.
2020 Princeton University Math Competition, 7
Let $X, Y$ , and $Z$ be concentric circles with radii $1$, $13$, and $22$, respectively. Draw points $A, B$, and $C$ on $X$, $Y$ , and $Z$, respectively, such that the area of triangle $ABC$ is as large as possible. If the area of the triangle is $\Delta$, find $\Delta^2$.
2010 Abels Math Contest (Norwegian MO) Final, 1b
The edges of the square in the figure have length $1$.
Find the area of the marked region in terms of $a$, where $0 \le a \le 1$.
[img]https://cdn.artofproblemsolving.com/attachments/2/2/f2b6ca973f66c50e39124913b3acb56feff8bb.png[/img]
2011 AMC 12/AHSME, 17
Circles with radii $1, 2$, and $3$ are mutually externally tangent. What is the area of the triangle determined by the points of tangency?
$ \textbf{(A)}\ \frac{3}{5} \qquad
\textbf{(B)}\ \frac{4}{5} \qquad
\textbf{(C)}\ 1 \qquad
\textbf{(D)}\ \frac{6}{5} \qquad
\textbf{(E)}\ \frac{4}{3}
$
2013 Bulgaria National Olympiad, 5
Consider acute $\triangle ABC$ with altitudes $AA_1, BB_1$ and $CC_1$ ($A_1 \in BC,B_1 \in AC,C_1 \in AB$). A point $C' $ on the extension of $B_1A_1$ beyond $A_1$ is such that $A_1C' = B_1C_1$. Analogously, a point $B'$ on the extension of A$_1C_1$ beyond $C_1$ is such that $C_1B' = A_1B_1$ and a point $A' $ on the extension of $C_1B_1$ beyond $B_1$ is such that $B_1A' = C_1A_1$. Denote by $A'', B'', C''$ the symmetric points of $A' , B' , C'$ with respect to $BC, CA$ and $AB$ respectively. Prove that if $R, R'$ and R'' are circumradiii of $\triangle ABC, \triangle A'B'C'$ and $\triangle A''B''C''$, then $R, R'$ and $R'' $ are sidelengths of a triangle with area equals one half of the area of $\triangle ABC$.
2018 JBMO Shortlist, G5
Given a rectangle $ABCD$ such that $AB = b > 2a = BC$, let $E$ be the midpoint of $AD$. On a line parallel to $AB$ through point $E$, a point $G$ is chosen such that the area of $GCE$ is
$$(GCE)= \frac12 \left(\frac{a^3}{b}+ab\right)$$
Point $H$ is the foot of the perpendicular from $E$ to $GD$ and a point $I$ is taken on the diagonal $AC$ such that the triangles $ACE$ and $AEI$ are similar. The lines $BH$ and $IE$ intersect at $K$ and the lines $CA$ and $EH$ intersect at $J$. Prove that $KJ \perp AB$.
2000 AMC 12/AHSME, 19
In triangle $ ABC$, $ AB \equal{} 13$, $ BC \equal{} 14$, and $ AC \equal{} 15$. Let $ D$ denote the midpoint of $ \overline{BC}$ and let $ E$ denote the intersection of $ \overline{BC}$ with the bisector of angle $ BAC$. Which of the following is closest to the area of the triangle $ ADE$?
$ \textbf{(A)}\ 2 \qquad \textbf{(B)}\ 2.5 \qquad \textbf{(C)}\ 3 \qquad \textbf{(D)}\ 3.5 \qquad \textbf{(E)}\ 4$
2005 AIME Problems, 15
Triangle $ABC$ has $BC=20$. The incircle of the triangle evenly trisects the median $AD$. If the area of the triangle is $m \sqrt{n}$ where $m$ and $n$ are integers and $n$ is not divisible by the square of a prime, find $m+n$.