MathDB

2018 AMC 8

Part of AMC 8

Subcontests

(25)

Cubes and Planes

In the cube ABCDEFGHABCDEFGH with opposite vertices CC and E,E, JJ and II are the midpoints of edges FB\overline{FB} and HD,\overline{HD}, respectively. Let RR be the ratio of the area of the cross-section EJCIEJCI to the area of one of the faces of the cube. What is R2?R^2?
[asy] size(6cm); pair A,B,C,D,EE,F,G,H,I,J; C = (0,0); B = (-1,1); D = (2,0.5); A = B+D; G = (0,2); F = B+G; H = G+D; EE = G+B+D; I = (D+H)/2; J = (B+F)/2; filldraw(C--I--EE--J--cycle,lightgray,black); draw(C--D--H--EE--F--B--cycle); draw(G--F--G--C--G--H); draw(A--B,dashed); draw(A--EE,dashed); draw(A--D,dashed); dot(A); dot(B); dot(C); dot(D); dot(EE); dot(F); dot(G); dot(H); dot(I); dot(J); label("AA",A,E); label("BB",B,W); label("CC",C,S); label("DD",D,E); label("EE",EE,N); label("FF",F,W); label("GG",G,N); label("HH",H,E); label("II",I,E); label("JJ",J,W); [/asy]
<spanclass=latexbold>(A)</span>54<spanclass=latexbold>(B)</span>43<spanclass=latexbold>(C)</span>32<spanclass=latexbold>(D)</span>2516<spanclass=latexbold>(E)</span>94<span class='latex-bold'>(A) </span> \frac{5}{4} \qquad <span class='latex-bold'>(B) </span> \frac{4}{3} \qquad <span class='latex-bold'>(C) </span> \frac{3}{2} \qquad <span class='latex-bold'>(D) </span> \frac{25}{16} \qquad <span class='latex-bold'>(E) </span> \frac{9}{4}

Similar Triangles

In ABC,\triangle ABC, a point EE is on AB\overline{AB} with AE=1AE=1 and EB=2.EB=2. Point DD is on AC\overline{AC} so that DEBC\overline{DE} \parallel \overline{BC} and point FF is on BC\overline{BC} so that EFAC.\overline{EF} \parallel \overline{AC}. What is the ratio of the area of CDEFCDEF to the area of ABC?\triangle ABC?
[asy] size(7cm); pair A,B,C,DD,EE,FF; A = (0,0); B = (3,0); C = (0.5,2.5); EE = (1,0); DD = intersectionpoint(A--C,EE--EE+(C-B)); FF = intersectionpoint(B--C,EE--EE+(C-A)); draw(A--B--C--A--DD--EE--FF,black+1bp); label("AA",A,S); label("BB",B,S); label("CC",C,N); label("DD",DD,W); label("EE",EE,S); label("FF",FF,NE); label("11",(A+EE)/2,S); label("22",(EE+B)/2,S); [/asy]
<spanclass=latexbold>(A)</span>49<spanclass=latexbold>(B)</span>12<spanclass=latexbold>(C)</span>59<spanclass=latexbold>(D)</span>35<spanclass=latexbold>(E)</span>23<span class='latex-bold'>(A) </span> \frac{4}{9} \qquad <span class='latex-bold'>(B) </span> \frac{1}{2} \qquad <span class='latex-bold'>(C) </span> \frac{5}{9} \qquad <span class='latex-bold'>(D) </span> \frac{3}{5} \qquad <span class='latex-bold'>(E) </span> \frac{2}{3}

Plus Minus Pyramids

In a sign pyramid a cell gets a "+" if the two cells below it have the same sign, and it gets a "-" if the two cells below it have different signs. The diagram below illustrates a sign pyramid with four levels. How many possible ways are there to fill the four cells in the bottom row to produce a "+" at the top of the pyramid?
[asy] unitsize(2cm); path box = (-0.5,-0.2)--(-0.5,0.2)--(0.5,0.2)--(0.5,-0.2)--cycle; draw(box); label("++",(0,0)); draw(shift(1,0)*box); label("-",(1,0)); draw(shift(2,0)*box); label("++",(2,0)); draw(shift(3,0)*box); label("-",(3,0)); draw(shift(0.5,0.4)*box); label("-",(0.5,0.4)); draw(shift(1.5,0.4)*box); label("-",(1.5,0.4)); draw(shift(2.5,0.4)*box); label("-",(2.5,0.4)); draw(shift(1,0.8)*box); label("++",(1,0.8)); draw(shift(2,0.8)*box); label("++",(2,0.8)); draw(shift(1.5,1.2)*box); label("++",(1.5,1.2)); [/asy]
<spanclass=latexbold>(A)</span>2<spanclass=latexbold>(B)</span>4<spanclass=latexbold>(C)</span>8<spanclass=latexbold>(D)</span>12<spanclass=latexbold>(E)</span>16<span class='latex-bold'>(A) </span> 2 \qquad <span class='latex-bold'>(B) </span> 4 \qquad <span class='latex-bold'>(C) </span> 8 \qquad <span class='latex-bold'>(D) </span> 12 \qquad <span class='latex-bold'>(E) </span> 16
8
1

Mr. Garcia

Mr. Garcia asked the members of his health class how many days last week they exercised for at least 30 minutes. The results are summarized in the following bar graph, where the heights of the bars represent the number of students.
[asy] size(8cm); void drawbar(real x, real h) { fill((x-0.15,0.5)--(x+0.15,0.5)--(x+0.15,h)--(x-0.15,h)--cycle,gray); } draw((0.5,0.5)--(7.5,0.5)--(7.5,5)--(0.5,5)--cycle); for (real i=1; i<5; i=i+0.5) { draw((0.5,i)--(7.5,i),gray); } drawbar(1.0,1.0); drawbar(2.0,2.0); drawbar(3.0,1.5); drawbar(4.0,3.5); drawbar(5.0,4.5); drawbar(6.0,2.0); drawbar(7.0,1.5); for (int i=1; i<8; ++i) { label(""+string(i)+""+string(i)+"",(i,0.25)); } for (int i=1; i<9; ++i) { label(""+string(i)+""+string(i)+"",(0.5,0.5*(i+1)),W); } label("Number of Days of Exercise",(4,-0.1)); label(rotate(90)*"Number of Students",(-0.1,2.75)); [/asy]What was the mean number of days of exercise last week, rounded to the nearest hundredth, reported by the students in Mr. Garcia's class?
<spanclass=latexbold>(A)</span>3.50<spanclass=latexbold>(B)</span>3.57<spanclass=latexbold>(C)</span>4.36<spanclass=latexbold>(D)</span>4.50<spanclass=latexbold>(E)</span>5.00<span class='latex-bold'>(A) </span> 3.50 \qquad <span class='latex-bold'>(B) </span> 3.57 \qquad <span class='latex-bold'>(C) </span> 4.36 \qquad <span class='latex-bold'>(D) </span> 4.50 \qquad <span class='latex-bold'>(E) </span> 5.00