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: 25757

2010 China Team Selection Test, 1

Let $ABCD$ be a convex quadrilateral with $A,B,C,D$ concyclic. Assume $\angle ADC$ is acute and $\frac{AB}{BC}=\frac{DA}{CD}$. Let $\Gamma$ be a circle through $A$ and $D$, tangent to $AB$, and let $E$ be a point on $\Gamma$ and inside $ABCD$. Prove that $AE\perp EC$ if and only if $\frac{AE}{AB}-\frac{ED}{AD}=1$.

Kyiv City MO Seniors 2003+ geometry, 2005.11.2

A circle touches the sides $AC$ and $AB$ of the triangle $ABC $ at the points ${{B}_ {1}} $ and ${{C}_ {1}}$ respectively. The segments $B {{B} _ {1}} $ and $C {{C} _ {1}}$ are equal. Prove that the triangle $ABC $ is isosceles. (Timoshkevich Taras)

Russian TST 2018, P1

Let $I{}$ be the incircle of the triangle $ABC$. Let $A_1, B_1$ and $C_1$ be the midpoints of the sides $BC, CA$ and $AB$ respectively. The point $X{}$ is symmetric to $I{}$ with respect to $A_1$. The line $\ell$ parallel to $BC$ and passing through $X{}$ intersects the lines $A_1B_1$ and $A_1C_1$ at $M{}$ and $N{}$ respectively. Prove that one of the excenters of the triangle $ABC$ lies on the $A_1$-excircle of the triangle $A_1MN$.

2015 China Northern MO, 2

It is known that $\odot O$ is the circumcircle of $\vartriangle ABC$ wwith diameter $AB$. The tangents of $\odot O$ at points $B$ and $C$ intersect at $P$ . The line perpendicular to $PA$ at point $A$ intersects the extension of $BC$ at point $D$. Extend $DP$ at length $PE = PB$. If $\angle ADP = 40^o$ , find the measure of $\angle E$.

2017 Finnish National High School Mathematics Comp, 5

Let $A$ and $B$ be two arbitrary points on the circumference of the circle such that $AB$ is not the diameter of the circle. The tangents to the circle drawn at points $A$ and $B$ meet at $T$. Next, choose the diameter $XY$ so that the segments $AX$ and $BY$ intersect. Let this be the intersection of $Q$. Prove that the points $A, B$, and $Q$ lie on a circle with center $T$.

2023 Sharygin Geometry Olympiad, 18

Restore a bicentral quadrilateral $ABCD$ if the midpoints of the arcs $AB,BC,CD$ of its circumcircle are given.

1997 Turkey Team Selection Test, 1

A convex $ABCDE$ is inscribed in a unit circle, $AE$ being its diameter. If $AB = a$, $BC = b$, $CD = c$, $DE = d$ and $ab = cd =\frac{1}{4}$, compute $AC + CE$ in terms of $a, b, c, d.$

2011 Iran Team Selection Test, 1

In acute triangle $ABC$ angle $B$ is greater than$C$. Let $M$ is midpoint of $BC$. $D$ and $E$ are the feet of the altitude from $C$ and $B$ respectively. $K$ and $L$ are midpoint of $ME$ and $MD$ respectively. If $KL$ intersect the line through $A$ parallel to $BC$ in $T$, prove that $TA=TM$.

2012 USAMTS Problems, 2

Three wooden equilateral triangles of side length $18$ inches are placed on axles as shown in the diagram to the right. Each axle is $30$ inches from the other two axles. A $144$-inch leather band is wrapped around the wooden triangles, and a dot at the top corner is painted as shown. The three triangles are then rotated at the same speed and the band rotates without slipping or stretching. Compute the length of the path that the dot travels before it returns to its initial position at the top corner. [asy] size(150); defaultpen(linewidth(0.8)+fontsize(10)); pair A=origin,B=(48,0),C=rotate(60,A)*B; path equi=(0,0)--(18,0)--(9,9*sqrt(3))--cycle,circ=circle(centroid(A,B,C)*18/48,1/3); picture a; fill(a,equi,grey); fill(a,circ,white); add(a); add(shift(15,15*sqrt(3))*a); add(shift(30,0)*a); draw(A--B--C--cycle,linewidth(1)); path top = circle(C,2/3); unfill(top); draw(top); real r=-5/2; draw((9,r+1)--(9,r-1)^^(9,r)--(39,r)^^(39,r-1)--(39,r+1)); label("$30$",(24,r),S); [/asy]

2010 Contests, 3

A rectangle formed by the lines of checkered paper is divided into figures of three kinds: isosceles right triangles (1) with base of two units, squares (2) with unit side, and parallelograms (3) formed by two sides and two diagonals of unit squares (figures may be oriented in any way). Prove that the number of figures of the third kind is even. [img]http://up.iranblog.com/Files7/dda310bab8b6455f90ce.jpg[/img]

2011 Bosnia Herzegovina Team Selection Test, 2

On semicircle, with diameter $|AB|=d$, are given points $C$ and $D$ such that: $|BC|=|CD|=a$ and $|DA|=b$ where $a, b, d$ are different positive integers. Find minimum possible value of $d$

2009 Purple Comet Problems, 10

Tags: geometry
The diagram shows a $20$ by $20$ square $ABCD$. The points $E$, $F$, and $G$ are equally spaced on side $BC$. The points $H$, $I$, $J$, and $K$ on side $DA$ are placed so that the triangles $BKE$, $EJF$, $FIG$, and $GHC$ are isosceles. Points $L$ and $M$ are midpoints of the sides $AB$ and $CD$, respectively. Find the total area of the shaded regions. [asy] size(175); defaultpen(linewidth(0.8)); real r=20/8; pair x[]; draw(origin--(0,20)--(20,20)--(20,0)--cycle); string label[]={"B","K","E","J","F","I","G","H","C"}; for(int i=1;i<=7;i=i+1) { if(floor(i/2)==i/2) { x[i]=(i*r,0); label("$"+label[i]+"$",x[i],S); } else { x[i]=(i*r,20); label("$"+label[i]+"$",x[i],N); } } filldraw(origin--x[1]--x[2]--x[3]--x[4]--x[5]--x[6]--x[7]--(20,0)--(20,10)--(0,10)--cycle,gray); label("$B$",origin,SW); label("$C$",(20,0),SE); label("$A$",(0,20),NW); label("$D$",(20,20),NE); label("$M$",(20,10),E); label("$L$",(0,10),W); [/asy]

1999 Harvard-MIT Mathematics Tournament, 10

Tags: geometry
In the figure below, $AB = 15$, $BD = 18$, $AF = 15$, $DF = 12$, $BE = 24$, and $CF = 17$. Find $BG : FG$. [img]https://cdn.artofproblemsolving.com/attachments/9/e/dc171c52961442f9846d2fce858937ff9fb7e8.png[/img]

2013 India IMO Training Camp, 2

In a triangle $ABC$, with $\widehat{A} > 90^\circ$, let $O$ and $H$ denote its circumcenter and orthocenter, respectively. Let $K$ be the reflection of $H$ with respect to $A$. Prove that $K, O$ and $C$ are collinear if and only if $\widehat{A} - \widehat{B} = 90^\circ$.

2020 Turkey Team Selection Test, 2

$A_1A_2A_3A_4$ is a tangential quadrilateral with perimeter $p_1$ and sum of the diagonals $k_1$ .$B_1B_2B_3B_4$ is a tangential quadrilateral with perimeter $p_2$ and sum of the diagonals $k_2$ .Prove that $A_1A_2A_3A_4$ and $B_1B_2B_3B_4$ are congruent squares if $$ p_1^2+p_2^2=(k_1+k_2)^2 $$

2023 Yasinsky Geometry Olympiad, 6

Tags: tangent , geometry
Let $ABC$ be an isosceles triangle with $\angle BAC = 108^o$. The angle bisector of the $\angle ABC$ intersects the circumcircle of a triangle $ABC$ at the point $D$. Let $E$ be a point on segment $CB$ such that $AB =BE$. Prove that the perpendicular bisector of $CD$ is tangent to circumcircle of triangle $ABE$ . (Bohdan Zheliabovskyi)

2022 China Team Selection Test, 6

(1) Prove that, on the complex plane, the area of the convex hull of all complex roots of $z^{20}+63z+22=0$ is greater than $\pi$. (2) Let $a_1,a_2,\ldots,a_n$ be complex numbers with sum $1$, and $k_1<k_2<\cdots<k_n$ be odd positive integers. Let $\omega$ be a complex number with norm at least $1$. Prove that the equation \[ a_1 z^{k_1}+a_2 z^{k_2}+\cdots+a_n z^{k_n}=w \] has at least one complex root with norm at most $3n|\omega|$.

1995 Niels Henrik Abels Math Contest (Norwegian Math Olympiad) Round 2, 2

On the figure, the quadrilateral $ ABCD$ is a rectangle, $ P$ lies on $ AD$ and $ Q$ on $ AB.$ The triangles $ PAQ, QBC,$ and $ PCD$ all have the same areas, and $ BQ \equal{} 2.$ How long is $ AQ$? [img]http://i250.photobucket.com/albums/gg265/geometry101/NielsHenrikAbel1995Number2.jpg[/img] A. 7/2 B. $ \sqrt{7}$ C. $ 2 \sqrt{3}$ D. $ 1 \plus{} \sqrt{5}$ E. Not uniquely determined

2007 ISI B.Math Entrance Exam, 10

The eleven members of a cricket team are numbered $1,2,...,11$. In how many ways can the entire cricket team sit on the eleven chairs arranged around a circular table so that the numbers of any two adjacent players differ by one or two ?

2022 LMT Spring, 1

Tags: algebra , geometry
Derek and Jacob have a cake in the shape a rectangle with dimensions $14$ inches by $9$ inches. They make a deal to split it: Derek takes home the portion of the cake that is less than one inch from the border, while Jacob takes home the remainder of the cake. Let $D : J$ be the ratio of the amount of cake Derek took to the amount of cake Jacob took, where $D$ and $J$ are relatively prime positive integers. Find $D + J$.

2007 Bosnia and Herzegovina Junior BMO TST, 3

Is it possible to place some circles inside a square side length $1$, such that no two circles intersect and the sum of their radii is $2007$?

1985 Iran MO (2nd round), 2

Tags: geometry
In the triangle $ABC$ the length of side $AB$, and height $AH$ are known. also we know that $\angle B = 2 \angle C.$ Plot this triangle.

2006 Argentina National Olympiad, 2

In triangle $ABC, M$ is the midpoint of $AB$ and $D$ the foot of the bisector of angle $\angle ABC$. If $MD$ and $BD$ are known to be perpendicular, calculate $\frac{AB}{BC}$.

2008 IMAC Arhimede, 2

In the $ ABC$ triangle, the bisector of $A $ intersects the $ [BC] $ at the point $ A_ {1} $ , and the circle circumscribed to the triangle $ ABC $ at the point $ A_ {2} $. Similarly are defined $ B_ {1} $ and $ B_ {2} $ , as well as $ C_ {1} $ and $ C_ {2} $. Prove that $$ \frac {A_{1}A_{2}}{BA_{2} + A_{2}C} + \frac {B_{1}B_{2}}{CB_{2} + B_{2}A} + \frac {C_{1}C_{2}}{AC_{2} + C_{2}B} \geq \frac {3}{4}$$

Champions Tournament Seniors - geometry, 2001.4

Given a convex pentagon $ABCDE$ in which $\angle ABC = \angle AED = 90^o$, $\angle BAC= \angle DAE$. Let $K$ be the midpoint of the side $CD$, and $P$ the intersection point of lines $AD$ and $BK$, $Q$ be the intersection point of lines $AC$ and $EK$. Prove that $BQ = PE$.