Difference between revisions of "Wiki Stuff"

(Created page with "==Problem== Two <math>4 \times 4</math> squares intersect at right angles, bisecting their intersecting sides, as shown. The circle's diameter is the segment between the two p...")
 
(Problem)
Line 1: Line 1:
 
==Problem==
 
==Problem==
Two <math>4 \times 4</math> squares intersect at right angles, bisecting their intersecting sides, as shown. The circle's diameter is the segment between the two points of intersection. What is the area of the shaded region created by removing the circle from the squares?
 
 
 
<asy>
 
<asy>
 
unitsize(6mm);
 
unitsize(6mm);
Line 8: Line 6:
 
filldraw(unitcircle,white,black);
 
filldraw(unitcircle,white,black);
 
</asy>
 
</asy>
 
<math>\text{(A)}\ 16-4\pi\qquad \text{(B)}\ 16-2\pi \qquad \text{(C)}\ 28-4\pi \qquad \text{(D)}\ 28-2\pi \qquad \text{(E)}\ 32-2\pi</math>
 

Revision as of 01:10, 8 August 2025

Problem

[asy] unitsize(6mm); draw(unitcircle); filldraw((0,1)--(1,2)--(3,0)--(1,-2)--(0,-1)--(-1,-2)--(-3,0)--(-1,2)--cycle,lightgray,black); filldraw(unitcircle,white,black); [/asy]