MathDB

2015 AMC 8

Part of AMC 8

Subcontests

(25)

Equiangular Hexagons

In the given figure hexagon ABCDEFABCDEF is equiangular, ABJIABJI and FEHGFEHG are squares with areas 1818 and 3232 respectively, JBK\triangle JBK is equilateral and FE=BCFE=BC. What is the area of KBC\triangle KBC?
<spanclass=latexbold>(A)</span>62<spanclass=latexbold>(B)</span>9<spanclass=latexbold>(C)</span>12<spanclass=latexbold>(D)</span>92<spanclass=latexbold>(E)</span>32<span class='latex-bold'>(A) </span>6\sqrt{2}\qquad<span class='latex-bold'>(B) </span>9\qquad<span class='latex-bold'>(C) </span>12\qquad<span class='latex-bold'>(D) </span>9\sqrt{2}\qquad<span class='latex-bold'>(E) </span>32
[asy] draw((-4,6*sqrt(2))--(4,6*sqrt(2))); draw((-4,-6*sqrt(2))--(4,-6*sqrt(2))); draw((-8,0)--(-4,6*sqrt(2))); draw((-8,0)--(-4,-6*sqrt(2))); draw((4,6*sqrt(2))--(8,0)); draw((8,0)--(4,-6*sqrt(2))); draw((-4,6*sqrt(2))--(4,6*sqrt(2))--(4,8+6*sqrt(2))--(-4,8+6*sqrt(2))--cycle); draw((-8,0)--(-4,-6*sqrt(2))--(-4-6*sqrt(2),-4-6*sqrt(2))--(-8-6*sqrt(2),-4)--cycle); label("II",(-4,8+6*sqrt(2)),dir(100)); label("JJ",(4,8+6*sqrt(2)),dir(80)); label("AA",(-4,6*sqrt(2)),dir(280)); label("BB",(4,6*sqrt(2)),dir(250)); label("CC",(8,0),W); label("DD",(4,-6*sqrt(2)),NW); label("EE",(-4,-6*sqrt(2)),NE); label("FF",(-8,0),E); draw((4,8+6*sqrt(2))--(4,6*sqrt(2))--(4+4*sqrt(3),4+6*sqrt(2))--cycle); label("KK",(4+4*sqrt(3),4+6*sqrt(2)),E); draw((4+4*sqrt(3),4+6*sqrt(2))--(8,0),dashed); label("HH",(-4-6*sqrt(2),-4-6*sqrt(2)),S); label("GG",(-8-6*sqrt(2),-4),W); label("3232",(-10,-8),N); label("1818",(0,6*sqrt(2)+2),N); [/asy]

X Marks the Spot

An arithmetic sequence is a sequence in which each term after the first is obtained by adding a constant to the previous term. For example, 2,5,8,11,142,5,8,11,14 is an arithmetic sequence with five terms, in which the first term is 22 and the constant added is 33. Each row and each column in this 5×55\times5 array is an arithmetic sequence with five terms. What is the value of XX?
<spanclass=latexbold>(A)</span>21<spanclass=latexbold>(B)</span>31<spanclass=latexbold>(C)</span>36<spanclass=latexbold>(D)</span>40<spanclass=latexbold>(E)</span>42<span class='latex-bold'>(A) </span>21\qquad<span class='latex-bold'>(B) </span>31\qquad<span class='latex-bold'>(C) </span>36\qquad<span class='latex-bold'>(D) </span>40\qquad <span class='latex-bold'>(E) </span>42
[asy] size(3.85cm); label("XX",(2.5,2.1),N); for (int i=0; i<=5; ++i) draw((i,0)--(i,5), linewidth(.5));
for (int j=0; j<=5; ++j) draw((0,j)--(5,j), linewidth(.5)); void draw_num(pair ll_corner, int num) { label(string(num), ll_corner + (0.5, 0.5), p = fontsize(19pt)); }
draw_num((0,0), 17); draw_num((4, 0), 81);
draw_num((0, 4), 1);
draw_num((4,4), 25);
void foo(int x, int y, string n) { label(n, (x+0.5,y+0.5), p = fontsize(19pt)); }
foo(2, 4, " "); foo(3, 4, " "); foo(0, 3, " "); foo(2, 3, " "); foo(1, 2, " "); foo(3, 2, " "); foo(1, 1, " "); foo(2, 1, " "); foo(3, 1, " "); foo(4, 1, " "); foo(2, 0, " "); foo(3, 0, " "); foo(0, 1, " "); foo(0, 2, " "); foo(1, 0, " "); foo(1, 3, " "); foo(1, 4, " "); foo(3, 3, " "); foo(4, 2, " "); foo(4, 3, " ");
[/asy]

2015 AMC 8 #19

A triangle with vertices as A=(1,3)A=(1,3), B=(5,1)B=(5,1), and C=(4,4)C=(4,4) is plotted on a 6×56\times5 grid. What fraction of the grid is covered by the triangle?
<spanclass=latexbold>(A)</span>16<spanclass=latexbold>(B)</span>15<spanclass=latexbold>(C)</span>14<spanclass=latexbold>(D)</span>13<spanclass=latexbold>(E)</span>12<span class='latex-bold'>(A) </span>\frac{1}{6} \qquad <span class='latex-bold'>(B) </span>\frac{1}{5} \qquad <span class='latex-bold'>(C) </span>\frac{1}{4} \qquad <span class='latex-bold'>(D) </span>\frac{1}{3} \qquad <span class='latex-bold'>(E) </span>\frac{1}{2}
[asy]
draw((1,0)--(1,5),linewidth(.5)); draw((2,0)--(2,5),linewidth(.5)); draw((3,0)--(3,5),linewidth(.5)); draw((4,0)--(4,5),linewidth(.5)); draw((5,0)--(5,5),linewidth(.5)); draw((6,0)--(6,5),linewidth(.5)); draw((0,1)--(6,1),linewidth(.5)); draw((0,2)--(6,2),linewidth(.5)); draw((0,3)--(6,3),linewidth(.5)); draw((0,4)--(6,4),linewidth(.5)); draw((0,5)--(6,5),linewidth(.5)); draw((0,0)--(0,6),EndArrow); draw((0,0)--(7,0),EndArrow); draw((1,3)--(4,4)--(5,1)--cycle); label("yy",(0,6),W); label("xx",(7,0),S); label("AA",(1,3),dir(230)); label("BB",(5,1),SE); label("CC",(4,4),dir(50)); [/asy]