Difference between revisions of "2020 AMC 8 Problems"
(→Problem 22) |
MRENTHUSIASM (talk | contribs) |
||
(154 intermediate revisions by 63 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{AMC8 Problems|year=2020|}} | ||
==Problem 1== | ==Problem 1== | ||
− | Luka is making lemonade to sell at a school fundraiser. His recipe requires <math>4</math> times as much water as sugar and twice as much sugar as lemon juice. He uses <math>3</math> cups of lemon juice. How many cups of water does he need? | + | Luka is making lemonade to sell at a school fundraiser. His recipe requires <math>4</math> times as much water as sugar and twice as much sugar as lemon juice. He uses <math>3</math> cups of lemon juice. How many cups of water does he need? |
<math>\textbf{(A) } 6\qquad\textbf{(B) } 8\qquad\textbf{(C) } 12\qquad\textbf{(D) } 18\qquad\textbf{(E) } 24\qquad</math> | <math>\textbf{(A) } 6\qquad\textbf{(B) } 8\qquad\textbf{(C) } 12\qquad\textbf{(D) } 18\qquad\textbf{(E) } 24\qquad</math> | ||
Line 15: | Line 16: | ||
==Problem 3== | ==Problem 3== | ||
Carrie has a rectangular garden that measures <math>6</math> feet by <math>8</math> feet. She plants the entire garden with strawberry plants. Carrie is able to plant <math>4</math> strawberry plants per square foot, and she harvests an average of <math>10</math> strawberries per plant. How many strawberries can she expect to harvest? | Carrie has a rectangular garden that measures <math>6</math> feet by <math>8</math> feet. She plants the entire garden with strawberry plants. Carrie is able to plant <math>4</math> strawberry plants per square foot, and she harvests an average of <math>10</math> strawberries per plant. How many strawberries can she expect to harvest? | ||
− | |||
<math>\textbf{(A) }560 \qquad \textbf{(B) }960 \qquad \textbf{(C) }1120 \qquad \textbf{(D) }1920 \qquad \textbf{(E) }3840</math> | <math>\textbf{(A) }560 \qquad \textbf{(B) }960 \qquad \textbf{(C) }1120 \qquad \textbf{(D) }1920 \qquad \textbf{(E) }3840</math> | ||
Line 22: | Line 22: | ||
==Problem 4== | ==Problem 4== | ||
Three hexagons of increasing size are shown below. Suppose the dot pattern continues so that each successive hexagon contains one more band of dots. How many dots are in the next hexagon? | Three hexagons of increasing size are shown below. Suppose the dot pattern continues so that each successive hexagon contains one more band of dots. How many dots are in the next hexagon? | ||
+ | |||
<asy> | <asy> | ||
− | // diagram by SirCalcsALot | + | // diagram by SirCalcsALot, edited by MRENTHUSIASM |
size(250); | size(250); | ||
− | + | path p = scale(0.8)*unitcircle; | |
− | + | pair[] A; | |
− | |||
− | |||
− | |||
− | pair | ||
pen grey1 = rgb(100/256, 100/256, 100/256); | pen grey1 = rgb(100/256, 100/256, 100/256); | ||
pen grey2 = rgb(183/256, 183/256, 183/256); | pen grey2 = rgb(183/256, 183/256, 183/256); | ||
− | + | for (int i=0; i<7; ++i) { A[i] = rotate(60*i)*(1,0);} | |
− | for (int i = 0; i < | + | path hex = A[0]--A[1]--A[2]--A[3]--A[4]--A[5]--cycle; |
− | + | fill(p,grey1); | |
− | + | draw(scale(1.25)*hex,black+linewidth(1.25)); | |
− | fill( | + | pair S = 6A[0]+2A[1]; |
− | for (int i = 0; i < 6; ++i) { | + | fill(shift(S)*p,grey1); |
− | fill( | + | for (int i=0; i<6; ++i) { fill(shift(S+2*A[i])*p,grey2);} |
− | draw( | + | draw(shift(S)*scale(3.25)*hex,black+linewidth(1.25)); |
− | + | pair T = 16A[0]+4A[1]; | |
− | fill( | + | fill(shift(T)*p,grey1); |
− | for (int i = 0; i < 6; ++i) { | + | for (int i=0; i<6; ++i) { |
− | fill( | + | fill(shift(T+2*A[i])*p,grey2); |
− | fill( | + | fill(shift(T+4*A[i])*p,grey1); |
− | fill( | + | fill(shift(T+2*A[i]+2*A[i+1])*p,grey1); |
− | |||
} | } | ||
+ | draw(shift(T)*scale(5.25)*hex,black+linewidth(1.25)); | ||
</asy> | </asy> | ||
Line 56: | Line 53: | ||
==Problem 5== | ==Problem 5== | ||
− | Three fourths of a pitcher is filled with pineapple juice. The pitcher is emptied by pouring an equal amount of juice into each of <math>5</math> cups. What percent of the total capacity of the pitcher did each cup receive? | + | Three fourths of a pitcher is filled with pineapple juice. The pitcher is emptied by pouring an equal amount of juice into each of <math>5</math> cups. What percent of the total capacity of the pitcher did each cup receive? |
<math>\textbf{(A) }5 \qquad \textbf{(B) }10 \qquad \textbf{(C) }15 \qquad \textbf{(D) }20 \qquad \textbf{(E) }25</math> | <math>\textbf{(A) }5 \qquad \textbf{(B) }10 \qquad \textbf{(C) }15 \qquad \textbf{(D) }20 \qquad \textbf{(E) }25</math> | ||
Line 195: | Line 192: | ||
==Problem 12== | ==Problem 12== | ||
For a positive integer <math>n,</math> the factorial notation <math>n!</math> represents the product of the integers | For a positive integer <math>n,</math> the factorial notation <math>n!</math> represents the product of the integers | ||
− | from <math>n</math> to <math>1 | + | from <math>n</math> to <math>1</math>. (For example, <math>6! = 6 \cdot 5 \cdot 4 \cdot 3 \cdot 2 \cdot 1</math>.) What value of <math>N</math> satisfies the following equation? |
<cmath>5! \cdot 9! = 12 \cdot N!</cmath> | <cmath>5! \cdot 9! = 12 \cdot N!</cmath> | ||
<math>\textbf{(A) }10 \qquad \textbf{(B) }11 \qquad \textbf{(C) }12 \qquad \textbf{(D) }13 \qquad \textbf{(E) }14</math> | <math>\textbf{(A) }10 \qquad \textbf{(B) }11 \qquad \textbf{(C) }12 \qquad \textbf{(D) }13 \qquad \textbf{(E) }14</math> | ||
Line 217: | Line 214: | ||
pen shortdashed=linetype(new real[] {6,6}); | pen shortdashed=linetype(new real[] {6,6}); | ||
− | |||
− | |||
− | |||
− | |||
for (int i = 2000; i < 9000; i = i + 2000) { | for (int i = 2000; i < 9000; i = i + 2000) { | ||
Line 248: | Line 241: | ||
label("Cities", (11450*0.5,0), S); | label("Cities", (11450*0.5,0), S); | ||
label(rotate(90)*"Population", (0,9000*0.5), 10*W); | label(rotate(90)*"Population", (0,9000*0.5), 10*W); | ||
+ | |||
+ | // axis | ||
+ | draw((0,0)--(0,9300), linewidth(1.25)); | ||
+ | draw((0,0)--(11550,0), linewidth(1.25)); | ||
</asy> | </asy> | ||
Line 262: | Line 259: | ||
==Problem 16== | ==Problem 16== | ||
− | Each of the points <math>A,B,C,D,E,</math> and <math>F</math> in the figure below represents a different digit from <math>1</math> to <math>6.</math> Each of the five lines shown passes through some of these points. The digits along each line are added to produce five sums, one for each line. The total of the five sums is <math>47.</math> What is the digit represented by | + | Each of the points <math>A,B,C,D,E,</math> and <math>F</math> in the figure below represents a different digit from <math>1</math> to <math>6.</math> Each of the five lines shown passes through some of these points. The digits along each line are added to produce five sums, one for each line. The total of the five sums is <math>47.</math> What is the digit represented by B? |
<asy> | <asy> | ||
Line 368: | Line 365: | ||
\end{tabular} | \end{tabular} | ||
\endgroup</cmath> | \endgroup</cmath> | ||
− | <math> | + | <math>\textbf{(A) }22.2 \qquad \textbf{(B) }24.2 \qquad \textbf{(C) }33.2 \qquad \textbf{(D) }35.2 \qquad \textbf{(E) }37.2</math> |
[[2020 AMC 8 Problems/Problem 20|Solution]] | [[2020 AMC 8 Problems/Problem 20|Solution]] | ||
Line 420: | Line 417: | ||
label("if $N$ is even",(9.25,1.25),N); | label("if $N$ is even",(9.25,1.25),N); | ||
label("if $N$ is odd",(9.25,-1.25),N); | label("if $N$ is odd",(9.25,-1.25),N); | ||
− | label("$\ | + | label("$\frac N2$",(12,1.25)); |
label("$3N+1$",(12.6,-1.25)); | label("$3N+1$",(12.6,-1.25)); | ||
</asy> | </asy> | ||
Line 433: | Line 430: | ||
==Problem 23== | ==Problem 23== | ||
− | Five different awards are to be given to three students. Each student will receive at least one | + | Five different awards are to be given to three students. Each student will receive at least one award. In how many different ways can the awards be distributed? |
− | award. In how many different ways can the awards be distributed? | ||
<math>\textbf{(A) }120 \qquad \textbf{(B) }150 \qquad \textbf{(C) }180 \qquad \textbf{(D) }210 \qquad \textbf{(E) }240</math> | <math>\textbf{(A) }120 \qquad \textbf{(B) }150 \qquad \textbf{(C) }180 \qquad \textbf{(D) }210 \qquad \textbf{(E) }240</math> | ||
Line 441: | Line 437: | ||
==Problem 24== | ==Problem 24== | ||
− | A large square region is paved with <math>n^2</math> gray square tiles, each measuring <math>s</math> inches on a side. A border <math>d</math> inches wide surrounds each tile. The figure below shows the case for <math>n=3</math>. When <math>n=24</math>, the <math>576</math> gray tiles cover <math>64\%</math> of the area of the large square region. What is the ratio <math>\frac{d}{s}</math> for this larger value of <math>n?</math> | + | A large square region is paved with <math>n^2</math> gray square tiles, each measuring <math>s</math> inches on a side. A border <math>d</math> inches wide surrounds each tile. The figure below shows the case for <math>n=3</math>. When <math>n=24</math> |
+ | , the <math>576</math> gray tiles cover <math>64\%</math> of the area of the large square region. What is the ratio <math>\frac{d}{s}</math> for this larger value of <math>n?</math> | ||
<asy> | <asy> | ||
Line 478: | Line 475: | ||
[[2020 AMC 8 Problems/Problem 25|Solution]] | [[2020 AMC 8 Problems/Problem 25|Solution]] | ||
+ | |||
+ | ==See Also== | ||
+ | {{AMC8 box|year=2020|before=[[2019 AMC 8 Problems|2019 AMC 8]]|after=[[2022 AMC 8 Problems|2022 AMC 8]]}} | ||
+ | * [[AMC 8]] | ||
+ | * [[AMC 8 Problems and Solutions]] | ||
+ | * [[Mathematics competition resources|Mathematics Competition Resources]] |
Latest revision as of 22:06, 23 August 2024
2020 AMC 8 (Answer Key) Printable versions: • AoPS Resources • PDF | ||
Instructions
| ||
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 |
Contents
- 1 Problem 1
- 2 Problem 2
- 3 Problem 3
- 4 Problem 4
- 5 Problem 5
- 6 Problem 6
- 7 Problem 7
- 8 Problem 8
- 9 Problem 9
- 10 Problem 10
- 11 Problem 11
- 12 Problem 12
- 13 Problem 13
- 14 Problem 14
- 15 Problem 15
- 16 Problem 16
- 17 Problem 17
- 18 Problem 18
- 19 Problem 19
- 20 Problem 20
- 21 Problem 21
- 22 Problem 22
- 23 Problem 23
- 24 Problem 24
- 25 Problem 25
- 26 See Also
Problem 1
Luka is making lemonade to sell at a school fundraiser. His recipe requires times as much water as sugar and twice as much sugar as lemon juice. He uses cups of lemon juice. How many cups of water does he need?
Problem 2
Four friends do yardwork for their neighbors over the weekend, earning and respectively. They decide to split their earnings equally among themselves. In total how much will the friend who earned give to the others?
Problem 3
Carrie has a rectangular garden that measures feet by feet. She plants the entire garden with strawberry plants. Carrie is able to plant strawberry plants per square foot, and she harvests an average of strawberries per plant. How many strawberries can she expect to harvest?
Problem 4
Three hexagons of increasing size are shown below. Suppose the dot pattern continues so that each successive hexagon contains one more band of dots. How many dots are in the next hexagon?
Problem 5
Three fourths of a pitcher is filled with pineapple juice. The pitcher is emptied by pouring an equal amount of juice into each of cups. What percent of the total capacity of the pitcher did each cup receive?
Problem 6
Aaron, Darren, Karen, Maren, and Sharon rode on a small train that has five cars that seat one person each. Maren sat in the last car. Aaron sat directly behind Sharon. Darren sat in one of the cars in front of Aaron. At least one person sat between Karen and Darren. Who sat in the middle car?
Problem 7
How many integers between and have four distinct digits arranged in increasing order? (For example, is one integer.)
Problem 8
Ricardo has coins, some of which are pennies (-cent coins) and the rest of which are nickels (-cent coins). He has at least one penny and at least one nickel. What is the difference in cents between the greatest possible and least possible amounts of money that Ricardo can have?
Problem 9
Akash's birthday cake is in the form of a inch cube. The cake has icing on the top and the four side faces, and no icing on the bottom. Suppose the cake is cut into smaller cubes, each measuring inch, as shown below. How many small pieces will have icing on exactly two sides?
Problem 10
Zara has a collection of marbles: an Aggie, a Bumblebee, a Steelie, and a Tiger. She wants to display them in a row on a shelf, but does not want to put the Steelie and the Tiger next to one another. In how many ways can she do this?
Problem 11
After school, Maya and Naomi headed to the beach, miles away. Maya decided to bike while Naomi took a bus. The graph below shows their journeys, indicating the time and distance traveled. What was the difference, in miles per hour, between Naomi's and Maya's average speeds?
Problem 12
For a positive integer the factorial notation represents the product of the integers from to . (For example, .) What value of satisfies the following equation?
Problem 13
Jamal has a drawer containing green socks, purple socks, and orange socks. After adding more purple socks, Jamal noticed that there is now a chance that a sock randomly selected from the drawer is purple. How many purple socks did Jamal add?
Problem 14
There are cities in the County of Newton. Their populations are shown in the bar chart below. The average population of all the cities is indicated by the horizontal dashed line. Which of the following is closest to the total population of all cities?
Problem 15
Suppose of equals of What percentage of is
Problem 16
Each of the points and in the figure below represents a different digit from to Each of the five lines shown passes through some of these points. The digits along each line are added to produce five sums, one for each line. The total of the five sums is What is the digit represented by B?
Problem 17
How many factors of have more than factors? (As an example, has factors, namely and )
Problem 18
Rectangle is inscribed in a semicircle with diameter as shown in the figure. Let and let What is the area of
Problem 19
A number is called flippy if its digits alternate between two distinct digits. For example, and are flippy, but and are not. How many five-digit flippy numbers are divisible by
Problem 20
A scientist walking through a forest recorded as integers the heights of trees standing in a row. She observed that each tree was either twice as tall or half as tall as the one to its right. Unfortunately some of her data was lost when rain fell on her notebook. Her notes are shown below, with blanks indicating the missing numbers. Based on her observations, the scientist was able to reconstruct the lost data. What was the average height of the trees, in meters?
Problem 21
A game board consists of squares that alternate in color between black and white. The figure below shows square in the bottom row and square in the top row. A marker is placed at A step consists of moving the marker onto one of the adjoining white squares in the row above. How many -step paths are there from to (The figure shows a sample path.)
Problem 22
When a positive integer is fed into a machine, the output is a number calculated according to the rule shown below.
For example, starting with an input of the machine will output Then if the output is repeatedly inserted into the machine five more times, the final output is When the same -step process is applied to a different starting value of the final output is What is the sum of all such integers
Problem 23
Five different awards are to be given to three students. Each student will receive at least one award. In how many different ways can the awards be distributed?
Problem 24
A large square region is paved with gray square tiles, each measuring inches on a side. A border inches wide surrounds each tile. The figure below shows the case for . When , the gray tiles cover of the area of the large square region. What is the ratio for this larger value of
Problem 25
Rectangles and and squares and shown below, combine to form a rectangle that is 3322 units wide and 2020 units high. What is the side length of in units?
See Also
2020 AMC 8 (Problems • Answer Key • Resources) | ||
Preceded by 2019 AMC 8 |
Followed by 2022 AMC 8 | |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 | ||
All AJHSME/AMC 8 Problems and Solutions |