Intersection of two circles
The intersection of two circles is a point lying on both circles at once. Here we look at how the circle x2+y2=25, centered at the origin (0,0) with radius 5, meets the circle (x−8)2+y2=25, centered at (8,0) with radius 5.
At an intersection both equations hold at once. Subtracting one from the other cancels the x2 and y2 terms and leaves a linear equation.
(x2+y2)−((x−8)2+y2)=25−25 Expanding gives x2−(x2−16x+64)=16x−64, so 16x−64=0, that is x=4. Substituting into x2+y2=25 gives 16+y2=25, so y2=9 and y=3,−3. The intersection points are (4,3) and (4,−3).
The linear equation x=4 that came out of the subtraction is the line through the two intersection points (the line containing the common chord). To find where two circles meet, the standard method is to subtract first to get this line, then substitute it into a circle equation.
How the circles meet is decided by the distance between centers d compared with the two radii r1,r2.
- ∣r1−r2∣<d<r1+r2: they cross at 2 points
- d=r1+r2 (external) or d=∣r1−r2∣ (internal): they touch at 1 point
- d>r1+r2 (apart) or d<∣r1−r2∣ (one inside the other): they do not meet
Here d=8, r1+r2=10 and ∣r1−r2∣=0, so 0<8<10 and the circles cross at 2 points, as we found. The large dots on the graph are those two intersection points.