Found problems: 1049
In $\triangle ABC$, $AB=AC=28$ and $BC=20$. Points $D,E,$ and $F$ are on sides $\overline{AB}$, $\overline{BC}$, and $\overline{AC}$, respectively, such that $\overline{DE}$ and $\overline{EF}$ are parallel to $\overline{AC}$ and $\overline{AB}$, respectively. What is the perimeter of parallelogram $ADEF$?
[asy]
size(180);
pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps);
real r=5/7;
pair A=(10,sqrt(28^2-100)),B=origin,C=(20,0),D=(A.x*r,A.y*r);
pair bottom=(C.x+(D.x-A.x),C.y+(D.y-A.y));
pair E=extension(D,bottom,B,C);
pair top=(E.x+D.x,E.y+D.y);
pair F=extension(E,top,A,C);
draw(A--B--C--cycle^^D--E--F);
dot(A^^B^^C^^D^^E^^F);
label("$A$",A,NW);
label("$B$",B,SW);
label("$C$",C,SE);
label("$D$",D,W);
label("$E$",E,S);
label("$F$",F,dir(0));
[/asy]
$\textbf{(A) }48\qquad
\textbf{(B) }52\qquad
\textbf{(C) }56\qquad
\textbf{(D) }60\qquad
\textbf{(E) }72\qquad$
The diagram below shows two parallel rows with seven points in the upper row and nine points in the lower row. The points in each row are spaced one unit apart, and the two rows are two units apart. How many trapezoids which are not parallelograms have vertices in this set of $16$ points and have area of at least six square units?
[asy]
import graph; size(7cm);
pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps);
pen dotstyle = black;
dot((-2,4),linewidth(6pt) + dotstyle);
dot((-1,4),linewidth(6pt) + dotstyle);
dot((0,4),linewidth(6pt) + dotstyle);
dot((1,4),linewidth(6pt) + dotstyle);
dot((2,4),linewidth(6pt) + dotstyle);
dot((3,4),linewidth(6pt) + dotstyle);
dot((4,4),linewidth(6pt) + dotstyle);
dot((-3,2),linewidth(6pt) + dotstyle);
dot((-2,2),linewidth(6pt) + dotstyle);
dot((-1,2),linewidth(6pt) + dotstyle);
dot((0,2),linewidth(6pt) + dotstyle);
dot((1,2),linewidth(6pt) + dotstyle);
dot((2,2),linewidth(6pt) + dotstyle);
dot((3,2),linewidth(6pt) + dotstyle);
dot((4,2),linewidth(6pt) + dotstyle);
dot((5,2),linewidth(6pt) + dotstyle); [/asy]
Consider the parallelogram $ABCD$ with obtuse angle $A$. Let $H$ be the feet of perpendicular from $A$ to the side $BC$. The median from $C$ in triangle $ABC$ meets the circumcircle of triangle $ABC$ at the point $K$. Prove that points $K,H,C,D$ lie on the same circle.
Let $ ABP, BCQ, CAR$ be three non-overlapping triangles erected outside of acute triangle $ ABC$. Let $ M$ be the midpoint of segment $ AP$. Given that $ \angle PAB \equal{} \angle CQB \equal{} 45^\circ$, $ \angle ABP \equal{} \angle QBC \equal{} 75^\circ$, $ \angle RAC \equal{} 105^\circ$, and $ RQ^2 \equal{} 6CM^2$, compute $ AC^2/AR^2$.
[i]Zuming Feng.[/i]
We construct similar isosceles triangles on the sides of the triangle $ ABC $: triangle $ APB $ outside the triangle $ ABC $ ($ AP = PB $), triangle $ CQA $ outside the triangle $ ABC $ ($ CQ = QA $), triangle $ CRB $ inside the triangle $ ABC $ ($ CR = RB $). Prove that $ APRQ $ is a parallelogram or that the points $ A, P, R, Q $ lie on a straight line.
We have a rhombus $ABCD$ with $\angle BAD=60^\circ$. We take points $F,H,G$ on the sides $AD,DC$ and the diagonal $AC$, respectively, such that $DFGH$ is a parallelogram. Prove that $BFH$ is equilateral.
A point$ O$ inside a parallelogram $ABCD$ satisfies $\angle AOB + \angle COD = \pi$. Prove that $\angle CBO = \angle CDO$.
There are $\frac{k(k+1)}{2}+1$ points on the planes, some are connected by disjoint segments ( also point can not lies on segment, that connects two other points). It is true, that plane is divided to some parallelograms and one infinite region. What maximum number of segments can be drawn ?
[i] A.Kupavski, A. Polyanski[/i]
It is given triangle $ABC$ and parallelogram $ASCR$ with diagonal $AC$. Let line constructed through point $B$ parallel with $CS$ intersects line $AS$ and $CR$ in $M$ and $P$, respectively. Let line constructed through point $B$ parallel with $AS$ intersects line $AR$ and $CS$ in $N$ and $Q$, respectively. Prove that lines $RS$, $MN$ and $PQ$ are concurrent
Let $ABCD$ be a parallelogram. On the ray $(DB$ a point $E$ is given such that the ray $(AB$ is the angle bisector of $\angle CAE$. Let $F$ be the intersection of $CE$ and $AB$. Prove that $\frac{AB}{BF} - \frac{AC}{AE} = 1$
Given a ball $K$. Find the locus of the vertices $A$ of all parallelograms $ABCD$ such that $ AC \leq BD$, and the diagonal $BD$ lies completely inside the ball $K$.
The sides of an equilateral triangle $ABC$ are divided into $n$ equal parts $(n \geq 2) .$ For each point on a side, we draw the lines parallel to other sides of the triangle $ABC,$ e.g. for $n=3$ we have the following diagram:
[asy]
unitsize(150);
defaultpen(linewidth(0.7));
int n = 3; /* # of vertical lines, including AB */
pair A = (0,0), B = dir(-30), C = dir(30);
draw(A--B--C--cycle,linewidth(2)); dot(A,UnFill(0)); dot(B,UnFill(0)); dot(C,UnFill(0));
label("$A$",A,W); label("$C$",C,NE); label("$B$",B,SE);
for(int i = 1; i < n; ++i) {
draw((i*A+(n-i)*B)/n--(i*A+(n-i)*C)/n);
draw((i*B+(n-i)*A)/n--(i*B+(n-i)*C)/n);
draw((i*C+(n-i)*A)/n--(i*C+(n-i)*B)/n);
}
[/asy]
For each $n \geq 2,$ find the number of existing parallelograms.
Let $AH_A$, $BH_B$ and $CH_C$ be the altitudes of triangle $\triangle ABC$. Prove that the triangle whose vertices are the intersection points of the altitudes of $\triangle AH_BH_C$, $\triangle BH_AH_C$ and $\triangle CH_AH_B$ is congruent to $\triangle H_AH_BH_C$.
The circumcentre $O$ of a given cyclic quadrilateral $ABCD$ lies inside the quadrilateral but not on the diagonal $AC$. The diagonals of the quadrilateral intersect at $I$. The circumcircle of the triangle $AOI$ meets the sides $AD$ and $AB$ at points $P$ and $Q$, respectively; the circumcircle of the triangle $COI$ meets the sides $CB$ and $CD$ at points $R$ and $S$, respectively. Prove that $PQRS$ is a parallelogram.
Let the intersections of $\odot O_1$ and $\odot O_2$ be $A$ and $B$. Point $R$ is on arc $AB$ of $\odot O_1$ and $T$ is on arc $AB$ on $\odot O_2$. $AR$ and $BR$ meet $\odot O_2$ at $C$ and $D$; $AT$ and $BT$ meet $\odot O_1$ at $Q$ and $P$. If $PR$ and $TD$ meet at $E$ and $QR$ and $TC$ meet at $F$, then prove: $AE \cdot BT \cdot BR = BF \cdot AT \cdot AR$.
Let $ABCD$ be a parallelogram with $\angle BAC = 45^\circ,$ and $AC > BD .$ Let $w_1$ and $w_2$ be two circles with diameters $AC$ and $DC,$ respectively. The circle $w_1$ intersects $AB$ at $E$ and the circle $w_2$ intersects $AC$ at $O$ and $C$, and $AD$ at $F.$ Find the ratio of areas of triangles $AOE$ and $COF$ if $AO = a,$ and $FO = b .$
For a vertex $X$ of a quadrilateral, let $h(X)$ be the sum of the distances from $X$ to the two sides not containing $X$. Show that if a convex quadrilateral $ABCD$ satisfies $h(A) = h(B) = h(C) = h(D)$, then it must be a parallelogram.
In parallelogram $ ABCD$, point $ M$ is on $ \overline{AB}$ so that $ \frac{AM}{AB} \equal{} \frac{17}{1000}$ and point $ N$ is on $ \overline{AD}$ so that $ \frac{AN}{AD} \equal{} \frac{17}{2009}$. Let $ P$ be the point of intersection of $ \overline{AC}$ and $ \overline{MN}$. Find $ \frac{AC}{AP}$.
Points $K$ and $L$ are on the sides $BC$ and $CD$, respectively of the parallelogram $ABCD$, such that $AB + BK = AD + DL$. Prove that the bisector of angle $BAD$ is perpendicular to the line $KL$.
Let $ABCD$ be a parallelogram with at least an angle not equal to $90^o$ and $k$ the circumcircle of the triangle $ABC$. Let $E$ be the diametrically opposite point of $B$. Show that the circumcircle of the triangle $ADE$ and $k$ have the same radius.
In the quadrilateral $ABCD$, $AB = BC = CD$ and $\angle BMC = 90^\circ$, where $M$ is the midpoint of $AD$. Determine the acute angle between the lines $AC$ and $BD$.
Let $ABC$ be a triangle, $P$ and $Q$ the intersections of the parallel line to $BC$ that passes through $A$ with the external angle bisectors of angles $B$ and $C$, respectively. The perpendicular to $BP$ at $P$ and the perpendicular to $CQ$ at $Q$ meet at $R$. Let $I$ be the incenter of $ABC$. Show that $AI = AR$.
Let $ ABC$ be a triangle with $ G$ as its centroid. Let $ P$ be a variable point on segment $ BC$. Points $ Q$ and $ R$ lie on sides $ AC$ and $ AB$ respectively, such that $ PQ \parallel AB$ and $ PR \parallel AC$. Prove that, as $ P$ varies along segment $ BC$, the circumcircle of triangle $ AQR$ passes through a fixed point $ X$ such that $ \angle BAG = \angle CAX$.
Let $ABC$ be a triangle, $O$ its circumcenter, $S$ its centroid, and $H$ its orthocenter. Denote by $A_1, B_1$, and $C_1$ the centers of the circles circumscribed about the triangles $CHB, CHA$, and $AHB$, respectively. Prove that the triangle $ABC$ is congruent to the triangle $A_1B_1C_1$ and that the nine-point circle of $\triangle ABC$ is also the nine-point circle of $\triangle A_1B_1C_1$.
Let $ABCD$ be a convex quadrilateral whose sides $AD$ and $BC$ are not parallel. Suppose that the circles with diameters $AB$ and $CD$ meet at points $E$ and $F$ inside the quadrilateral. Let $\omega_E$ be the circle through the feet of the perpendiculars from $E$ to the lines $AB,BC$ and $CD$. Let $\omega_F$ be the circle through the feet of the perpendiculars from $F$ to the lines $CD,DA$ and $AB$. Prove that the midpoint of the segment $EF$ lies on the line through the two intersections of $\omega_E$ and $\omega_F$.
[i]Proposed by Carlos Yuzo Shine, Brazil[/i]