Difference between revisions of "2023 AMC 10B Problems/Problem 19"
Technodoggo (talk | contribs) |
Technodoggo (talk | contribs) |
||
Line 1: | Line 1: | ||
− | == Solution == | + | froggo |
+ | |||
+ | ==Solution 1== | ||
+ | |||
+ | WLOG, we assume Sonya jumps <math>0.5</math> units every time, since that is her expected value. | ||
+ | |||
+ | If Sonya is within <math>0.5</math> blocks of an edge, she can jump off the board. Let us examine the region that is at most <math>0.5</math> blocks from exactly one edge. | ||
+ | |||
+ | <asy> | ||
+ | import graph; | ||
+ | |||
+ | Label f; | ||
+ | xaxis(0,6,Ticks(f, 6.0, 0.5)); | ||
+ | yaxis(0,6,Ticks(f, 6.0, 0.5)); | ||
+ | |||
+ | draw((0,0)--(6,0)--(6,6)--(0,6)--cycle); | ||
+ | filldraw((0,0.5)--(0.5,0.5)--(0.5,5.5)--(0,5.5)--cycle,gray); | ||
+ | filldraw((0.5,0)--(0.5,0.5)--(5.5,0.5)--(5.5,0)--cycle,gray); | ||
+ | filldraw((6,0.5)--(5.5,0.5)--(5.5,5.5)--(6,5.5)--cycle,gray); | ||
+ | filldraw((0.5,6)--(0.5,5.5)--(5.5,5.5)--(5.5,6)--cycle,gray); | ||
+ | </asy> | ||
+ | |||
+ | If Sonya starts in this region, she has a <math>\dfrac14</math> chance of landing outside (there's exactly one direction she can hop to get out). The total area of this region is <math>4\cdot0.5\cdot5=10.</math> For this region, Sonya has a <math>\dfrac14</math> chance, so we multiply <math>10</math> by <math>\dfrac14</math> to get <math>2.5.</math> | ||
+ | |||
+ | If Sonya is in one of the corner squares, she can go two directions to get out, so she has a <math>\dfrac24=\dfrac12</math> chance to get out. The total area is <math>0.5\cdot0.5\cdot4=1</math>, so this region yields <math>\dfrac12\cdot1=\dfrac12.</math> | ||
+ | |||
+ | Adding the two, we get <math>3</math>. This is out of <math>36</math> square units of area, so our answer is thus <math>\dfrac1{12}.</math> | ||
− | |||
~Technodoggo | ~Technodoggo |
Revision as of 15:19, 15 November 2023
froggo
Solution 1
WLOG, we assume Sonya jumps units every time, since that is her expected value.
If Sonya is within blocks of an edge, she can jump off the board. Let us examine the region that is at most blocks from exactly one edge.
If Sonya starts in this region, she has a chance of landing outside (there's exactly one direction she can hop to get out). The total area of this region is For this region, Sonya has a chance, so we multiply by to get
If Sonya is in one of the corner squares, she can go two directions to get out, so she has a chance to get out. The total area is , so this region yields
Adding the two, we get . This is out of square units of area, so our answer is thus
~Technodoggo