Found problems: 730
2021 AMC 10 Spring, 6
Chantal and Jean start hiking from a trailhead toward a fire tower. Jean is wearing a heavy backpack and walks slower. Chantal starts walking at $4$ miles per hour. Halfway to the tower, the trail becomes really steep, and Chantal slows down to $2$ miles per hour. After reaching the tower, she immediately turns around and descends the steep part of the trail at $3$ miles per hour. She meets Jean at the halfway point. What was Jean's average speed, in miles per hour, until they meet?
$\textbf{(A)}~\frac{12}{13}\qquad \textbf{(B)}~1\qquad \textbf{(C)}~\frac{13}{12}\qquad \textbf{(D)}~\frac{24}{13}\qquad \textbf{(E)}~2$
2010 AMC 12/AHSME, 19
Each of 2010 boxes in a line contains a single red marble, and for $ 1 \le k \le 2010$, the box in the $ kth$ position also contains $ k$ white marbles. Isabella begins at the first box and successively draws a single marble at random from each box, in order. She stops when she first draws a red marble. Let $ P(n)$ be the probability that Isabella stops after drawing exactly $ n$ marbles. What is the smallest value of $ n$ for which $ P(n) < \frac {1}{2010}$?
$ \textbf{(A)}\ 45 \qquad
\textbf{(B)}\ 63 \qquad
\textbf{(C)}\ 64 \qquad
\textbf{(D)}\ 201 \qquad
\textbf{(E)}\ 1005$
2023 AMC 10, 6
An integer is assigned to each vertex of a cube. The value of an edge is defined to be the sum of the values of the two vertices it touches, and the value of a face is defined to be the sum of the values of the four edges surrounding it. The value of the cube is defined as the sum of the values of its six faces. Suppose the sum of the integers assigned to the vertices is $21$. What is the value of the cube?
$\textbf{(A)}~42\qquad\textbf{(B)}~63\qquad\textbf{(C)}~84\qquad\textbf{(D)}~126\qquad\textbf{(E)}~252$
2022 AMC 10, 4
In some countries, automobile fuel efficiency is measured in liters per $100$ kilometers while other countries use miles per gallon. Suppose that $1$ kilometer equals $m$ miles, and $1$ gallon equals $\ell$ liters. Which of the following gives the fuel efficiency in liters per $100$ kilometers for a car that gets $x$ miles per gallon?
$\textbf{(A) } \frac{x}{100\ell m} \qquad \textbf{(B) } \frac{x\ell m}{100} \qquad \textbf{(C) } \frac{\ell m}{100x} \qquad \textbf{(D) } \frac{100}{x\ell m} \qquad \textbf{(E) } \frac{100\ell m}{x}$
2019 AMC 10, 25
For how many integers $n$ between $1$ and $50$, inclusive, is
\[
\frac{(n^2-1)!}{(n!)^n}
\]an integer? (Recall that $0! = 1$.)
$\textbf{(A) } 31 \qquad \textbf{(B) } 32 \qquad \textbf{(C) } 33 \qquad \textbf{(D) } 34 \qquad \textbf{(E) } 35$
2013 AMC 12/AHSME, 1
Square $ ABCD $ has side length $ 10 $. Point $ E $ is on $ \overline{BC} $, and the area of $ \bigtriangleup ABE $ is $ 40 $. What is $ BE $?
$\textbf{(A)} \ 4 \qquad \textbf{(B)} \ 5 \qquad \textbf{(C)} \ 6 \qquad \textbf{(D)} \ 7 \qquad \textbf{(E)} \ 8 \qquad $
[asy]
pair A,B,C,D,E;
A=(0,0);
B=(0,50);
C=(50,50);
D=(50,0);
E = (30,50);
draw(A--B);
draw(B--E);
draw(E--C);
draw(C--D);
draw(D--A);
draw(A--E);
dot(A);
dot(B);
dot(C);
dot(D);
dot(E);
label("A",A,SW);
label("B",B,NW);
label("C",C,NE);
label("D",D,SE);
label("E",E,N);
[/asy]
2018 AMC 12/AHSME, 17
Farmer Pythagoras has a field in the shape of a right triangle. The right triangle's legs have lengths 3 and 4 units. In the corner where those sides meet at a right angle, he leaves a small unplanted square $S$ so that from the air it looks like the right angle symbol. The rest of the field is planted. The shortest distance from $S$ to the hypotenuse is 2 units. What fraction of the field is planted?
[asy]
draw((0,0)--(4,0)--(0,3)--(0,0));
draw((0,0)--(0.3,0)--(0.3,0.3)--(0,0.3)--(0,0));
fill(origin--(0.3,0)--(0.3,0.3)--(0,0.3)--cycle, gray);
label("$4$", (2,0), N);
label("$3$", (0,1.5), E);
label("$2$", (.8,1), E);
label("$S$", (0,0), NE);
draw((0.3,0.3)--(1.4,1.9), dashed);
[/asy]
$\textbf{(A) } \frac{25}{27} \qquad \textbf{(B) } \frac{26}{27} \qquad \textbf{(C) } \frac{73}{75} \qquad \textbf{(D) } \frac{145}{147} \qquad \textbf{(E) } \frac{74}{75} $
2021 AMC 12/AHSME Fall, 2
What is the area of the shaded figure shown below?
[asy]
size(200);
defaultpen(linewidth(0.4)+fontsize(12));
pen s = linewidth(0.8)+fontsize(8);
pair O,X,Y;
O = origin;
X = (6,0);
Y = (0,5);
fill((1,0)--(3,5)--(5,0)--(3,2)--cycle, palegray+opacity(0.2));
for (int i=1; i<7; ++i)
{
draw((i,0)--(i,5), gray+dashed);
label("${"+string(i)+"}$", (i,0), 2*S);
if (i<6)
{
draw((0,i)--(6,i), gray+dashed);
label("${"+string(i)+"}$", (0,i), 2*W);
}
}
label("$0$", O, 2*SW);
draw(O--X+(0.15,0), EndArrow);
draw(O--Y+(0,0.15), EndArrow);
draw((1,0)--(3,5)--(5,0)--(3,2)--(1,0), black+1.5);
[/asy]
2023 AMC 10, 9
The numbers $16$ and $25$ are a pair of consecutive perfect squares whose difference is $9$. How many pairs of consecutive positive perfect squares have a difference of less than or equal to $2023$?
$\textbf{(A) } 674 \qquad \textbf{(B) } 1011 \qquad \textbf{(C) } 1010 \qquad \textbf{(D) } 2019 \qquad \textbf{(E) } 2017$
2017 AMC 12/AHSME, 4
Jerry and Silvia wanted to go from the southwest corner of a square field to the northeast corner. Jerry walked due east and then due north to reach the goal, but Silvia headed northeast and reached the goal walking in a straight line. Which of the following is closest to how much shorter Silvia's trip was, compared to Jerry's trip?
$\textbf{(A)}\ 30 \%\qquad\textbf{(B)}\ 40 \%\qquad\textbf{(C)}\ 50 \%\qquad\textbf{(D)}\ 60 \%\qquad\textbf{(E)}\ 70 \%$
2022 AMC 12/AHSME, 18
Each square in a $5 \times 5$ grid is either filled or empty, and has up to eight adjacent neighboring squares, where neighboring squares share either a side or a corner. The grid is transformed by the following rules:
[list]
[*] Any filled square with two or three filled neighbors remains filled.
[*] Any empty square with exactly three filled neighbors becomes a filled square.
[*] All other squares remain empty or become empty.
[/list]
A sample transformation is shown in the figure below.
[asy]
import geometry;
unitsize(0.6cm);
void ds(pair x) {
filldraw(x -- (1,0) + x -- (1,1) + x -- (0,1)+x -- cycle,gray+opacity(0.5),invisible);
}
ds((1,1));
ds((2,1));
ds((3,1));
ds((1,3));
for (int i = 0; i <= 5; ++i) {
draw((0,i)--(5,i));
draw((i,0)--(i,5));
}
label("Initial", (2.5,-1));
draw((6,2.5)--(8,2.5),Arrow);
ds((10,2));
ds((11,1));
ds((11,0));
for (int i = 0; i <= 5; ++i) {
draw((9,i)--(14,i));
draw((i+9,0)--(i+9,5));
}
label("Transformed", (11.5,-1));
[/asy]
Suppose the $5 \times 5$ grid has a border of empty squares surrounding a $3 \times 3$ subgrid. How many initial configurations will lead to a transformed grid consisting of a single filled square in the center after a single transformation? (Rotations and reflections of the same configuration are considered different.)
[asy]
import geometry;
unitsize(0.6cm);
void ds(pair x) {
filldraw(x -- (1,0) + x -- (1,1) + x -- (0,1)+x -- cycle,gray+opacity(0.5),invisible);
}
for (int i = 1; i < 4; ++ i) {
for (int j = 1; j < 4; ++j) {
label("?",(i + 0.5, j + 0.5));
}
}
for (int i = 0; i <= 5; ++i) {
draw((0,i)--(5,i));
draw((i,0)--(i,5));
}
label("Initial", (2.5,-1));
draw((6,2.5)--(8,2.5),Arrow);
ds((11,2));
for (int i = 0; i <= 5; ++i) {
draw((9,i)--(14,i));
draw((i+9,0)--(i+9,5));
}
label("Transformed", (11.5,-1));
[/asy]
$$\textbf{(A) 14}~\textbf{(B) 18}~\textbf{(C) 22}~\textbf{(D) 26}~\textbf{(E) 30}$$
2021 AMC 12/AHSME Fall, 5
Call a fraction $\frac{a}{b}$, not necessarily in the simplest form [i]special[/i] if $a$ and $b$ are positive integers whose sum is $15$. How many distinct integers can be written as the sum of two, not necessarily different, special fractions?
$\textbf{(A)}\ 9 \qquad\textbf{(B)}\ 10 \qquad\textbf{(C)}\ 11 \qquad\textbf{(D)}\
12 \qquad\textbf{(E)}\ 13$
2019 AMC 10, 23
Points $A(6,13)$ and $B(12,11)$ lie on circle $\omega$ in the plane. Suppose that the tangent lines to $\omega$ at $A$ and $B$ intersect at a point on the $x$-axis. What is the area of $\omega$?
$\textbf{(A) }\frac{83\pi}{8}\qquad\textbf{(B) }\frac{21\pi}{2}\qquad\textbf{(C) }
\frac{85\pi}{8}\qquad\textbf{(D) }\frac{43\pi}{4}\qquad\textbf{(E) }\frac{87\pi}{8}$
2020 AMC 10, 23
Let $T$ be the triangle in the coordinate plane with vertices $\left(0,0\right)$, $\left(4,0\right)$, and $\left(0,3\right)$. Consider the following five isometries (rigid transformations) of the plane: rotations of $90^{\circ}$, $180^{\circ}$, and $270^{\circ}$ counterclockwise around the origin, reflection across the $x$-axis, and reflection across the $y$-axis. How many of the $125$ sequences of three of these transformations (not necessarily distinct) will return $T$ to its original position? (For example, a $180^{\circ}$ rotation, followed by a reflection across the $x$-axis, followed by a reflection across the $y$-axis will return $T$ to its original position, but a $90^{\circ}$ rotation, followed by a reflection across the $x$-axis, followed by another reflection across the $x$-axis will not return $T$ to its original position.)
$\textbf{(A) } 12\qquad\textbf{(B) } 15\qquad\textbf{(C) }17 \qquad\textbf{(D) }20 \qquad\textbf{(E) }25$
2016 AMC 10, 8
What is the tens digit of $2015^{2016}-2017?$
$\textbf{(A)}\ 0 \qquad
\textbf{(B)}\ 1 \qquad
\textbf{(C)}\ 3 \qquad
\textbf{(D)}\ 5 \qquad
\textbf{(E)}\ 8$
2024 AMC 10, 4
Balls numbered $1,2,3,\ldots$ are deposited in $5$ bins, labeled $A,B,C,D,$ and $E$, using the following procedure. Ball $1$ is deposited in bin $A$, and balls $2$ and $3$ are deposted in $B$. The next three balls are deposited in bin $C$, the next $4$ in bin $D$, and so on, cycling back to bin $A$ after balls are deposited in bin $E$. (For example, $22,23,\ldots,28$ are despoited in bin $B$ at step 7 of this process.) In which bin is ball $2024$ deposited?
$\textbf{(A) }A\qquad\textbf{(B) }B\qquad\textbf{(C) }C\qquad\textbf{(D) }D\qquad\textbf{(E) }E$
2018 AMC 10, 24
Let $ABCDEF$ be a regular hexagon with side length $1$. Denote by $X, Y,$ and $Z$ the midpoints of $\overline{AB}$, $\overline{CD}$, and $\overline{EF}$, respectively. What is the area of the convex hexagon whose interior is the intersection of the interiors of $\triangle ACE$ and $\triangle XYZ$?
$\textbf{(A) }\dfrac{3}{8}\sqrt{3}\qquad\textbf{(B) }\dfrac{7}{16}\sqrt{3}\qquad\textbf{(C) }\dfrac{15}{32}\sqrt{3}\qquad\textbf{(D) }\dfrac{1}{2}\sqrt{3}\qquad\textbf{(E) }\dfrac{9}{16}\sqrt{3}$
2021 AMC 10 Fall, 24
Each of the $12$ edges of a cube is labeled $0$ or $1$. Two labelings are considered different even if one can be obtained from the other by a sequence of one or more rotations and/or reflections. For how many such labelings is the sum of the labels on the edges of each of the $6$ faces of the cube equal to $2?$
$\textbf{(A) }8\qquad\textbf{(B) }10\qquad\textbf{(C) }12\qquad\textbf{(D) }16\qquad\textbf{(E) }20$
2017 AMC 12/AHSME, 1
Pablo buys popsicles for his friends. The store sells single popsicles for $\$1$ each, 3-popsicle boxes for $\$2$, and 5-popsicle boxes for $\$3$. What is the greatest number of popsicles that Pablo can buy with $\$8$?
$\textbf{(A)}\ 8\qquad\textbf{(B)}\ 11\qquad\textbf{(C)}\ 12\qquad\textbf{(D)}\ 13\qquad\textbf{(E)}\ 15$
2023 AMC 10, 13
Abdul and Chiang are standing $48$ feet apart in a field. Bharat is standing in the same field as far from Abdul as possible so that the angle formed by his lines of sight to Abdul and Chiang measures $60^{\circ}.$ What is the square of the distance (in feet) between Abdul and Bharat?
$\textbf{(A) } 1728 \qquad\textbf{(B) } 2601 \qquad\textbf{(C) } 3072 \qquad\textbf{(D) } 4608 \qquad\textbf{(E) } 6912$
2016 AMC 12/AHSME, 13
Let $N$ be a positive multiple of $5$. One red ball and $N$ green balls are arranged in a line in random order. Let $P(N)$ be the probability that at least $\tfrac{3}{5}$ of the green balls are on the same side of the red ball. Observe that $P(5)=1$ and that $P(N)$ approaches $\tfrac{4}{5}$ as $N$ grows large. What is the sum of the digits of the least value of $N$ such that $P(N) < \tfrac{321}{400}$?
$\textbf{(A) } 12 \qquad \textbf{(B) } 14 \qquad \textbf{(C) }16 \qquad \textbf{(D) } 18 \qquad \textbf{(E) } 20$
2023 AMC 10, 7
Janet rolls a standard 6-sided die 4 times and keeps a running total of the numbers she rolls. What is the probability that at some point, her running total will equal 3?
$\textbf{(A) }\frac{2}{9}\qquad\textbf{(B) }\frac{49}{216}\qquad\textbf{(C) }\frac{25}{108}\qquad\textbf{(D) }\frac{17}{72}\qquad\textbf{(E) }\frac{13}{54}$
2017 AMC 10, 10
The lines with equations $ax-2y=c$ and $2x+by=-c$ are perpendicular and intersect at $(1, -5)$. What is $c$?
$\textbf{(A) } -13\qquad \textbf{(B) } -8\qquad \textbf{(C) } 2\qquad \textbf{(D) } 8\qquad \textbf{(E) } 13$
2017 AMC 10, 14
Every week Roger pays for a movie ticket and a soda out of his allowance. Last week, Roger's allowance was $A$ dollars. The cost of his movie ticket was $20\%$ of the difference between $A$ and the cost of his soda, while the cost of his soda was $5\%$ of the difference between $A$ and the cost of his movie ticket. To the nearest whole percent, what fraction of $A$ did Roger pay for his movie ticket and soda?
$ \textbf{(A) }9\%\qquad \textbf{(B) } 19\%\qquad \textbf{(C) } 22\%\qquad \textbf{(D) } 23\%\qquad \textbf{(E) }25\%$
2024 AMC 10, 2
What is $10! - 7! \cdot 6!$?
$
\textbf{(A) }-120 \qquad
\textbf{(B) }0 \qquad
\textbf{(C) }120 \qquad
\textbf{(D) }600 \qquad
\textbf{(E) }720 \qquad
$