Finding if two sphere's intersect method

Click For Summary
SUMMARY

The method for determining if two spheres intersect involves calculating the distance between their centers and comparing it to the sum of their radii. Specifically, if the distance is less than or equal to the sum of the radii, the spheres intersect; otherwise, they do not. This method is valid for spheres of different radii as well as equal radii. The key formula to remember is that for two spheres with radii r1 and r2, they intersect if the distance between their centers is less than or equal to r1 + r2.

PREREQUISITES
  • Understanding of geometric concepts related to spheres
  • Familiarity with distance formula in three-dimensional space
  • Basic knowledge of algebraic equations of spheres
  • Ability to manipulate inequalities
NEXT STEPS
  • Study the algebraic equations of spheres in three-dimensional geometry
  • Learn about the distance formula in 3D space
  • Explore the implications of sphere intersection in computational geometry
  • Investigate algorithms for detecting intersections in 3D graphics
USEFUL FOR

Mathematicians, computer graphics developers, and anyone involved in 3D modeling or simulations who needs to understand sphere intersection calculations.

SanEng02
Messages
5
Reaction score
0
Hi I was just curious if this method of solving whether or not two spheres intersect is a viable method that will give me the correct answer. Say if I am given the two equations of the sphere's is it viable to:
  • Find the centre and radius of each sphere.
  • Find the magnitude of the distance of the line between the sphere's centres
  • If (magnitude distance of line) > radius they do not intersect, if (magnitude distance of the line) ≤ radius they do intersect.
From what I'm reading in the book and my notes, I think this should work.

Thanks in advance!
 
Last edited:
Physics news on Phys.org
SanEng02 said:
  • If (magnitude distance of line) > radius they do not intersect, if (magnitude distance of the line) ≤ radius they do intersect.
Almost. Two points:
  1. You assume that the spheres have the same radii. In the general case, they might not.
  2. Assume that the spheres just barely touch. Then the distance from the center of each sphere to the touching point is equal to the radius of that sphere ∴ The distance between the centers is equal to the sum of the radii. Therefore, if the distance between the centers is less than the sum of the radii, the spheres will intersect.
 
Svein said:
Almost. Two points:
  1. You assume that the spheres have the same radii. In the general case, they might not.
  2. Assume that the spheres just barely touch. Then the distance from the center of each sphere to the touching point is equal to the radius of that sphere ∴ The distance between the centers is equal to the sum of the radii. Therefore, if the distance between the centers is less than the sum of the radii, the spheres will intersect.

In this case the radii were the same but I forgot to mention that but I knew I was missing something. Thanks!
 
Even in that case, your statement was wrong. Given two spheres of equal radii, they will intersect if and only if the distance between their centers is less than or equal to two times their common radius.
 
Right, that makes even more sense thanks!
 

Similar threads

  • · Replies 3 ·
Replies
3
Views
1K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 19 ·
Replies
19
Views
4K
  • · Replies 16 ·
Replies
16
Views
1K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 7 ·
Replies
7
Views
850
  • · Replies 12 ·
Replies
12
Views
7K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 8 ·
Replies
8
Views
3K
Replies
6
Views
2K