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

2006 China Team Selection Test, 2

Let $\omega$ be the circumcircle of $\triangle{ABC}$. $P$ is an interior point of $\triangle{ABC}$. $A_{1}, B_{1}, C_{1}$ are the intersections of $AP, BP, CP$ respectively and $A_{2}, B_{2}, C_{2}$ are the symmetrical points of $A_{1}, B_{1}, C_{1}$ with respect to the midpoints of side $BC, CA, AB$. Show that the circumcircle of $\triangle{A_{2}B_{2}C_{2}}$ passes through the orthocentre of $\triangle{ABC}$.

2007 Finnish National High School Mathematics Competition, 1

Show: when a prime number is divided by $30,$ the remainder is either $1$ or a prime number. Is a similar claim true, when the divisor is $60$ or $90$?

2018 Romania Team Selection Tests, 3

Divide the plane into $1$x$1$ squares formed by the lattice points. Let$S$ be the set-theoretic union of a finite number of such cells, and let $a$ be a positive real number less than or equal to 1/4.Show that S can be covered by a finite number of squares satisfying the following three conditions: 1) Each square in the cover is an array of $1$x$1$ cells 2) The squares in the cover have pairwise disjoint interios and 3)For each square $Q$ in the cover the ratio of the area $S \cap Q$ to the area of Q is at least $a$ and at most $a {(\lfloor a^{-1/2} \rfloor)} ^2$

2014 Contests, 3

Given are 100 different positive integers. We call a pair of numbers [i]good[/i] if the ratio of these numbers is either 2 or 3. What is the maximum number of good pairs that these 100 numbers can form? (A number can be used in several pairs.) [i]Proposed by Alexander S. Golovanov, Russia[/i]

2014 AMC 12/AHSME, 12

Two circles intersect at points $A$ and $B$. The minor arcs $AB$ measure $30^\circ$ on one circle and $60^\circ$ on the other circle. What is the ratio of the area of the larger circle to the area of the smaller circle? $\textbf{(A) }2\qquad \textbf{(B) }1+\sqrt3\qquad \textbf{(C) }3\qquad \textbf{(D) }2+\sqrt3\qquad \textbf{(E) }4\qquad$

Croatia MO (HMO) - geometry, 2011.3

Triangle $ABC$ is given with its centroid $G$ and cicumcentre $O$ is such that $GO$ is perpendicular to $AG$. Let $A'$ be the second intersection of $AG$ with circumcircle of triangle $ABC$. Let $D$ be the intersection of lines $CA'$ and $AB$ and $E$ the intersection of lines $BA'$ and $AC$. Prove that the circumcentre of triangle $ADE$ is on the circumcircle of triangle $ABC$.

2013 Argentina National Olympiad, 2

In a convex quadrilateral $ABCD$ the angles $\angle A$ and $\angle C$ are equal and the bisector of $\angle B$ passes through the midpoint of the side $CD$. If it is known that $CD = 3AD$, calculate $\frac{AB}{BC}$.

2015 Baltic Way, 11

The diagonals of parallelogram $ABCD$ intersect at $E$ . The bisectors of $\angle DAE$ and $\angle EBC$ intersect at $F$. Assume $ECFD$ is a parellelogram . Determine the ratio $AB:AD$.

1994 AMC 8, 16

The perimeter of one square is $3$ times the perimeter of another square. The area of the larger square is how many times the area of the smaller square? $\text{(A)}\ 2 \qquad \text{(B)}\ 3 \qquad \text{(C)}\ 4 \qquad \text{(D)}\ 6 \qquad \text{(E)}\ 9$

2014 AMC 10, 16

In rectangle $ABCD$, $AB=1$, $BC=2$, and points $E$, $F$, and $G$ are midpoints of $\overline{BC}$, $\overline{CD}$, and $\overline{AD}$, respectively. Point $H$ is the midpoint of $\overline{GE}$. What is the area of the shaded region? [asy] import graph; size(9cm); pen dps = fontsize(10); defaultpen(dps); pair D = (0,0); pair F = (1/2,0); pair C = (1,0); pair G = (0,1); pair E = (1,1); pair A = (0,2); pair B = (1,2); pair H = (1/2,1); // do not look pair X = (1/3,2/3); pair Y = (2/3,2/3); draw(A--B--C--D--cycle); draw(G--E); draw(A--F--B); draw(D--H--C); filldraw(H--X--F--Y--cycle,grey); label("$A$",A,NW); label("$B$",B,NE); label("$C$",C,SE); label("$D$",D,SW); label("$E$",E,E); label("$F$",F,S); label("$G$",G,W); label("$H$",H,N); label("$\displaystyle\frac12$",(0.25,0),S); label("$\displaystyle\frac12$",(0.75,0),S); label("$1$",(1,0.5),E); label("$1$",(1,1.5),E); [/asy] $ \textbf{(A)}\ \dfrac1{12}\qquad\textbf{(B)}\ \dfrac{\sqrt3}{18}\qquad\textbf{(C)}\ \dfrac{\sqrt2}{12}\qquad\textbf{(D)}\ \dfrac{\sqrt3}{12}\qquad\textbf{(E)}\ \dfrac16 $

2008 Irish Math Olympiad, 5

A triangle $ ABC$ has an obtuse angle at $ B$. The perpindicular at $ B$ to $ AB$ meets $ AC$ at $ D$, and $ |CD| \equal{} |AB|$. Prove that $ |AD|^2 \equal{} |AB|.|BC|$ if and only if $ \angle CBD \equal{} 30^\circ$.

1985 ITAMO, 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]

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} $

1968 AMC 12/AHSME, 11

Tags: geometry , ratio
If an arc of $60^\circ$ on circle I has the same length as an arc of $45^\circ$ on circle II, the ratio of the area of circle I to that of circle II is: $\textbf{(A)}\ 16:9 \qquad \textbf{(B)}\ 9:16 \qquad \textbf{(C)}\ 4:3 \qquad \textbf{(D)}\ 3:4 \qquad \textbf{(E)}\ \text{None of these} $

2022 Turkey EGMO TST, 6

Let $x,y,z$ be positive real numbers satisfying the equations $$xyz=1\text{ and }\frac yz(y-x^2)+\frac zx(z-y^2)+\frac xy(x-z^2)=0$$ What is the minimum value of the ratio of the sum of the largest and smallest numbers among $x,y,z$ to the median of them.

2022 Kyiv City MO Round 2, Problem 3

Tags: ratio , geometry
Let $AH_A, BH_B, CH_C$ be the altitudes of triangle $ABC$. Prove that if $\frac{H_BC}{AC} = \frac{H_CA}{AB}$, then the line symmetric to $BC$ with respect to line $H_BH_C$ is tangent to the circumscribed circle of triangle $H_BH_CA$. [i](Proposed by Mykhailo Bondarenko)[/i]

2007 AIME Problems, 13

A square pyramid with base $ABCD$ and vertex $E$ has eight edges of length 4. A plane passes through the midpoints of $\overline{AE}$, $\overline{BC}$, and $\overline{CD}$. The plane's intersection with the pyramid has an area that can be expressed as $\sqrt{p}$. Find $p$.

2005 Flanders Junior Olympiad, 2

Starting with two points A and B, some circles and points are constructed as shown in the figure:[list][*]the circle with centre A through B [*]the circle with centre B through A [*]the circle with centre C through A [*]the circle with centre D through B [*]the circle with centre E through A [*]the circle with centre F through A [*]the circle with centre G through A[/list] [i][size=75](I think the wording is not very rigorous, you should assume intersections from the drawing)[/size][/i] Show that $M$ is the midpoint of $AB$. [img]https://cdn.artofproblemsolving.com/attachments/d/4/2352ab21cc19549f0381e88ddde9dce4299c2e.png[/img]

2010 Saudi Arabia IMO TST, 2

Points $M$ and $N$ are considered in the interior of triangle $ABC$ such that $\angle MAB = \angle NAC$ and $\angle MBA = \angle NBC$. Prove that $$\frac{AM \cdot AN}{AB \cdot AC}+ \frac{BM\cdot BN}{BA \cdot BC}+ \frac{CM \cdot CN }{CA \cdot CB}=1$$

2010 Sharygin Geometry Olympiad, 25

For two different regular icosahedrons it is known that some six of their vertices are vertices of a regular octahedron. Find the ratio of the edges of these icosahedrons.

2008 iTest Tournament of Champions, 3

Tags: function , ratio
Let $\phi = \tfrac{1+\sqrt 5}2$ be the positive root of $x^2=x+1$. Define a function $f:\mathbb N\to\mathbb N$ by \begin{align*} f(0) &= 1\\ f(2x) &= \lfloor\phi f(x)\rfloor\\ f(2x+1) &= f(2x) + f(x). \end{align*} Find the remainder when $f(2007)$ is divided by $2008$.

2012 China Second Round Olympiad, 4

Let $F$ be the focus of parabola $y^2=2px(p>0)$, with directrix $l$ and two points $A,B$ on it. Knowing that $\angle AFB=\frac{\pi}{3}$, find the maximal value of $\frac{|MN|}{|AB|}$, where $M$ is the midpoint of $AB$ and $N$ is the projection of $M$ to $l$.

2006 IMO Shortlist, 2

Let $ ABCD$ be a trapezoid with parallel sides $ AB > CD$. Points $ K$ and $ L$ lie on the line segments $ AB$ and $ CD$, respectively, so that $AK/KB=DL/LC$. Suppose that there are points $ P$ and $ Q$ on the line segment $ KL$ satisfying \[\angle{APB} \equal{} \angle{BCD}\qquad\text{and}\qquad \angle{CQD} \equal{} \angle{ABC}.\] Prove that the points $ P$, $ Q$, $ B$ and $ C$ are concyclic. [i]Proposed by Vyacheslev Yasinskiy, Ukraine[/i]

1984 IMO Longlists, 54

Tags: ratio , geometry
Let $P$ be a convex planar polygon with equal angles. Let $l_1,\cdots, l_n$ be its sides. Show that a necessary and sufficient condition for $P$ to be regular is that the sum of the ratios $\frac{l_i}{l_{i+1}} (i = 1,\cdots, n; l_{n+1}= l_1)$ equals the number of sides.

1999 Romania National Olympiad, 4

Tags: geometry , ratio
In the triangle $ABC$, let $D \in (BC)$, $E \in (AB)$, $EF \parallel BC$, $F \in (AC)$, $EG\parallel AD$, $G\in (BC)$ and $M,N$ be the midpoints of $(AD)$ and $(BC)$, respectively. Prove that: a) $\frac{EF}{BC}+\frac{EG}{AD}=1$ b) the midpoint of $[FG]$ lies on the line $ MN$.