Circle A has a center at #(3 ,7 )# and a radius of #1 #. Circle B has a center at #(-3 ,-2 )# and a radius of #2 #. Do the circles overlap? If not, what is the smallest distance between them?
1 Answer
Shortest distance
Explanation:
When given the coordinates, the shortest distance between two disjoint circles (circles wihich don't overlap), is the distance between the two centrepoints minus the radii of each circle. The equation looks like this:
https://stackoverflow.com/questions/10666116/most-efficient-way-to-find-distance-between-two-circles-in-java
From this picture, you can see why the shortest distance between two disjoint circles is their centrepoint distance minus their two radius, shown in the picture as
We know that
I hope that helped!