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

2009 AMC 8, 11

Tags:
The Amaco Middle School bookstore sells pencils costing a whole number of cents. Some seventh graders each bought a pencil, paying a total of $ \$1.43$. Some of the $ 30$ sixth graders each bought a pencil, and they paid a total of $ \$1.95$. How many more sixth graders than seventh graders bought a pencil? $ \textbf{(A)}\ 1 \qquad \textbf{(B)}\ 2 \qquad \textbf{(C)}\ 3 \qquad \textbf{(D)}\ 4 \qquad \textbf{(E)}\ 5$

2005 Finnish National High School Mathematics Competition, 3

Solve the group of equations: \[\begin{cases} (x + y)^3 = z \\ (y + z)^3 = x \\ (z + x)^3 = y \end{cases}\]

2023 CMIMC Integration Bee, 13

\[\int_0^1 2^{\sqrt x}\log^2(2)+\log^2(1+x)\,\mathrm dx\] [i]Proposed by Thomas Lam[/i]

2010 AMC 8, 9

Tags: percent
Ryan got $80\%$ of the problems on a $25$-problem test, $90\%$ on a $40$-problem test, and $70\%$ on a $10$-problem test. What percent of all problems did Ryan answer correctly? $ \textbf{(A)}\ 64 \qquad\textbf{(B)}\ 75\qquad\textbf{(C)}\ 80\qquad\textbf{(D)}\ 84\qquad\textbf{(E)}\ 86 $

2013 India National Olympiad, 3

Let $a,b,c,d \in \mathbb{N}$ such that $a \ge b \ge c \ge d $. Show that the equation $x^4 - ax^3 - bx^2 - cx -d = 0$ has no integer solution.

2017 CMIMC Computer Science, 6

Define a self-balanced tree to be a tree such that for any node, the size of the left subtree is within 1 of the size of the right subtree. How many balanced trees are there of size 2046?

1985 Traian Lălescu, 2.1

Tags: equation , algebra , floor
Solve $ \quad 5\lfloor x^2\rfloor -2\lfloor x\rfloor +2=0. $

1992 National High School Mathematics League, 7

For real numbers $x,y,z$, $3x,4y,5z$ are geometric series, $\frac{1}{x},\frac{1}{y},\frac{1}{z}$ are arithmetic sequence. Then $\frac{x}{z}+\frac{z}{x}=$________.

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

Tags:
A bowling contest consists of several series. Mary got 185 points in her previous series and thereby increased her average score per series from 176 to 177 points. How many points would Mary need in her next series to increase her average to 178? $ \text{(A)}\ 184 \qquad \text{(B)}\ 185 \qquad \text{(C)}\ 186 \qquad \text{(D)}\ 187 \qquad \text{(E)}\ 188$

2023 Regional Competition For Advanced Students, 2

Let $ABCD$ be a rhombus with $\angle BAD < 90^o$. The circle passing through $D$ with center $A$ intersects the line $CD$ a second time in point $E$. Let $S$ be the intersection of the lines $BE$ and $AC$. Prove that the points $A$, $S$, $D$ and $E$ lie on a circle. [i](Karl Czakler)[/i]

2021 China Team Selection Test, 3

Given positive integer $n$. Prove that for any integers $a_1,a_2,\cdots,a_n,$ at least $\lceil \tfrac{n(n-6)}{19} \rceil$ numbers from the set $\{ 1,2, \cdots, \tfrac{n(n-1)}{2} \}$ cannot be represented as $a_i-a_j (1 \le i, j \le n)$.

2021 AMC 10 Spring, 12

Tags:
Two right circular cones with vertices facing down as shown in the figure below contain the same amount of liquid. The radii of the tops of the liquid surfaces are $3 \text{ cm}$ and $6 \text{ cm}$. Into each cone is dropped a spherical marble of radius $1 \text{ cm}$, which sinks to the bottom and is completely submerged without spilling any liquid. What is the ratio of the rise of the liquid level in the narrow cone to the rise of the liquid level in the wide cone? $\textbf{(A) }1:1 \qquad \textbf{(B) }47:43 \qquad \textbf{(C) }2:1 \qquad \textbf{(D) }40:13 \qquad \textbf{(E) }4:1$ [asy] size(350); defaultpen(linewidth(0.8)); real h1 = 10, r = 3.1, s=0.75; pair P = (r,h1), Q = (-r,h1), Pp = s * P, Qp = s * Q; path e = ellipse((0,h1),r,0.9), ep = ellipse((0,h1*s),r*s,0.9); draw(ellipse(origin,r*(s-0.1),0.8)); fill(ep,gray(0.8)); fill(origin--Pp--Qp--cycle,gray(0.8)); draw((-r,h1)--(0,0)--(r,h1)^^e); draw(subpath(ep,0,reltime(ep,0.5)),linetype("4 4")); draw(subpath(ep,reltime(ep,0.5),reltime(ep,1))); draw(Qp--(0,Qp.y),Arrows(size=8)); draw(origin--(0,12),linetype("4 4")); draw(origin--(r*(s-0.1),0)); label("$3$",(-0.9,h1*s),N,fontsize(10)); real h2 = 7.5, r = 6, s=0.6, d = 14; pair P = (d+r-0.05,h2-0.15), Q = (d-r+0.05,h2-0.15), Pp = s * P + (1-s)*(d,0), Qp = s * Q + (1-s)*(d,0); path e = ellipse((d,h2),r,1), ep = ellipse((d,h2*s+0.09),r*s,1); draw(ellipse((d,0),r*(s-0.1),0.8)); fill(ep,gray(0.8)); fill((d,0)--Pp--Qp--cycle,gray(0.8)); draw(P--(d,0)--Q^^e); draw(subpath(ep,0,reltime(ep,0.5)),linetype("4 4")); draw(subpath(ep,reltime(ep,0.5),reltime(ep,1))); draw(Qp--(d,Qp.y),Arrows(size=8)); draw((d,0)--(d,10),linetype("4 4")); draw((d,0)--(d+r*(s-0.1),0)); label("$6$",(d-r/4,h2*s-0.06),N,fontsize(10)); [/asy]

2007 Sharygin Geometry Olympiad, 3

Tags: geometry , triangle
Segments connecting an inner point of a convex non-equilateral n-gon to its vertices divide the n-gon into n equal triangles. What is the least possible n?

1985 Iran MO (2nd round), 5

Let $f: \mathbb R \to \mathbb R$ and $g: \mathbb R \to \mathbb R$ be two functions satisfying \[\forall x,y \in \mathbb R: \begin{cases} f(x+y)=f(x)f(y),\\ f(x)= x g(x)+1\end{cases} \quad \text{and} \quad \lim_{x \to 0} g(x)=1.\] Find the derivative of $f$ in an arbitrary point $x.$

1978 Poland - Second Round, 5

Prove that there is no inclined plane such that any tetrahedron placed arbitrarily with a certain face on the plane will not fall over. It means the following: Given a plane $ \pi $ and a line $ l $ not perpendicular to it. Prove that there is a tetrahedron $ T $ such that for each of its faces $ S $ there is in the plane $ \pi $ a triangle $ ABC $ congruent to $ S $ and there is a point $ D $ such that the tetrahedron $ ABCD $ congruent to $ T $ and the line parallel to $ l $ passing through the center of gravity of the tetrahedron $ ABCD $ does not intersect the triangle $ ABC $. Note. The center of gravity of a tetrahedron is the intersection point of the segments connecting the centers of gravity of the faces of this tetrahedron with the opposite vertices (it is known that such a point always exists).

2024 LMT Fall, 18

Tags: guts
In the electoral college, each of $51$ places get some positive number of electoral votes for a nationwide total of $538$. Thus, $270$ electoral votes guarantees a win. Across all distributions of electoral votes to each place, let $M$ be the maximum number of sets of places that combine to have at least $270$ electoral votes. Find $M$.

2021 JHMT HS, 7

A line passing through $(20,21)$ intersects the curve $y = x^3-2x^2-3x+5$ at three distinct points $A, B,$ and $C,$ such that $B$ is the midpoint of $\overline{AC}$. The slope of this line is $\tfrac{m}{n}$, where $m$ and $n$ are relatively prime positive integers. Find $m + n$.

2018 Switzerland - Final Round, 6

Let $k$ be the incircle of the triangle $ABC$ with the center of the incircle $I$. The circle $k$ touches the sides $BC, CA$ and $AB$ in points $D, E$ and $F$. Let $G$ be the intersection of the straight line $AI$ and the circle $k$, which lies between $A$ and $I$. Assume $BE$ and $FG$ are parallel. Show that $BD = EF$.

2000 Moldova National Olympiad, Problem 1

Suppose that real numbers $x,y,z$ satisfy $$\frac{\cos x+\cos y+\cos z}{\cos(x+y+z)}=\frac{\sin x+\sin y+\sin z}{\sin(x+y+z)}=p.$$Prove that $\cos(x+y)+\cos(y+z)+\cos(x+z)=p$.

2020 LMT Fall, 29

Tags:
Find the number of pairs of integers $(a,b)$ with $0 \le a,b \le 2019$ where $ax \equiv b \pmod{2020}$ has exactly $2$ integer solutions $0 \le x \le 2019$. [i]Proposed by Richard Chen[/i]

2014 Miklós Schweitzer, 1

Let $n$ be a positive integer. Let $\mathcal{F}$ be a family of sets that contains more than half of all subsets of an $n$-element set $X$. Prove that from $\mathcal{F}$ we can select $\lceil \log_2 n \rceil + 1$ sets that form a separating family on $X$, i.e., for any two distinct elements of $X$ there is a selected set containing exactly one of the two elements. Moderator says: http://www.artofproblemsolving.com/Forum/viewtopic.php?f=41&t=614827&hilit=Schweitzer+2014+separating

2002 Greece Junior Math Olympiad, 4

Prove that $1\cdot2\cdot3\cdots 2002<\left(\frac{2003}{2}\right)^{2002}.$

2016 Dutch IMO TST, 4

Tags: geometry , circles , fixed
Let $\Gamma_1$ be a circle with centre $A$ and $\Gamma_2$ be a circle with centre $B$, with $A$ lying on $\Gamma_2$. On $\Gamma_2$ there is a (variable) point $P$ not lying on $AB$. A line through $P$ is a tangent of $\Gamma_1$ at $S$, and it intersects $\Gamma_2$ again in $Q$, with $P$ and $Q$ lying on the same side of $AB$. A different line through $Q$ is tangent to $\Gamma_1$ at $T$. Moreover, let $M$ be the foot of the perpendicular to $AB$ through $P$. Let $N$ be the intersection of $AQ$ and $MT$. Show that $N$ lies on a line independent of the position of $P$ on $\Gamma_2$.

2024 pOMA, 4

Tags: geometry
Let $ABC$ be a triangle, and let $D$ and $E$ be two points on side $BC$ such that $BD = EC$. Let $X$ be a point on segment $AD$ such that $CX$ is parallel to the bisector of $\angle ADB$. Similarly, let $Y$ be a point on segment $AD$ such that $BY$ is parallel to the bisector of $\angle ADC$. Prove that $DE = XY$.

1990 ITAMO, 2

In a triangle $ABC$, the bisectors of the angles at $B$ and $A$ meet the opposite sides at $P$ and $Q$, respectively. Suppose that the circumcircle of triangle $PQC$ passes through the incenter $R $ of $\vartriangle ABC$. Given that $PQ = l$, find all sides of triangle $PQR$.