Circle A has a center at #(1 ,-8 )# and a radius of #3 #. 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
Feb 4, 2016

Get the distance between the circles' centers. If the distance exceeds the sum of the radii, then the circles do not overlap. If the distance is less than the difference of the radii, the circles will also not overlap.

#D = sqrt((x_1 - x_2)^2 + (y_1 - y_2)^2)#

#D = sqrt((1 - -3)^2 + (-8 - - 2)^2)#

#=> D = sqrt(4^2 + -6^2)#

#=> D = sqrt(16 + 36)#

#=> D = sqrt(52)#

#=> D ~~ 7.#

Since the distance between the two centers is greater than the sum of the circle's centers, the circles will not overlap.

How do we get smallest distance between the circles?
We subtract the radius of the 2 circles from the distance

#D' = D - r_1 - r_2#

#D' ~~ 7 - 3 - 2#

#=> D' ~~ 2#

If you need the precise value, go get a calculator and compute the value of #sqrt52#.