Find the intersection of two circles

This online calculator finds the intersection points of two circles given the center point and radius of each circle. It also plots them on the graph.

This page exists due to the efforts of the following people:

Timur

Timur

Karen Luckhurst

Anton

Created: 2019-02-08 09:07:02, Last updated: 2020-12-18 12:17:19
Creative Commons Attribution/Share-Alike License 3.0 (Unported)

This content is licensed under Creative Commons Attribution/Share-Alike License 3.0 (Unported). That means you may freely redistribute or modify this content under the same license conditions and must attribute the original author by placing a hyperlink from your site to this work https://planetcalc.com/8098/. Also, please do not modify any references to the original work (if any) contained in this content.

To use the calculator, enter the x and y coordinates of a center and radius of each circle.

A bit of theory can be found below the calculator.

PLANETCALC, Intersection of two circles

Intersection of two circles

First Circle

Second circle

Digits after the decimal point: 2
Distance analysis
 
The file is very large. Browser slowdown may occur during loading and creation.

Circles intersection

The task is relatively easy, but we should take into account the edge cases – therefore we should start by calculating the cartesian distance d between two center points, and checking for edge cases by comparing d with radiuses r1 and r2.

Here are the possible cases (distance between centers is shown in red):

Case Description Rule
Trivial case: the circles are coincident (or it is the same circle) d = 0, r1 = r2

separate.png

The circles are separate d > r1 + r2

contained.png

One circle is contained within the other d < abs(r1 - r2)

twopoints.png

twopoints2.png

Two intersection points You have one or two intersection points if all rules for the edge cases above are not applied

onepoint.png

onepoint2.png

One intersection point Trivial case of two intersection points

So, if it is not an edge case, to find the two intersection points, the calculator uses the following formulas (mostly deduced with Pythagorean theorem), illustrated with the graph below:

Two intersection points
Two intersection points

The first calculator finds the segment a
a=\frac{r^2_1-r^2_2+d^2}{2d}
and then the segment h
h=\sqrt{r^2_1-a^2}

To find point P3, the calculator uses the following formula (in vector form):
P3=P1 + \frac{a}{d}(P2-P1)

And finally, to get a pair of points in case of two points intersecting, the calculator uses these equations:
First point:
x_4=x_3+\frac{h}{d}(y_2-y_1)\\y_4=y_3-\frac{h}{d}(x2-x_1)
Second point:
x_4=x_3-\frac{h}{d}(y_2-y_1)\\y_4=y_3+\frac{h}{d}(x2-x_1)
Note the opposite signs before the second addend

For more information, you can refer to Circle-Circle Intersection and Circles and spheres

URL copied to clipboard
PLANETCALC, Find the intersection of two circles

Comments