Formula and Method for Converting General to Standard Form of a Circle
Every circle can be written two ways: general form, x² + y² + Dx + Ey + F = 0, and standard form, (x − h)² + (y − k)² = r², where (h, k) is the center and r is the radius. General form comes from expanding standard form, so converting back is a matter of undoing that expansion by completing the square on the x-terms and the y-terms separately.
How the calculation works
Start with x² + y² + Dx + Ey + F = 0 and group by variable: (x² + Dx) + (y² + Ey) = −F. To complete the square on x² + Dx, add and subtract (D/2)²: this turns it into (x + D/2)² − (D/2)². Do the same for y² + Ey using (E/2)². Substituting back and moving constants to the right side gives (x + D/2)² + (y + E/2)² = (D/2)² + (E/2)² − F. Comparing this to (x − h)² + (y − k)² = r² shows h = −D/2, k = −E/2, and r² = (D/2)² + (E/2)² − F, so r = √((D/2)² + (E/2)² − F). This calculator applies those three formulas directly: enter D, E, and F, and it reports the center, radius, and the fully written standard-form equation.
Common mistakes
- Sign errors on the center: the center is (−D/2, −E/2), not (D/2, E/2) — the sign flips when you move terms from inside the completed square to the center coordinates.
- Forgetting the F constant: the radius depends on F as well as D and E; dropping F from the calculation gives the wrong radius even if the center is correct.
- Assuming every general-form equation is a circle: if (D/2)² + (E/2)² − F is negative, there is no real radius and the equation has no real graph; if it equals zero, the "circle" is a single point.
Real-world applications
- Analytic geometry and precalculus courses use this conversion to identify a circle's center and radius from an expanded equation.
- Computer graphics and CAD software store circles in general (implicit) form for intersection tests, then convert to standard form to render or manipulate them.
- Physics and engineering problems involving circular motion or boundaries often start from an expanded equation that needs to be converted before the center and radius can be read off.
- GPS and mapping calculations that define circular coverage areas from quadratic equations rely on the same center/radius extraction.