Difference between revisions of "2021 AMC 10A Problems/Problem 19"

(Solution 1)
(Solution 1)
Line 5: Line 5:
  
 
== Solution 1 ==
 
== Solution 1 ==
This is what the diagram looks like:
+
In order to attack this problem, we need to consider casework:
 +
 
 +
Case 1: <math>|x-y|=x-y, |x+y|=x+y</math>
 +
 
 +
Substituting and simplifying, we have <math>x^2-6x+y^2=0</math>, i.e. <math>(x-3)^2+y^2=3^2</math>, which gives us a circle of radius <math>3</math> centered at <math>(3,0)</math>.
 +
 
 +
Case 2: <math>|x-y|=y-x, |x+y|=x+y</math>
 +
 
 +
Substituting and simplifying again, we have <math>x^2+y^2-6y=0</math>, i.e. <math>x^2+(y-3)^2=3^2</math>. This gives us a circle of radius <math>3</math> centered at <math>(0,3)</math>.
 +
 
 +
Case 3: <math>|x-y|=x-y, |x+y|=-x-y</math>
 +
 
 +
Doing the same process as before, we have <math>x^2+y^2+6y=0</math>, i.e. <math>x^2+(y+3)^2=3^2</math>. This gives us a circle of radius <math>3</math> centered at <math>(0,-3)</math>.
 +
 
 +
Case 4: <math>|x-y|=y-x, |x+y|=-x-y</math>
 +
 
 +
One last time: we have <math>x^2+y^2+6x=0</math>, i.e. <math>(x+3)^2+y^2=3^2</math>. This gives us a circle of radius <math>3</math> centered at <math>(-3,0)</math>.
 +
 
 +
After combining all the cases and drawing them on the Cartesian Plane, this is what the diagram looks like:
 +
 
 
<asy>
 
<asy>
 
size(10cm);  
 
size(10cm);  
Line 20: Line 39:
 
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>.
 
The area is <math>6\cdot6+4\cdot \frac{9\pi}{2} = 36+18\pi</math>. The answer is <math>36+18</math> which is <math>\boxed{\textbf{(E) }54}</math>
 
The area is <math>6\cdot6+4\cdot \frac{9\pi}{2} = 36+18\pi</math>. The answer is <math>36+18</math> which is <math>\boxed{\textbf{(E) }54}</math>
~ Bryguy
+
 
 +
Solution by Bryguy
  
  

Revision as of 22:20, 11 February 2021

Problem 19

The area of the region bounded by the graph of\[x^2+y^2 = 3|x-y| + 3|x+y|\]is $m+n\pi$, where $m$ and $n$ are integers. What is $m + n$?

$\textbf{(A)} ~18\qquad\textbf{(B)} ~27\qquad\textbf{(C)} ~36\qquad\textbf{(D)} ~45\qquad\textbf{(E)} ~54$

Solution 1

In order to attack this problem, we need to consider casework:

Case 1: $|x-y|=x-y, |x+y|=x+y$

Substituting and simplifying, we have $x^2-6x+y^2=0$, i.e. $(x-3)^2+y^2=3^2$, which gives us a circle of radius $3$ centered at $(3,0)$.

Case 2: $|x-y|=y-x, |x+y|=x+y$

Substituting and simplifying again, we have $x^2+y^2-6y=0$, i.e. $x^2+(y-3)^2=3^2$. This gives us a circle of radius $3$ centered at $(0,3)$.

Case 3: $|x-y|=x-y, |x+y|=-x-y$

Doing the same process as before, we have $x^2+y^2+6y=0$, i.e. $x^2+(y+3)^2=3^2$. This gives us a circle of radius $3$ centered at $(0,-3)$.

Case 4: $|x-y|=y-x, |x+y|=-x-y$

One last time: we have $x^2+y^2+6x=0$, i.e. $(x+3)^2+y^2=3^2$. This gives us a circle of radius $3$ centered at $(-3,0)$.

After combining all the cases and drawing them on the Cartesian Plane, this is what the diagram looks like:

[asy] 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] Now, the area of the shaded region is just a square with side length $6$ with four semicircles of radius $3$. The area is $6\cdot6+4\cdot \frac{9\pi}{2} = 36+18\pi$. The answer is $36+18$ which is $\boxed{\textbf{(E) }54}$

Solution by 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)

https://youtu.be/EHHpB6GIGPc

~ pi_is_3.14