Question:
The number of inches in the perimeter of an equilateral triangle equals the number of square inches in the area of its circumscribed circle. What is the radius, in inches, of the circle? Express your answer in terms of pi and in simplest radical form.

Answer:
Let the triangle have vertices $A$, $B$, and $C$, let $O$ be the center of the circle, and let $D$ be the midpoint of $
\overline{BC}$. Triangle $COD$ is a $30 - 60 - 90$ degree triangle. If $r$ is the radius of the circle, then the sides of $\triangle COD$ are $r$, $\frac{r}{2}$, and $\frac{r\sqrt{3}}{2}$. The perimeter of $\triangle ABC$ is $6\displaystyle\left(\frac{r \sqrt{3}}{2}\displaystyle\right)=3r\sqrt{3}$, and the area of the circle is $\pi r^{2}$. Thus $3r\sqrt{3} = \pi r^{2}$, and $r =
\boxed{\frac{3\sqrt{3}}{\pi}}$.

[asy]
pair A,B,C,D,O;
O=(0,0);
A=(0,1);
B=(0.87,-0.5);
C=(-0.87,-0.5);
D=(0,-0.5);
draw(Circle(O,1),linewidth(0.7));
draw(C--O--D--cycle,linewidth(0.7));
draw(A--B--C--cycle,linewidth(0.7));
label("$\frac{r}{2}$",(0,-0.25),E);
label("$\frac{r \sqrt{3}}{2}$",(-0.43,-0.5),S);
label("$r$",(-0.43,-0.25),NW);
label("$O$",O,N);
label("$A$",A,N);
label("$B$",B,SE);
label("$C$",C,SW);
label("$D$",D,S);
[/asy]