This website contains problems from math contests. Problems and corresponding tags were obtained from the Art of Problem Solving website.

Tags were heavily modified to better represent problems.

AND:
OR:
NO:

Found problems: 127

2013 Sharygin Geometry Olympiad, 18

Let $AD$ be a bisector of triangle $ABC$. Points $M$ and $N$ are projections of $B$ and $C$ respectively to $AD$. The circle with diameter $MN$ intersects $BC$ at points $X$ and $Y$. Prove that $\angle BAX = \angle CAY$.

2014 AMC 8, 11

Jack wants to bike from his house to Jill's house, which is located three blocks east and two blocks north of Jack's house. After biking each block, Jack can continue either east or north, but he needs to avoid a dangerous intersection one block east and one block north of his house. In how many ways can he reach Jill's house by biking a total of five blocks? $\textbf{(A) }4\qquad\textbf{(B) }5\qquad\textbf{(C) }6\qquad\textbf{(D) }8\qquad \textbf{(E) }10$

1997 Putnam, 6

Tags: asymptote
The dissection of the $3-4-5$ triangle shown below has diameter $5/2$. [asy] /* Geogebra to Asymptote conversion, documentation at artofproblemsolving.com/Wiki, go to User:Azjps/geogebra */ import graph; size(23cm); real labelscalefactor = 0.5; /* changes label-to-point distance */ pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); /* default pen style */ pen dotstyle = black; /* point style */ real xmin = 1.42, xmax = 24.42, ymin = 3.8, ymax = 15.54; /* image dimensions */ Label laxis; laxis.p = fontsize(10); xaxis(xmin, xmax,defaultpen+black, Ticks(laxis, Step = 1, Size = 2, NoZero), Arrows(6), above = true); yaxis(ymin, ymax,defaultpen+black, Ticks(laxis, Step = 1, Size = 2, NoZero), Arrows(6), above = true); /* draws axes; NoZero hides '0' label */ /* draw figures */ draw((9.44,8.52)--(12.44,8.52)); draw((9.44,12.52)--(9.44,8.52)); draw((9.44,12.52)--(12.44,8.52)); draw((9.44,10.52)--(10.94,10.52)); draw((10.94,10.52)--(10.94,8.52)); draw((9.44,8.52)--(10.94,10.52)); /* dots and labels */ dot((9.44,8.52),dotstyle); label("$A$", (9.52,8.64), NE * labelscalefactor); dot((12.44,8.52),dotstyle); label("$B$", (12.52,8.64), NE * labelscalefactor); dot((9.44,12.52),dotstyle); label("$C$", (9.52,12.64), NE * labelscalefactor); dot((10.94,8.52),dotstyle); label("$D$", (11.02,8.64), NE * labelscalefactor); dot((9.44,10.52),dotstyle); label("$E$", (9.52,10.64), NE * labelscalefactor); dot((10.94,10.52),dotstyle); label("$F$", (11.02,10.64), NE * labelscalefactor); clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle); /* end of picture */[/asy] Find the least diameter of this triangle into four parts. (The diameter of a dissection is the least upper bound of the distances between pairs of points belonging to the same part.)

1963 AMC 12/AHSME, 38

Point $F$ is taken on the extension of side $AD$ of parallelogram $ABCD$. $BF$ intersects diagonal $AC$ at $E$ and side $DC$ at $G$. If $EF = 32$ and $GF = 24$, then $BE$ equals: [asy] size(7cm); pair A = (0, 0), B = (7, 0), C = (10, 5), D = (3, 5), F = (5.7, 9.5); pair G = intersectionpoints(B--F, D--C)[0]; pair E = intersectionpoints(A--C, B--F)[0]; draw(A--D--C--B--cycle); draw(A--C); draw(D--F--B); label("$A$", A, SW); label("$B$", B, SE); label("$C$", C, NE); label("$D$", D, NW); label("$F$", F, N); label("$G$", G, NE); label("$E$", E, SE); //Credit to MSTang for the asymptote [/asy] $\textbf{(A)}\ 4 \qquad \textbf{(B)}\ 8\qquad \textbf{(C)}\ 10 \qquad \textbf{(D)}\ 12 \qquad \textbf{(E)}\ 16$

2014 AMC 8, 9

In $\bigtriangleup ABC$, $D$ is a point on side $\overline{AC}$ such that $BD=DC$ and $\angle BCD$ measures $70^\circ$. What is the degree measure of $\angle ADB$? [asy] size(300); defaultpen(linewidth(0.8)); pair A=(-1,0),C=(1,0),B=dir(40),D=origin; draw(A--B--C--A); draw(D--B); dot("$A$", A, SW); dot("$B$", B, NE); dot("$C$", C, SE); dot("$D$", D, S); label("$70^\circ$",C,2*dir(180-35)); [/asy] $\textbf{(A) }100\qquad\textbf{(B) }120\qquad\textbf{(C) }135\qquad\textbf{(D) }140\qquad \textbf{(E) }150$

1961 AMC 12/AHSME, 20

The set of points satisfying the pair of inequalities $y>2x$ and $y>4-x$ is contained entirely in quadrants: ${{ \textbf{(A)}\ \text{I and II} \qquad\textbf{(B)}\ \text{II and III} \qquad\textbf{(C)}\ \text{I and III} \qquad\textbf{(D)}\ \text{III and IV} }\qquad\textbf{(E)}\ \text{I and IV} } $

2013 AMC 12/AHSME, 11

Triangle $ABC$ is equilateral with $AB=1$. Points $E$ and $G$ are on $\overline{AC}$ and points $D$ and $F$ are on $\overline{AB}$ such that both $\overline{DE}$ and $\overline{FG}$ are parallel to $\overline{BC}$. Furthermore, triangle $ADE$ and trapezoids $DFGE$ and $FBCG$ all have the same perimeter. What is $DE+FG$? [asy] size(180); pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); real s=1/2,m=5/6,l=1; pair A=origin,B=(l,0),C=rotate(60)*l,D=(s,0),E=rotate(60)*s,F=m,G=rotate(60)*m; draw(A--B--C--cycle^^D--E^^F--G); dot(A^^B^^C^^D^^E^^F^^G); label("$A$",A,SW); label("$B$",B,SE); label("$C$",C,N); label("$D$",D,S); label("$E$",E,NW); label("$F$",F,S); label("$G$",G,NW); [/asy] $\textbf{(A) }1\qquad \textbf{(B) }\dfrac{3}{2}\qquad \textbf{(C) }\dfrac{21}{13}\qquad \textbf{(D) }\dfrac{13}{8}\qquad \textbf{(E) }\dfrac{5}{3}\qquad$

2012 China National Olympiad, 1

In the triangle $ABC$, $\angle A$ is biggest. On the circumcircle of $\triangle ABC$, let $D$ be the midpoint of $\widehat{ABC}$ and $E$ be the midpoint of $\widehat{ACB}$. The circle $c_1$ passes through $A,B$ and is tangent to $AC$ at $A$, the circle $c_2$ passes through $A,E$ and is tangent $AD$ at $A$. $c_1$ and $c_2$ intersect at $A$ and $P$. Prove that $AP$ bisects $\angle BAC$. [hide="Diagram"][asy] /* File unicodetex not found. */ /* Geogebra to Asymptote conversion, documentation at artofproblemsolving.com/Wiki, go to User:Azjps/geogebra */ import graph; size(14.4cm); real labelscalefactor = 0.5; /* changes label-to-point distance */ pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); /* default pen style */ pen dotstyle = black; /* point style */ real xmin = -5.23, xmax = 9.18, ymin = -2.97, ymax = 4.82; /* image dimensions */ /* draw figures */ draw(circle((-1.32,1.36), 2.98)); draw(circle((3.56,1.53), 3.18)); draw((0.92,3.31)--(-2.72,-1.27)); draw(circle((0.08,0.25), 3.18)); draw((-2.72,-1.27)--(3.13,-0.65)); draw((3.13,-0.65)--(0.92,3.31)); draw((0.92,3.31)--(2.71,-1.54)); draw((-2.41,-1.74)--(0.92,3.31)); draw((0.92,3.31)--(1.05,-0.43)); /* dots and labels */ dot((-1.32,1.36),dotstyle); dot((0.92,3.31),dotstyle); label("$A$", (0.81,3.72), NE * labelscalefactor); label("$c_1$", (-2.81,3.53), NE * labelscalefactor); dot((3.56,1.53),dotstyle); label("$c_2$", (3.43,3.98), NE * labelscalefactor); dot((1.05,-0.43),dotstyle); label("$P$", (0.5,-0.43), NE * labelscalefactor); dot((-2.72,-1.27),dotstyle); label("$B$", (-3.02,-1.57), NE * labelscalefactor); dot((2.71,-1.54),dotstyle); label("$E$", (2.71,-1.86), NE * labelscalefactor); dot((3.13,-0.65),dotstyle); label("$C$", (3.39,-0.9), NE * labelscalefactor); dot((-2.41,-1.74),dotstyle); label("$D$", (-2.78,-2.07), NE * labelscalefactor); clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle); /* end of picture */[/asy][/hide]

2004 Iran MO (3rd Round), 15

This problem is easy but nobody solved it. point $A$ moves in a line with speed $v$ and $B$ moves also with speed $v'$ that at every time the direction of move of $B$ goes from $A$.We know $v \geq v'$.If we know the point of beginning of path of $A$, then $B$ must be where at first that $B$ can catch $A$.

1963 AMC 12/AHSME, 25

Point $F$ is taken in side $AD$ of square $ABCD$. At $C$ a perpendicular is drawn to $CF$, meeting $AB$ extended at $E$. The area of $ABCD$ is $256$ square inches and the area of triangle $CEF$ is $200$ square inches. Then the number of inches in $BE$ is: [asy] size(6cm); pair A = (0, 0), B = (1, 0), C = (1, 1), D = (0, 1), E = (1.3, 0), F = (0, 0.7); draw(A--B--C--D--cycle); draw(F--C--E--B); label("$A$", A, SW); label("$B$", B, S); label("$C$", C, N); label("$D$", D, NW); label("$E$", E, SE); label("$F$", F, W); //Credit to MSTang for the asymptote [/asy] $\textbf{(A)}\ 12 \qquad \textbf{(B)}\ 14 \qquad \textbf{(C)}\ 15 \qquad \textbf{(D)}\ 16 \qquad \textbf{(E)}\ 20$

2012 AMC 10, 25

A bug travels from $A$ to $B$ along the segments in the hexagonal lattice pictured below. The segments marked with an arrow can be traveled only in the direction of the arrow, and the bug never travels the same segment more than once. How many different paths are there? [asy] size(10cm); draw((0.0,0.0)--(1.0,1.7320508075688772)--(3.0,1.7320508075688772)--(4.0,3.4641016151377544)--(6.0,3.4641016151377544)--(7.0,5.196152422706632)--(9.0,5.196152422706632)--(10.0,6.928203230275509)--(12.0,6.928203230275509)); draw((0.0,0.0)--(1.0,1.7320508075688772)--(3.0,1.7320508075688772)--(4.0,3.4641016151377544)--(6.0,3.4641016151377544)--(7.0,5.196152422706632)--(9.0,5.196152422706632)--(10.0,6.928203230275509)--(12.0,6.928203230275509)); draw((3.0,-1.7320508075688772)--(4.0,0.0)--(6.0,0.0)--(7.0,1.7320508075688772)--(9.0,1.7320508075688772)--(10.0,3.4641016151377544)--(12.0,3.464101615137755)--(13.0,5.196152422706632)--(15.0,5.196152422706632)); draw((6.0,-3.4641016151377544)--(7.0,-1.7320508075688772)--(9.0,-1.7320508075688772)--(10.0,0.0)--(12.0,0.0)--(13.0,1.7320508075688772)--(15.0,1.7320508075688776)--(16.0,3.464101615137755)--(18.0,3.4641016151377544)); draw((9.0,-5.196152422706632)--(10.0,-3.464101615137755)--(12.0,-3.464101615137755)--(13.0,-1.7320508075688776)--(15.0,-1.7320508075688776)--(16.0,0)--(18.0,0.0)--(19.0,1.7320508075688772)--(21.0,1.7320508075688767)); draw((12.0,-6.928203230275509)--(13.0,-5.196152422706632)--(15.0,-5.196152422706632)--(16.0,-3.464101615137755)--(18.0,-3.4641016151377544)--(19.0,-1.7320508075688772)--(21.0,-1.7320508075688767)--(22.0,0)); draw((0.0,-0.0)--(1.0,-1.7320508075688772)--(3.0,-1.7320508075688772)--(4.0,-3.4641016151377544)--(6.0,-3.4641016151377544)--(7.0,-5.196152422706632)--(9.0,-5.196152422706632)--(10.0,-6.928203230275509)--(12.0,-6.928203230275509)); draw((3.0,1.7320508075688772)--(4.0,-0.0)--(6.0,-0.0)--(7.0,-1.7320508075688772)--(9.0,-1.7320508075688772)--(10.0,-3.4641016151377544)--(12.0,-3.464101615137755)--(13.0,-5.196152422706632)--(15.0,-5.196152422706632)); draw((6.0,3.4641016151377544)--(7.0,1.7320508075688772)--(9.0,1.7320508075688772)--(10.0,-0.0)--(12.0,-0.0)--(13.0,-1.7320508075688772)--(15.0,-1.7320508075688776)--(16.0,-3.464101615137755)--(18.0,-3.4641016151377544)); draw((9.0,5.1961524)--(10.0,3.464101)--(12.0,3.46410)--(13.0,1.73205)--(15.0,1.732050)--(16.0,0)--(18.0,-0.0)--(19.0,-1.7320)--(21.0,-1.73205080)); draw((12.0,6.928203)--(13.0,5.1961524)--(15.0,5.1961524)--(16.0,3.464101615)--(18.0,3.4641016)--(19.0,1.7320508)--(21.0,1.732050)--(22.0,0)); dot((0,0)); dot((22,0)); label("$A$",(0,0),WNW); label("$B$",(22,0),E); filldraw((2.0,1.7320508075688772)--(1.6,1.2320508075688772)--(1.75,1.7320508075688772)--(1.6,2.232050807568877)--cycle,black); filldraw((5.0,3.4641016151377544)--(4.6,2.9641016151377544)--(4.75,3.4641016151377544)--(4.6,3.9641016151377544)--cycle,black); filldraw((8.0,5.196152422706632)--(7.6,4.696152422706632)--(7.75,5.196152422706632)--(7.6,5.696152422706632)--cycle,black); filldraw((11.0,6.928203230275509)--(10.6,6.428203230275509)--(10.75,6.928203230275509)--(10.6,7.428203230275509)--cycle,black); filldraw((4.6,0.0)--(5.0,-0.5)--(4.85,0.0)--(5.0,0.5)--cycle,white); filldraw((8.0,1.732050)--(7.6,1.2320)--(7.75,1.73205)--(7.6,2.2320)--cycle,black); filldraw((11.0,3.4641016)--(10.6,2.9641016)--(10.75,3.46410161)--(10.6,3.964101)--cycle,black); filldraw((14.0,5.196152422706632)--(13.6,4.696152422706632)--(13.75,5.196152422706632)--(13.6,5.696152422706632)--cycle,black); filldraw((8.0,-1.732050)--(7.6,-2.232050)--(7.75,-1.7320508)--(7.6,-1.2320)--cycle,black); filldraw((10.6,0.0)--(11,-0.5)--(10.85,0.0)--(11,0.5)--cycle,white); filldraw((14.0,1.7320508075688772)--(13.6,1.2320508075688772)--(13.75,1.7320508075688772)--(13.6,2.232050807568877)--cycle,black); filldraw((17.0,3.464101615137755)--(16.6,2.964101615137755)--(16.75,3.464101615137755)--(16.6,3.964101615137755)--cycle,black); filldraw((11.0,-3.464101615137755)--(10.6,-3.964101615137755)--(10.75,-3.464101615137755)--(10.6,-2.964101615137755)--cycle,black); filldraw((14.0,-1.7320508075688776)--(13.6,-2.2320508075688776)--(13.75,-1.7320508075688776)--(13.6,-1.2320508075688776)--cycle,black); filldraw((16.6,0)--(17,-0.5)--(16.85,0)--(17,0.5)--cycle,white); filldraw((20.0,1.7320508075688772)--(19.6,1.2320508075688772)--(19.75,1.7320508075688772)--(19.6,2.232050807568877)--cycle,black); filldraw((14.0,-5.196152422706632)--(13.6,-5.696152422706632)--(13.75,-5.196152422706632)--(13.6,-4.696152422706632)--cycle,black); filldraw((17.0,-3.464101615137755)--(16.6,-3.964101615137755)--(16.75,-3.464101615137755)--(16.6,-2.964101615137755)--cycle,black); filldraw((20.0,-1.7320508075688772)--(19.6,-2.232050807568877)--(19.75,-1.7320508075688772)--(19.6,-1.2320508075688772)--cycle,black); filldraw((2.0,-1.7320508075688772)--(1.6,-1.2320508075688772)--(1.75,-1.7320508075688772)--(1.6,-2.232050807568877)--cycle,black); filldraw((5.0,-3.4641016)--(4.6,-2.964101)--(4.75,-3.4641)--(4.6,-3.9641016)--cycle,black); filldraw((8.0,-5.1961524)--(7.6,-4.6961524)--(7.75,-5.19615242)--(7.6,-5.696152422)--cycle,black); filldraw((11.0,-6.9282032)--(10.6,-6.4282032)--(10.75,-6.928203)--(10.6,-7.428203)--cycle,black);[/asy] $ \textbf{(A)}\ 2112\qquad\textbf{(B)}\ 2304\qquad\textbf{(C)}\ 2368\qquad\textbf{(D)}\ 2384\qquad\textbf{(E)}\ 2400 $

1978 AMC 12/AHSME, 28

Tags: asymptote
[asy] import cse5; size(180); pathpen=black; pair A1=(0,0), A2=(1,0), A3=(0.5,sqrt(3)/2); D(MP("A_1",A1)--MP("A_2",A2)--MP("A_3",A3,N)--cycle); pair A4=(A1+A2)/2, A5 = (A3+A2)/2, A6 = (A4+A3)/2; D(MP("A_4",A4,S)--MP("A_6",A6,W)--A3); D(A6--MP("A_5",A5,NE)--A4); //Credit to chezbgone2 for the diagram[/asy] If $\triangle A_1A_2A_3$ is equilateral and $A_{n+3}$ is the midpoint of line segment $A_nA_{n+1}$ for all positive integers $n$, then the measure of $\measuredangle A_{44}A_{45}A_{43}$ equals $\textbf{(A) }30^\circ\qquad\textbf{(B) }45^\circ\qquad\textbf{(C) }60^\circ\qquad\textbf{(D) }90^\circ\qquad \textbf{(E) }120^\circ$

2012 National Olympiad First Round, 13

$20$ points with no three collinear are given. How many obtuse triangles can be formed by these points? $ \textbf{(A)}\ 6 \qquad \textbf{(B)}\ 20 \qquad \textbf{(C)}\ 2{{10}\choose{3}} \qquad \textbf{(D)}\ 3{{10}\choose{3}} \qquad \textbf{(E)}\ {{20}\choose{3}}$

2010 ELMO Shortlist, 1

Let $ABC$ be a triangle. Let $A_1$, $A_2$ be points on $AB$ and $AC$ respectively such that $A_1A_2 \parallel BC$ and the circumcircle of $\triangle AA_1A_2$ is tangent to $BC$ at $A_3$. Define $B_3$, $C_3$ similarly. Prove that $AA_3$, $BB_3$, and $CC_3$ are concurrent. [i]Carl Lian.[/i]

2011 Indonesia TST, 3

Let $ABC$ and $PQR$ be two triangles such that [list] [b](a)[/b] $P$ is the mid-point of $BC$ and $A$ is the midpoint of $QR$. [b](b)[/b] $QR$ bisects $\angle BAC$ and $BC$ bisects $\angle QPR$ [/list] Prove that $AB+AC=PQ+PR$.

2014 AMC 12/AHSME, 20

In $\triangle BAC$, $\angle BAC=40^\circ$, $AB=10$, and $AC=6$. Points $D$ and $E$ lie on $\overline{AB}$ and $\overline{AC}$ respectively. What is the minimum possible value of $BE+DE+CD$? $\textbf{(A) }6\sqrt 3+3\qquad \textbf{(B) }\dfrac{27}2\qquad \textbf{(C) }8\sqrt 3\qquad \textbf{(D) }14\qquad \textbf{(E) }3\sqrt 3+9\qquad$

1963 AMC 12/AHSME, 18

Chord $EF$ is the perpendicular bisector of chord $BC$, intersecting it in $M$. Between $B$ and $M$ point $U$ is taken, and $EU$ extended meets the circle in $A$. Then, for any selection of $U$, as described, triangle $EUM$ is similar to triangle: [asy] pair B = (-0.866, -0.5); pair C = (0.866, -0.5); pair E = (0, -1); pair F = (0, 1); pair M = midpoint(B--C); pair A = (-0.99, -0.141); pair U = intersectionpoints(A--E, B--C)[0]; draw(B--C); draw(F--E--A); draw(unitcircle); label("$B$", B, SW); label("$C$", C, SE); label("$A$", A, W); label("$E$", E, S); label("$U$", U, NE); label("$M$", M, NE); label("$F$", F, N); //Credit to MSTang for the asymptote [/asy] $\textbf{(A)}\ EFA \qquad \textbf{(B)}\ EFC \qquad \textbf{(C)}\ ABM \qquad \textbf{(D)}\ ABU \qquad \textbf{(E)}\ FMC$

2015 AMC 10, 22

In the figure shown below, $ABCDE$ is a regular pentagon and $AG=1$. What is $FG+JH+CD$? [asy] import cse5;pathpen=black;pointpen=black; size(2inch); pair A=dir(90), B=dir(18), C=dir(306), D=dir(234), E=dir(162); D(MP("A",A,A)--MP("B",B,B)--MP("C",C,C)--MP("D",D,D)--MP("E",E,E)--cycle,linewidth(1.5)); D(A--C--E--B--D--cycle); pair F=IP(A--D,B--E), G=IP(B--E,C--A), H=IP(C--A,B--D), I=IP(D--B,E--C), J=IP(C--E,D--A); D(MP("F",F,dir(126))--MP("I",I,dir(270))--MP("G",G,dir(54))--MP("J",J,dir(198))--MP("H",H,dir(342))--cycle); [/asy] $\textbf{(A) } 3 \qquad\textbf{(B) } 12-4\sqrt5 \qquad\textbf{(C) } \dfrac{5+2\sqrt5}{3} \qquad\textbf{(D) } 1+\sqrt5 \qquad\textbf{(E) } \dfrac{11+11\sqrt5}{10} $

1985 AIME Problems, 6

As shown in the figure, triangle $ABC$ is divided into six smaller triangles by lines drawn from the vertices through a common interior point. The areas of four of these triangles are as indicated. Find the area of triangle $ABC$. [asy] size(200); pair A=origin, B=(14,0), C=(9,12), D=foot(A, B,C), E=foot(B, A, C), F=foot(C, A, B), H=orthocenter(A, B, C); draw(F--C--A--B--C^^A--D^^B--E); label("$A$", A, SW); label("$B$", B, SE); label("$C$", C, N); label("84", centroid(H, C, E), fontsize(9.5)); label("35", centroid(H, B, D), fontsize(9.5)); label("30", centroid(H, F, B), fontsize(9.5)); label("40", centroid(H, A, F), fontsize(9.5));[/asy]

1984 AIME Problems, 3

A point $P$ is chosen in the interior of $\triangle ABC$ so that when lines are drawn through $P$ parallel to the sides of $\triangle ABC$, the resulting smaller triangles, $t_1$, $t_2$, and $t_3$ in the figure, have areas 4, 9, and 49, respectively. Find the area of $\triangle ABC$. [asy] size(200); pathpen=black+linewidth(0.65);pointpen=black; pair A=(0,0),B=(12,0),C=(4,5); D(A--B--C--cycle); D(A+(B-A)*3/4--A+(C-A)*3/4); D(B+(C-B)*5/6--B+(A-B)*5/6);D(C+(B-C)*5/12--C+(A-C)*5/12); MP("A",C,N);MP("B",A,SW);MP("C",B,SE); /* sorry mixed up points according to resources diagram. */ MP("t_3",(A+B+(B-A)*3/4+(A-B)*5/6)/2+(-1,0.8),N); MP("t_2",(B+C+(B-C)*5/12+(C-B)*5/6)/2+(-0.3,0.1),WSW); MP("t_1",(A+C+(C-A)*3/4+(A-C)*5/12)/2+(0,0.15),ESE);[/asy]

2012 Middle European Mathematical Olympiad, 5

Let $ K $ be the midpoint of the side $ AB $ of a given triangle $ ABC $. Let $ L $ and $ M$ be points on the sides $ AC $ and $ BC$, respectively, such that $ \angle CLK = \angle KMC $. Prove that the perpendiculars to the sides $ AB, AC, $ and $ BC $ passing through $ K,L, $ and $M$, respectively, are concurrent.

2009 China Team Selection Test, 1

Let $ ABC$ be a triangle. Point $ D$ lies on its sideline $ BC$ such that $ \angle CAD \equal{} \angle CBA.$ Circle $ (O)$ passing through $ B,D$ intersects $ AB,AD$ at $ E,F$, respectively. $ BF$ meets $ DE$ at $ G$.Denote by$ M$ the midpoint of $ AG.$ Show that $ CM\perp AO.$

2003 Bulgaria Team Selection Test, 5

Let $ABCD$ be a circumscribed quadrilateral and let $P$ be the orthogonal projection of its in center on $AC$. Prove that $\angle {APB}=\angle {APD}$

2012 Purple Comet Problems, 12

Pentagon $ABCDE$ consists of a square $ACDE$ and an equilateral triangle $ABC$ that share the side $\overline{AC}$. A circle centered at $C$ has area 24. The intersection of the circle and the pentagon has half the area of the pentagon. Find the area of the pentagon. [asy]/* File unicodetex not found. */ /* Geogebra to Asymptote conversion, documentation at artofproblemsolving.com/Wiki, go to User:Azjps/geogebra */ import graph; size(4.26cm); real labelscalefactor = 0.5; /* changes label-to-point distance */ pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); /* default pen style */ pen dotstyle = black; /* point style */ real xmin = -1.52, xmax = 2.74, ymin = -2.18, ymax = 6.72; /* image dimensions */ draw((0,1)--(2,1)--(2,3)--(0,3)--cycle); draw((0,3)--(2,3)--(1,4.73)--cycle); /* draw figures */ draw((0,1)--(2,1)); draw((2,1)--(2,3)); draw((2,3)--(0,3)); draw((0,3)--(0,1)); draw((0,3)--(2,3)); draw((2,3)--(1,4.73)); draw((1,4.73)--(0,3)); draw(circle((0,3), 1.44)); label("$C$",(-0.4,3.14),SE*labelscalefactor); label("$A$",(2.1,3.1),SE*labelscalefactor); label("$B$",(0.86,5.18),SE*labelscalefactor); label("$D$",(-0.28,0.88),SE*labelscalefactor); label("$E$",(2.1,0.8),SE*labelscalefactor); /* dots and labels */ clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle); /* end of picture */[/asy]

2018 Canadian Open Math Challenge, C1

Tags: asymptote
Source: 2018 Canadian Open Math Challenge Part C Problem 1 ----- At Math-$e^e$-Mart, cans of cat food are arranged in an pentagonal pyramid of 15 layers high, with 1 can in the top layer, 5 cans in the second layer, 12 cans in the third layer, 22 cans in the fourth layer etc, so that the $k^{\text{th}}$ layer is a pentagon with $k$ cans on each side. [center][img]https://services.artofproblemsolving.com/download.php?id=YXR0YWNobWVudHMvNC9lLzA0NTc0MmM2OGUzMWIyYmE1OGJmZWQzMGNjMGY1NTVmNDExZjU2LnBuZw==&rn=YzFhLlBORw==[/img][img]https://services.artofproblemsolving.com/download.php?id=YXR0YWNobWVudHMvYS9hLzA1YWJlYmE1ODBjMzYwZDFkYWQyOWQ1YTFhOTkzN2IyNzJlN2NmLnBuZw==&rn=YzFiLlBORw==[/img][/center] $\text{(a)}$ How many cans are on the bottom, $15^{\text{th}}$, [color=transparent](A.)[/color]layer of this pyramid? $\text{(b)}$ The pentagonal pyramid is rearranged into a prism consisting of 15 identical layers. [color=transparent](B.)[/color]How many cans are on the bottom layer of the prism? $\text{(c)}$ A triangular prism consist of indentical layers, each of which has a shape of a triangle. [color=transparent](C.)[/color](the number of cans in a triangular layer is one of the triangular numbers: 1,3,6,10,...) [color=transparent](C.)[/color]For example, a prism could be composed of the following layers: [center][img]https://services.artofproblemsolving.com/download.php?id=YXR0YWNobWVudHMvMi85L2NlZmE2M2Y3ODhiN2UzMTRkYzIxY2MzNjFmMDJkYmE0ZTJhMTcwLnBuZw==&rn=YzFjLlBORw==[/img][/center] Prove that a pentagonal pyramid of cans with any number of layers $l\ge 2$ can be rearranged (without a deficit or leftover) into a triangluar prism of cans with the same number of layers $l$.