Found problems: 844
2006 Alexandru Myller, 3
$ 5 $ points are situated in the plane so that any three of them form a triangle of area at most $ 1. $ Prove that there is a trapezoid of area at most $ 3 $ which contains all these points ('including' here means that the points can also be on the sides of the trapezoid).
2016 Sharygin Geometry Olympiad, 3
A trapezoid $ABCD$ and a line $\ell$ perpendicular to its bases $AD$ and $BC$ are given. A point $X$ moves along $\ell$. The perpendiculars from $A$ to $BX$ and from $D$ to $CX$ meet at point $Y$ . Find the locus of $Y$ .
by D.Prokopenko
2000 Moldova National Olympiad, Problem 7
In a trapezoid $ABCD$ with $AB\parallel CD$, the diagonals $AC$ and $BD$ meet at $O$. Let $M$ and $N$ be the centers of the regular hexagons constructed on the sides $AB$ and $CD$ in the exterior of the trapezoid. Prove that $M,O$ and $N$ are collinear.
2015 Azerbaijan IMO TST, 3
Consider a trapezoid $ABCD$ with $BC||AD$ and $BC<AD$. Let the lines $AB$ and $CD$ meet at $X$. Let $\omega_1$ be the incircle of the triangle $XBC$, and let $\omega_2$ be the excircle of the triangle $XAD$ which is tangent to the segment $AD$ . Denote by $a$ and $d$ the lines tangent to $\omega_1$ , distinct from $AB$ and $CD$, and passing through $A$ and $D$, respectively. Denote by $b$ and $c$ the lines tangent to $\omega_2$ , distinct from $AB$ and $CD$, passing through $B$ and $C$ respectively. Assume that the lines $a,b,c$ and $d$ are distinct. Prove that they form a parallelogram.
2011 Iran MO (3rd Round), 2
In triangle $ABC$, $\omega$ is its circumcircle and $O$ is the center of this circle. Points $M$ and $N$ lie on sides $AB$ and $AC$ respectively. $\omega$ and the circumcircle of triangle $AMN$ intersect each other for the second time in $Q$. Let $P$ be the intersection point of $MN$ and $BC$. Prove that $PQ$ is tangent to $\omega$ iff $OM=ON$.
[i]proposed by Mr.Etesami[/i]
1968 IMO Shortlist, 8
Given an oriented line $\Delta$ and a fixed point $A$ on it, consider all trapezoids $ABCD$ one of whose bases $AB$ lies on $\Delta$, in the positive direction. Let $E,F$ be the midpoints of $AB$ and $CD$ respectively. Find the loci of vertices $B,C,D$ of trapezoids that satisfy the following:
[i](i) [/i] $|AB| \leq a$ ($a$ fixed);
[i](ii) [/i] $|EF| = l$ ($l$ fixed);
[i](iii)[/i] the sum of squares of the nonparallel sides of the trapezoid is constant.
[hide="Remark"]
[b]Remark.[/b] The constants are chosen so that such trapezoids exist.[/hide]
1954 Polish MO Finals, 1
Prove that in an isosceles trapezoid circumscibed around a circle, the segments connecting the points of tangency of opposite sides with the circle pass through the point of intersection of the diagonals.
2003 Polish MO Finals, 1
In an acute-angled triangle $ABC, CD$ is the altitude. A line through the midpoint $M$ of side $AB$ meets the rays $CA$ and $CB$ at $K$ and $L$ respectively such that $CK = CL.$ Point $S$ is the circumcenter of the triangle $CKL.$ Prove that $SD = SM.$
1996 Tournament Of Towns, (505) 2
For what positive integers $n$ is it possible to tile an equilateral triangle of side $n$ with trapezoids each of which has sides $1, 1, 1, 2$?
(NB Vassiliev)
1987 AIME Problems, 6
Rectangle $ABCD$ is divided into four parts of equal area by five segments as shown in the figure, where $XY = YB + BC + CZ = ZW = WD + DA + AX$, and $PQ$ is parallel to $AB$. Find the length of $AB$ (in cm) if $BC = 19$ cm and $PQ = 87$ cm.
[asy]
size(250);
pair A=origin, B=(96,0), C=(96,22), D=(0,22), W=(16,22), X=(20,0), Y=(80,0), Z=(76,22), P=(24,11), Q=(72,11);
draw(P--X--A--D--W--P--Q--Y--B--C--Z--Q^^W--Z^^X--Y);
dot(A^^B^^C^^D^^P^^Q^^W^^X^^Y^^Z);
pair point=(48,11);
label("$A$", A, SW);
label("$B$", B, SE);
label("$C$", C, NE);
label("$D$", D, NW);
label("$P$", P, dir(point--P));
label("$Q$", Q, dir(point--Q));
label("$W$", W, N);
label("$X$", X, S);
label("$Y$", Y, S);
label("$Z$", Z, N);[/asy]
2008 China Team Selection Test, 3
Find all positive integers $ n$ having the following properties:in two-dimensional Cartesian coordinates, there exists a convex $ n$ lattice polygon whose lengths of all sides are odd numbers, and unequal to each other. (where lattice polygon is defined as polygon whose coordinates of all vertices are integers in Cartesian coordinates.)
2014 AIME Problems, 3
A rectangle has sides of length $a$ and $36$. A hinge is installed at each vertex of the rectangle and at the midpoint of each side of length $36$. The sides of length $a$ can be pressed toward each other keeping those two sides parallel so the rectangle becomes a convex hexagon as shown. When the figure is a hexagon with the sides of length $a$ parallel and separated by a distance of $24,$ the hexagon has the same area as the original rectangle. Find $a^2$.
[asy]
pair A,B,C,D,E,F,R,S,T,X,Y,Z;
dotfactor = 2;
unitsize(.1cm);
A = (0,0);
B = (0,18);
C = (0,36);
// don't look here
D = (12*2.236, 36);
E = (12*2.236, 18);
F = (12*2.236, 0);
draw(A--B--C--D--E--F--cycle);
dot(" ",A,NW);
dot(" ",B,NW);
dot(" ",C,NW);
dot(" ",D,NW);
dot(" ",E,NW);
dot(" ",F,NW);
//don't look here
R = (12*2.236 +22,0);
S = (12*2.236 + 22 - 13.4164,12);
T = (12*2.236 + 22,24);
X = (12*4.472+ 22,24);
Y = (12*4.472+ 22 + 13.4164,12);
Z = (12*4.472+ 22,0);
draw(R--S--T--X--Y--Z--cycle);
dot(" ",R,NW);
dot(" ",S,NW);
dot(" ",T,NW);
dot(" ",X,NW);
dot(" ",Y,NW);
dot(" ",Z,NW);
// sqrt180 = 13.4164
// sqrt5 = 2.236
[/asy]
2007 Romania National Olympiad, 2
Consider the triangle $ ABC$ with $ m(\angle BAC \equal{} 90^\circ)$ and $ AC \equal{} 2AB$. Let $ P$ and $ Q$ be the midpoints of $ AB$ and $ AC$,respectively. Let $ M$ and $ N$ be two points found on the side $ BC$ such that $ CM \equal{} BN \equal{} x$. It is also known that $ 2S[MNPQ] \equal{} S[ABC]$. Determine $ x$ in function of $ AB$.
2002 AMC 10, 25
In trapezoid $ ABCD$ with bases $ AB$ and $ CD$, we have $ AB\equal{}52$, $ BC\equal{}12$, $ CD\equal{}39$, and $ DA\equal{}5$. The area of $ ABCD$ is
[asy]
pair A,B,C,D;
A=(0,0);
B=(52,0);
C=(38,20);
D=(5,20);
dot(A);
dot(B);
dot(C);
dot(D);
draw(A--B--C--D--cycle);
label("$A$",A,S);
label("$B$",B,S);
label("$C$",C,N);
label("$D$",D,N);
label("52",(A+B)/2,S);
label("39",(C+D)/2,N);
label("12",(B+C)/2,E);
label("5",(D+A)/2,W);[/asy]
$ \text{(A)}\ 182 \qquad
\text{(B)}\ 195 \qquad
\text{(C)}\ 210 \qquad
\text{(D)}\ 234 \qquad
\text{(E)}\ 260$
2023 Taiwan TST Round 1, G
Let $\Omega$ be the circumcircle of an isosceles trapezoid $ABCD$, in which $AD$ is parallel to $BC$. Let $X$ be the reflection point of $D$ with respect to $BC$. Point $Q$ is on the arc $BC$ of $\Omega$ that does not contain $A$. Let $P$ be the intersection of $DQ$ and $BC$. A point $E$ satisfies that $EQ$ is parallel to $PX$, and $EQ$ bisects $\angle BEC$. Prove that $EQ$ also bisects $\angle AEP$.
[i]Proposed by Li4.[/i]
2012 Silk Road, 1
Trapezium $ABCD$, where $BC||AD$, is inscribed in a circle, $E$ is midpoint of the arc $AD$ of this circle not containing point $C$ . Let $F$ be the foot of the perpendicular drawn from $E$ on the line tangent to the circle at the point $C$ . Prove that $BC=2CF$.
2012 China Girls Math Olympiad, 4
There is a stone at each vertex of a given regular $13$-gon, and the color of each stone is black or white. Prove that we may exchange the position of two stones such that the coloring of these stones are symmetric with respect to some symmetric axis of the $13$-gon.
2018 OMMock - Mexico National Olympiad Mock Exam, 1
Let $ABCD$ be a trapezoid with bases $AD$ and $BC$, and let $M$ be the midpoint of $CD$. The circumcircle of triangle $BCM$ meets $AC$ and $BD$ again at $E$ and $F$, with $E$ and $F$ distinct, and line $EF$ meets the circumcircle of triangle $AEM$ again at $P$. Prove that $CP$ is parallel to $BD$.
[i]Proposed by Ariel García[/i]
2021 Durer Math Competition Finals, 13
The trapezoid $ABCD$ satisfies $AB \parallel CD$, $AB = 70$, $AD = 32$ and $BC = 49$. We also know that $\angle ABC = 3 \angle ADC$. How long is the base $CD$?
1985 AIME Problems, 4
A small square is constructed inside a square of area 1 by dividing each side of the unit square into $n$ equal parts, and then connecting the vertices to the division points closest to the opposite vertices. Find the value of $n$ if the the area of the small square is exactly 1/1985.
[asy]
size(200);
pair A=(0,1), B=(1,1), C=(1,0), D=origin;
draw(A--B--C--D--A--(1,1/6));
draw(C--(0,5/6)^^B--(1/6,0)^^D--(5/6,1));
pair point=( 0.5 , 0.5 );
//label("$A$", A, dir(point--A));
//label("$B$", B, dir(point--B));
//label("$C$", C, dir(point--C));
//label("$D$", D, dir(point--D));
label("$1/n$", (11/12,1), N, fontsize(9));[/asy]
Estonia Open Junior - geometry, 1996.1.4
In a trapezoid, the two non parallel sides and a base have length $1$, while the other base and both the diagonals have length $a$. Find the value of $a$.
2014 Stanford Mathematics Tournament, 5
Let $ABC$ be a triangle where $\angle BAC = 30^\circ$. Construct $D$ in $\triangle ABC$ such that $\angle ABD =
\angle ACD = 30^\circ$. Let the circumcircle of $\triangle ABD$ intersect $AC$ at $X$. Let the circumcircle of $\triangle ACD$ intersect $AB$ at $Y$. Given that $DB - DC = 10$ and $BC = 20$, find $AX \cdot AY$.
2011 Argentina Team Selection Test, 3
Let $ABCD$ be a trapezoid with bases $BC \parallel AD$, where $AD > BC$, and non-parallel legs $AB$ and $CD$. Let $M$ be the intersection of $AC$ and $BD$. Let $\Gamma_1$ be a circumference that passes through $M$ and is tangent to $AD$ at point $A$; let $\Gamma_2$ be a circumference that passes through $M$ and is tangent to $AD$ at point $D$. Let $S$ be the intersection of the lines $AB$ and $CD$, $X$ the intersection of $\Gamma_1$ with the line $AS$, $Y$ the intesection of $\Gamma_2$ with the line $DS$, and $O$ the circumcenter of triangle $ASD$.
Show that $SO \perp XY$.
1984 Bulgaria National Olympiad, Problem 2
The diagonals of a trapezoid $ABCD$ with bases $AB$ and $CD$ intersect in a point $O$, and $AB/CD=k>1$. The bisectors of the angles $AOB,BOC,COD,DOA$ intersect $AB,BC,CD,DA$ respectively at $K,L,M,N$. The lines $KL$ and $MN$ meet at $P$, and the lines $KN$ and $LM$ meet at $Q$. If the areas of $ABCD$ and $OPQ$ are equal, find the value of $k$.
2013 NIMO Problems, 5
In convex hexagon $AXBYCZ$, sides $AX$, $BY$ and $CZ$ are parallel to diagonals $BC$, $XC$ and $XY$, respectively. Prove that $\triangle ABC$ and $\triangle XYZ$ have the same area.
[i]Proposed by Evan Chen[/i]