Difference between revisions of "2013 AMC 12B Problems/Problem 12"
(Created page with "==Problem== Cities <math>A</math>, <math>B</math>, <math>C</math>, <math>D</math>, and <math>E</math> are connected by roads <math>AB</math>, <math>AD</math>, <math>AE</math>, <...") |
(→Solution) |
||
(12 intermediate revisions by 8 users not shown) | |||
Line 1: | Line 1: | ||
− | ==Problem== | + | == Problem == |
+ | Cities <math>A</math>, <math>B</math>, <math>C</math>, <math>D</math>, and <math>E</math> are connected by roads <math>\widetilde{AB}</math>, <math>\widetilde{AD}</math>, <math>\widetilde{AE}</math>, <math>\widetilde{BC}</math>, <math>\widetilde{BD}</math>, <math>\widetilde{CD}</math>, and <math>\widetilde{DE}</math>. How many different routes are there from <math>A</math> to <math>B</math> that use each road exactly once? (Such a route will necessarily visit some cities more than once.) | ||
− | |||
<asy> | <asy> | ||
unitsize(10mm); | unitsize(10mm); | ||
Line 17: | Line 17: | ||
label("$D$",D,N); | label("$D$",D,N); | ||
label("$E$",E,W); | label("$E$",E,W); | ||
− | draw(A--B--C--D--E--cycle); | + | guide squiggly(path g, real stepsize, real slope=45) |
+ | { | ||
+ | real len = arclength(g); | ||
+ | real step = len / round(len / stepsize); | ||
+ | guide squig; | ||
+ | for (real u = 0; u < len; u += step){ | ||
+ | real a = arctime(g, u); | ||
+ | real b = arctime(g, u + step / 2); | ||
+ | pair p = point(g, a); | ||
+ | pair q = point(g, b); | ||
+ | pair np = unit( rotate(slope) * dir(g,a)); | ||
+ | pair nq = unit( rotate(0 - slope) * dir(g,b)); | ||
+ | squig = squig .. p{np} .. q{nq}; | ||
+ | } | ||
+ | squig = squig .. point(g, length(g)){unit(rotate(slope)*dir(g,length(g)))}; | ||
+ | return squig; | ||
+ | } | ||
+ | pen pp = defaultpen + 2.718; | ||
+ | draw(squiggly(A--B, 4.04, 30), pp); | ||
+ | draw(squiggly(A--D, 7.777, 20), pp); | ||
+ | draw(squiggly(A--E, 5.050, 15), pp); | ||
+ | draw(squiggly(B--C, 5.050, 15), pp); | ||
+ | draw(squiggly(B--D, 4.04, 20), pp); | ||
+ | draw(squiggly(C--D, 2.718, 20), pp); | ||
+ | draw(squiggly(D--E, 2.718, -60), pp); | ||
+ | </asy> | ||
+ | |||
+ | <math>\textbf{(A)}\ 7 \qquad \textbf{(B)}\ 9 \qquad \textbf{(C)}\ 12 \qquad \textbf{(D)}\ 16 \qquad \textbf{(E)}\ 18</math> | ||
+ | |||
+ | == Solution == | ||
+ | Note that cities <math>C</math> and <math>E</math> can be removed when counting paths because if a path goes in to <math>C</math> or <math>E</math>, there is only one possible path to take out of cities <math>C</math> or <math>E</math>. | ||
+ | So the diagram is as follows: | ||
+ | |||
+ | <asy> | ||
+ | unitsize(10mm); | ||
+ | defaultpen(linewidth(1.2pt)+fontsize(10pt)); | ||
+ | dotfactor=4; | ||
+ | pair A=(1,0), B=(4.24,0), C=(5.24,3.08), D=(2.62,4.98), E=(0,3.08); | ||
+ | dot (A); | ||
+ | dot (B); | ||
+ | |||
+ | dot (D); | ||
+ | |||
+ | label("$A$",A,S); | ||
+ | label("$B$",B,SE); | ||
+ | |||
+ | label("$D$",D,N); | ||
+ | |||
+ | draw(A--B..D..cycle); | ||
draw(A--D); | draw(A--D); | ||
− | draw(B--D);</asy> | + | draw(B--D); |
+ | </asy> | ||
− | <math>\ | + | Now we proceed with casework. Remember that there are two ways to travel from <math>A</math> to <math>D</math>, <math>D</math> to <math>A</math>, <math>B</math> to <math>D</math> and <math>D</math> to <math>B</math>.: |
+ | |||
+ | Case 1 <math>A \Rightarrow D</math>: From <math>D</math>, if the path returns to <math>A</math>, then the next path must go to <math>B\Rightarrow D \Rightarrow B</math>. There are <math>2 \cdot 1 \cdot 2 = 4</math> possibilities of the path <math>ADABDB</math>. If the path goes to <math>D</math> from <math>B</math>, then the path must continue with either <math>BDAB</math> or <math>BADB</math>. There are <math>2 \cdot 2 \cdot 2 = 8</math> possibilities. So, this case gives <math>4+8=12</math> different possibilities. | ||
+ | |||
+ | Case 2 <math>A \Rightarrow B</math>: The path must continue with <math>BDADB</math>. There are <math>2 \cdot 2 = 4</math> possibilities for this case. | ||
+ | |||
+ | Putting the two cases together gives <math>12+4 = \boxed{\textbf{(D)} \ 16}</math> | ||
+ | |||
+ | == Alcumus Solution (Directly Copied from Alcumus) == | ||
+ | Solution: | ||
+ | The presence of cities <math>C</math> and <math>E</math> is irrelevant to the problem, because upon entering either city, there is only one road going out. Therefore, we can remove those cities, and instead note that there are two roads connecting <math>A</math> and <math>D,</math> two roads connecting <math>B</math> and <math>D,</math> and one road connecting <math>A</math> and <math>B.</math> We can assume that the order in which each pair of roads is traversed does not matter, and then multiply by <math>2 \cdot 2 =4</math> at the end. | ||
+ | |||
+ | Now, take cases on whether <math>B</math> or <math>D</math> is visited first: | ||
+ | Suppose <math>D</math> is visited first. If the other road back to <math>A</math> is then taken, then the only possibility is to travel to <math>B</math> and then travel the two roads between <math>B</math> and <math>D</math> in either order. If, instead, one of the roads to <math>B</math> is taken, then either <math>A, D, B</math> must be visited in that order, or <math>D, A, B</math> must be visited in that order. This gives <math>3</math> possible routes in total. | ||
+ | Suppose <math>B</math> is visited first. Then <math>D, A, D, B</math> must be visited in that order, so there is only one possible route. | ||
+ | Putting the two cases together and multiplying by <math>4</math> gives the answer, <math>4(1+3) = \boxed{16}.</math> | ||
+ | |||
+ | == See Also == | ||
+ | {{AMC12 box|year=2013|ab=B|num-b=11|num-a=13}} | ||
+ | {{MAA Notice}} |
Latest revision as of 16:51, 17 November 2024
Problem
Cities , , , , and are connected by roads , , , , , , and . How many different routes are there from to that use each road exactly once? (Such a route will necessarily visit some cities more than once.)
Solution
Note that cities and can be removed when counting paths because if a path goes in to or , there is only one possible path to take out of cities or . So the diagram is as follows:
Now we proceed with casework. Remember that there are two ways to travel from to , to , to and to .:
Case 1 : From , if the path returns to , then the next path must go to . There are possibilities of the path . If the path goes to from , then the path must continue with either or . There are possibilities. So, this case gives different possibilities.
Case 2 : The path must continue with . There are possibilities for this case.
Putting the two cases together gives
Alcumus Solution (Directly Copied from Alcumus)
Solution: The presence of cities and is irrelevant to the problem, because upon entering either city, there is only one road going out. Therefore, we can remove those cities, and instead note that there are two roads connecting and two roads connecting and and one road connecting and We can assume that the order in which each pair of roads is traversed does not matter, and then multiply by at the end.
Now, take cases on whether or is visited first: Suppose is visited first. If the other road back to is then taken, then the only possibility is to travel to and then travel the two roads between and in either order. If, instead, one of the roads to is taken, then either must be visited in that order, or must be visited in that order. This gives possible routes in total. Suppose is visited first. Then must be visited in that order, so there is only one possible route. Putting the two cases together and multiplying by gives the answer,
See Also
2013 AMC 12B (Problems • Answer Key • Resources) | |
Preceded by Problem 11 |
Followed by Problem 13 |
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 AMC 12 Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.