Question 273320
A circle with a radius of 4 and a midpoint at (2,2)
<pre><font size = 4 color = "indigo"><b>
It is unusual to call the center (or "centre" if you are from the UK)
of a circle by the term "midpoint".  We usually use the word "midpoint"
for the midpoint of a line segment, or for the midpoint between two 
given points.  But I will take it that by "midpoint", you mean "center"
or "centre".

So I assume you want the equation of this green circle, with the center 
at (2,2), the point so marked below:

{{{drawing(350,350,-10,10,-10,10, graph(350,350,-10,10,-10,10),
green(circle(2,2,4)), locate(2,2,"(2,2)"),

line(2+.1,2,2-.1,2), line(2,2+.1,2,2-.1), line(2+.1,2+.1,2-.1,2-.1), line(2+.1,2-.1,2-.1,2+.1) )}}} 

Then you must learn the standard form for the equation of a
circle which has center at (h,k) and radius r:

{{{(x - h)^2+(y-k)^2=r^2}}}

If you know that formula by heart, then all you have to do is
substitute h=2, k=2 since (h,k) = (2,2) and r=4, and instantly
you have

{{{(x - 2)^2+(y-2)^2=4^2}}}

That's it except for the tiny task of squaring the 4

{{{(x - 2)^2+(y-2)^2=16}}}

except that it is better not to acrtually square the
radius.  Why? The standard form was created because
they wanted to get equations in forms so that you can
tell how the graph is going to look just by looking at 
the equation.

You don't need to multiply that out at all. Just leave it
in standard form.  The beauty of the standard form is that
you can look at the equation in that form and tell about
the graph easier. You can just look at the equation and
pick out the radius and the center without doing any
algebra.   

{{{(x - red(2))^2+(y-red(2))^2=green(4)^2}}}

The two red 2's tell you the center is (2,2) and the green 4 tells you
that the radius is 4, so you can draw it in your head.

On top of that, it IS the equation of that circle because the
points (-2,2), (2,-2), (2,6), (6,2) all lie on this circle
as you can see:

{{{drawing(350,350,-10,10,-10,10, graph(350,350,-10,10,-10,10),
green(circle(2,2,4)), locate(2,2,"(2,2)") ,

line(-2+.1,2,-2-.1,2), line(-2,2+.1,-2,2-.1), line(-2+.1,2+.1,-2-.1,2-.1), line(-2+.1,2-.1,-2-.1,2+.1),

line(2+.1,-2,2-.1,-2), line(2,-2+.1,2,-2-.1), line(2+.1,-2+.1,2-.1,-2-.1), line(2+.1,-2-.1,2-.1,-2+.1),

line(2+.1,6,2-.1,6), line(2,6+.1,2,6-.1), line(2+.1,6+.1,2-.1,6-.1), line(2+.1,6-.1,2-.1,6+.1), 

line(6+.1,2,6-.1,2), line(6,2+.1,6,2-.1), line(6+.1,2+.1,6-.1,2-.1), line(6+.1,2-.1,6-.1,2+.1),

locate(-5,2,"(-2,2)"), locate(2,-2,"(2,-2)"), locate(2,7,"(2,6)"), locate(6,2,"(6,2)")


  )}}}

Plug each into 

{{{(x - 2)^2+(y-2)^2=4^2}}}

Plugging in (-2,2)

{{{(-2 - 2)^2+(2-2)^2=4^2}}}
{{{(-4)^2+(0)^2=4^2}}}
{{{(-4)^2=4^2}}}
{{{16=16}}}

Plugging in (2,-2)

{{{(2 - 2)^2+(-2-2)^2=4^2}}}
{{{(0)^2+(-4)^2=4^2}}}
{{{(-4)^2=4^2}}}
{{{16=16}}}



Plugging in (2,6)

{{{(2 - 2)^2+(6-2)^2=4^2}}}
{{{(0)^2+(4)^2=4^2}}}
{{{4^2=4^2}}}
{{{16=16}}}

Plugging in (6,2)

{{{(6 - 2)^2+(2-2)^2=4^2}}}
{{{(4)^2+(0)^2=4^2}}}
{{{(4)^2=4^2}}}
{{{16=16}}}

So you see that all those four sample points
satisfy the equation in standard form. That
convinces us that it must be the right
equation for that circle.

Edwin</pre>