Difference between revisions of "2020 AMC 8 Problems/Problem 16"
Icematrix2 (talk | contribs) |
Icematrix2 (talk | contribs) |
||
Line 1: | Line 1: | ||
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 <math>B?</math> | 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 <math>B?</math> | ||
+ | <asy> | ||
+ | size(200); | ||
+ | dotfactor = 10; | ||
+ | |||
+ | pair p1 = (-28,0); | ||
+ | pair p2 = (-111,213); | ||
+ | draw(p1--p2,linewidth(1)); | ||
+ | |||
+ | pair p3 = (-160,0); | ||
+ | pair p4 = (-244,213); | ||
+ | draw(p3--p4,linewidth(1)); | ||
+ | |||
+ | pair p5 = (-316,0); | ||
+ | pair p6 = (-67,213); | ||
+ | draw(p5--p6,linewidth(1)); | ||
+ | |||
+ | pair p7 = (0, 68); | ||
+ | pair p8 = (-350,10); | ||
+ | draw(p7--p8,linewidth(1)); | ||
+ | |||
+ | pair p9 = (0, 150); | ||
+ | pair p10 = (-350, 62); | ||
+ | draw(p9--p10,linewidth(1)); | ||
+ | |||
+ | pair A = intersectionpoint(p1--p2, p5--p6); | ||
+ | dot("$A$", A, 2*W); | ||
+ | |||
+ | pair B = intersectionpoint(p5--p6, p3--p4); | ||
+ | dot("$B$", B, 2*WNW); | ||
+ | |||
+ | pair C = intersectionpoint(p7--p8, p5--p6); | ||
+ | dot("$C$", C, 1.5*NW); | ||
+ | |||
+ | pair D = intersectionpoint(p3--p4, p7--p8); | ||
+ | dot("$D$", D, 2*NNE); | ||
+ | |||
+ | pair EE = intersectionpoint(p1--p2, p7--p8); | ||
+ | dot("$E$", EE, 2*NNE); | ||
+ | |||
+ | pair F = intersectionpoint(p1--p2, p9--p10); | ||
+ | dot("$F$", F, 2*NNE); | ||
+ | </asy> | ||
+ | |||
<math>\textbf{(A) }1 \qquad \textbf{(B) }2 \qquad \textbf{(C) }3 \qquad \textbf{(D) }4 \qquad \textbf{(E) }5</math> | <math>\textbf{(A) }1 \qquad \textbf{(B) }2 \qquad \textbf{(C) }3 \qquad \textbf{(D) }4 \qquad \textbf{(E) }5</math> | ||
Revision as of 00:04, 18 November 2020
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
Solution 1
We notice that 3 lines pass through B, and 2 lines pass through all other points. In addition, we are given that . This means that
~samrocksnature
See also
2020 AMC 8 (Problems • Answer Key • Resources) | ||
Preceded by Problem 15 |
Followed by Problem 17 | |
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 |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.