Difference between revisions of "2021 Fall AMC 10A Problems/Problem 16"
MRENTHUSIASM (talk | contribs) (→Solution 2 (Graphing)) |
MRENTHUSIASM (talk | contribs) (→Solution 2 (Graphing)) |
||
Line 161: | Line 161: | ||
} | } | ||
</asy> | </asy> | ||
− | + | The graph of <math>f(x)=y_1-y_2</math> is shown below: | |
+ | <asy> | ||
+ | /* Made by MRENTHUSIASM */ | ||
+ | size(250); | ||
− | < | + | int xMin = -10; |
+ | int xMax = 10; | ||
+ | int yMin = -10; | ||
+ | int yMax = 10; | ||
+ | |||
+ | //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)); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | //Draws and labels coordinate axes | ||
+ | void drawLabelAxes() | ||
+ | { | ||
+ | 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),(2,0)); | ||
+ | label("$y$",(0,yMax),(0,2)); | ||
+ | } | ||
+ | |||
+ | horizontalLines(); | ||
+ | verticalLines(); | ||
+ | horizontalTicks(); | ||
+ | verticalTicks(); | ||
+ | drawLabelAxes(); | ||
+ | |||
+ | draw((-9,0)--(9,0),mediumblue+linewidth(1.25),"$y=|\lfloor x \rfloor|$"); | ||
+ | for (int i = 0; i > -10; --i) { | ||
+ | dot((i,-1),mediumblue+linewidth(4)); | ||
+ | } | ||
+ | for (int i = 1; i < 10; ++i) { | ||
+ | dot((i,1),mediumblue+linewidth(4)); | ||
+ | } | ||
+ | for (int i = -9; i < 10; ++i) { | ||
+ | dot((i,0),mediumblue+linewidth(0.7),UnFill); | ||
+ | } | ||
+ | </asy> | ||
Therefore, the answer is <math>\boxed{\textbf{(D) }\text{ the point }\left(\dfrac12, 0\right)}.</math> | Therefore, the answer is <math>\boxed{\textbf{(D) }\text{ the point }\left(\dfrac12, 0\right)}.</math> |
Revision as of 15:54, 25 November 2021
Problem
The graph of is symmetric about which of the following? (Here is the greatest integer not exceeding .)
Solution 1 (Piecewise Function)
IN PROGRESS AND WILL FINISH SOON. NO EDIT PLEASE. A MILLION THANKS.
~MRENTHUSIASM
Solution 2 (Graphing)
Let and
The graph of is shown below: Note that is a reflection of about the -axis, followed by a translation of unit right. The graph of is shown below: The graph of is shown below:
Therefore, the answer is
~MRENTHUSIASM
See Also
2021 Fall AMC 10A (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 AMC 10 Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.