Difference between revisions of "2021 AMC 12A Problems/Problem 11"
MRENTHUSIASM (talk | contribs) m (→Solution 2 (Algebra)) |
MRENTHUSIASM (talk | contribs) m (→Solution 3 (Answer Choices and Educated Guesses)) |
||
Line 146: | Line 146: | ||
<asy> | <asy> | ||
/* Made by MRENTHUSIASM */ | /* Made by MRENTHUSIASM */ | ||
− | size( | + | size(200); |
− | + | ||
+ | int xMin = -3; | ||
+ | int xMax = 9; | ||
+ | int yMin = -3; | ||
+ | int yMax = 7; | ||
+ | |||
+ | draw((xMin,0)--(xMax,0),black+linewidth(1.5),EndArrow(5)); | ||
+ | draw((0,yMin)--(0,yMax),black+linewidth(1.5),EndArrow(5)); | ||
+ | label("$x$",(xMax,0),E); | ||
+ | label("$y$",(0,yMax),N); | ||
+ | |||
+ | //Draws the horizontal gridlines | ||
+ | void horizontalLines() | ||
+ | { | ||
+ | for (int i = yMin+1; i < yMax; ++i) | ||
+ | { | ||
+ | draw((xMin,i)--(xMax,i), mediumgray+linewidth(0.4)); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | //Draws the vertical gridlines | ||
+ | void verticalLines() | ||
+ | { | ||
+ | for (int i = xMin+1; i < xMax; ++i) | ||
+ | { | ||
+ | draw((i,yMin)--(i,yMax), mediumgray+linewidth(0.4)); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | //Draws the horizontal ticks | ||
+ | void horizontalTicks() | ||
+ | { | ||
+ | for (int i = yMin+1; i < yMax; ++i) | ||
+ | { | ||
+ | draw((-3/16,i)--(3/16,i), black+linewidth(1)); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | //Draws the vertical ticks | ||
+ | void verticalTicks() | ||
+ | { | ||
+ | for (int i = xMin+1; i < xMax; ++i) | ||
+ | { | ||
+ | draw((i,-3/16)--(i,3/16), black+linewidth(1)); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | horizontalLines(); | ||
+ | verticalLines(); | ||
+ | horizontalTicks(); | ||
+ | verticalTicks(); | ||
+ | draw((xMin,0)--(xMax,0),black+linewidth(1.5),EndArrow(5)); | ||
+ | draw((0,yMin)--(0,yMax),black+linewidth(1.5),EndArrow(5)); | ||
+ | label("$x$",(xMax,0),E); | ||
+ | label("$y$",(0,yMax),N); | ||
pair A = (3,5); | pair A = (3,5); | ||
Line 163: | Line 217: | ||
label("$C$",C,(0,-2),UnFill); | label("$C$",C,(0,-2),UnFill); | ||
label("$D(7,5)$",D,(0,2),UnFill); | label("$D(7,5)$",D,(0,2),UnFill); | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</asy> | </asy> | ||
Following the last paragraph of Solution 2 gives the answer <math>\boxed{\textbf{(C) }10\sqrt2}.</math> | Following the last paragraph of Solution 2 gives the answer <math>\boxed{\textbf{(C) }10\sqrt2}.</math> |
Revision as of 07:09, 13 September 2021
Contents
Problem
A laser is placed at the point . The laser beam travels in a straight line. Larry wants the beam to hit and bounce off the -axis, then hit and bounce off the -axis, then hit the point . What is the total distance the beam will travel along this path?
Diagram
~MRENTHUSIASM
Solution 1 (Geometry)
Let be the point where the beam hits and bounces off the -axis, and be the point where the beam hits and bounces off the -axis.
First, reflecting about the -axis gives Then, reflecting about the -axis gives Finally, reflecting about the -axis gives as shown below. It follows that The total distance that the beam will travel is ~MRENTHUSIASM (Solution)
~JHawk0224 (Proposal)
Solution 2 (Algebra)
Define points and as Solution 1 does.
When a straight line hits and bounces off a coordinate axis at point the ray entering and the ray leaving have negative slopes. Let be the line containing and perpendicular to that coordinate axis. Geometrically, these two rays coincide when reflected about
Let the slope of be It follows that the slope of is and the slope of is Here, we conclude that
Next, we locate on such that We obtain parallelogram as shown below. Let In parallelogram we get By symmetry, we get
Applying the slope formula to and gives Equating the last two expressions gives
By the Distance Formula, we have and The total distance that the beam will travel is ~MRENTHUSIASM
Solution 3 (Answer Choices and Educated Guesses)
Define points and as Solution 1 does.
Since choices and all involve we suspect that one of them is the correct answer. We take a guess in faith that and all form angles with the coordinate axes, from which and The given condition verifies our guess, as shown below. Following the last paragraph of Solution 2 gives the answer
~MRENTHUSIASM
Video Solution by OmegaLearn (Using Reflections and Distance Formula)
~ pi_is_3.14
Video Solution by Hawk Math
https://www.youtube.com/watch?v=AjQARBvdZ20
Video Solution by TheBeautyofMath
~IceMatrix
See also
2021 AMC 12A (Problems • Answer Key • Resources) | |
Preceded by Problem 10 |
Followed by Problem 12 |
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.