[Math] finding equation of circle in complex plane

complex numberscomplex-analysis

So i was asked to find the equation of the circle going through 1, i, and 0

Now i know that the equation of circle in complex form is:

$|z – z_0| = r$ where $r$ is radius.

So based on these values, my idea was to obtain the radius and try and find the origin of my circle. Nice idea, but executing it did not come off. There was a solution provided, and i am trying to make the link between what the final solution is and how to get the origin of my circle and the radius.

The solution was $|z – \frac{1+i}{2}| = \frac{1}{2^{1/2}}$

Best Answer

You must solve the following system of equations:

$\left\{ \array{|c-0|=r\\|c-1|=r\\|c-i| =r}\right.$

where $c$ is the center of the circle and $r$ is the radius.

Assuming that $c=x+iy$, after evaluation we get the following system:

$\left\{ \array{(1-x)^2=x^2 \\ (1-y)^2 = y^2}\right.$

and then:

$\left\{ \array{1-2x=0 \\ 1-2y =0}\right.$

So $(x,y)= (\frac{1}{2}, \frac{1}{2})$ and $c=\frac{i+1}{2}$

Back to the radius we take any of the initial equations, for example the first one:

$|c-0|=r$

And solve it for $r$

$|c|=r$

$r=\frac{\sqrt{2}}{2}$

The equation of circle is then:

$|z-\frac{1+i}{2}| = \frac{\sqrt{2}}{2} $

Related Question