Circle A has a center at #(2 ,7 )# and a radius of #3 #. Circle B has a center at #(7 ,2 )# and a radius of #3 #. Do the circles overlap? If not, what is the smallest distance between them?

1 Answer
Feb 7, 2016

For the circles to overlap, the distance between the centers should be less than or equal to the sum of the circles' respective radius. If the circles, do not overlap, then the smallest distance between the two would be the difference between the distance between the centers and the sum of their radii.

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

#=> d = sqrt((2 - 7)^2 + (7 - 2)^2)#

#=> d = sqrt(5^2 + 5^2)#

#=> d = sqrt(2(5^2))#

#=> d = 5sqrt2#

#=> d ~~ 7#

Since the distance between the centers is greater than the sum of the radii (which is 6), the circles do not overlap.

The smallest distance between them is

#d' ~~ 7 - 6 ~~ 1#.

If you need the precise value of the distance between the circles, go get a calculator and get the value of #sqrt2# (I used #sqrt2 ~~ 1.4#).