Difference between revisions of "2021 AMC 10A Problems/Problem 19"
(→Solution 1) |
(→Solution 1) |
||
Line 8: | Line 8: | ||
<asy> | <asy> | ||
size(10cm); | size(10cm); | ||
− | + | Label f; | |
− | + | f.p=fontsize(7); | |
− | + | xaxis(-8,8,Ticks(f, 1.0)); | |
− | + | yaxis(-8,8,Ticks(f, 1.0)); | |
− | + | draw(arc((-3,0),3,90,270) -- cycle, gray); | |
+ | draw(arc((0,3),3,0,180) -- cycle, gray); | ||
+ | draw(arc((3,0),3,-90,90) -- cycle, gray); | ||
+ | draw(arc((0,-3),3,-180,0) -- cycle, gray); | ||
+ | draw((-3,3)--(3,3)--(3,-3)--(-3,-3)--cycle, grey); | ||
</asy> | </asy> | ||
Now, the area of the shaded region is just a square with side length <math>6</math> with four semicircles of radius <math>3</math>. | Now, the area of the shaded region is just a square with side length <math>6</math> with four semicircles of radius <math>3</math>. |
Revision as of 21:06, 11 February 2021
Problem 19
The area of the region bounded by the graph ofis , where and are integers. What is ?
Solution 1
This is what the diagram looks like: Now, the area of the shaded region is just a square with side length with four semicircles of radius . The area is . The answer is which is ~ Bryguy
https://artofproblemsolving.com/wiki/index.php/File:Image_2021-02-11_111327.png (someone please help link file thanks)
Video Solution (Using absolute value properties to graph)
~ pi_is_3.14