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
Sep 21, 2017

Shortest distance #~~7.187#

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:

#D= (sqrt((x_1-x_2)^2+(y_1-y_2)^2))-r_1-r_2#, where
#D# is the distance, #r_1# isthe first circle's radius, #r_2# is the second circles radius, #(x_1,y_1)# is the first circles centrepoint, and #(x_2,y_2)# is the second circles centrepoint. This equation is modelled off of the Pythagoras Theorem, as shown below:
i.stack.imgur.com
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 #h#.

We know that #r_1=1#, #(x_1,y_1)=(3,7)#, #r_2=2# and #(x_2,y_2)=(-3,-2)#. Plug these values into the equation, and we get
#D=(sqrt((3--3)^2+(7--2)^2))-1-2#
#D=(sqrt(6^2+9^2))-3#
#D=(sqrt117)-3#
#D=(3sqrt13)-3#
#D~~7.187#, or the smallest distance between the two circles is roughly 7.187.

I hope that helped!