Solving the Great Circle Problem on a Sphere

  • Thread starter Thread starter davidam
  • Start date Start date
  • Tags Tags
    Circle
Click For Summary
SUMMARY

The Great Circle Problem on a Sphere involves deriving a parametric equation to describe the path between two points A=(a1,a2,a3) and B=(b1,b2,b3) on the surface of a sphere with radius R. The solution requires finding the plane that intersects the sphere and contains both points, leading to the equation Ax + By + Cz = D. Utilizing trigonometric functions such as sine and cosine, along with matrix rotations, allows for the transformation of the circle's parameters into three-dimensional space. The final parametric equations for the path can be expressed as x(t), y(t), and z(t) based on the derived plane and circle intersection.

PREREQUISITES
  • Understanding of spherical geometry and great circles
  • Knowledge of parametric equations in three dimensions
  • Familiarity with matrix transformations and rotations
  • Basic trigonometry, specifically sine and cosine functions
NEXT STEPS
  • Study the derivation of parametric equations for circles in three dimensions
  • Learn about the intersection of planes and spheres in geometry
  • Explore matrix operations for 3D transformations
  • Investigate applications of great circles in navigation and geodesy
USEFUL FOR

Mathematicians, physics students, and computer graphics developers interested in spherical geometry and pathfinding on curved surfaces.

davidam
Messages
1
Reaction score
0

Homework Statement


I have a problem where I have a sphere with radius R centered at (0,0,0), and two given points on the surface of the sphere A=(a1,a2,a3) and B=(b1,b2,b3). I have to find/derive a parametric equation to describe the path from point A to point B along the surface of the sphere.


Homework Equations


I need to provide x(t)=?, y(t)=?, z(t)=? in general terms to describe the path between any two points on the surface of a sphere with any radius.


The Attempt at a Solution


When giving values to the points I can figure out how to find a plane that passes through the center of the sphere and the two points, but I don't know how to make a parametric equation to describe the circle of intersection between the sphere and the plane. If I could do that, I could set the parameters to only give me the portion of arc from A to B. I'm not exactly sure that I'm on the right track with the plane/sphere intersection idea, so any help would be much appreciated.
 
Physics news on Phys.org
First, try the problem in two dimensions. You can use sin and cosine to define the circle. And then use rotations to rotate the circle to 3d. (This approach looks rather hard but not really if you can know matrices approach to do that) I think you do need to know the plane in which all three points fall.

Using above here's What I will do:

-find the plane
-find angle it makes with the z axis
-use matrices to rotate the plane to x-y plane
-solve the problem
-rotate back to the original problem using matrices again

I cannot think of any easier way at the moment.
 
A great circle is on a plane passing through the center of the circle and so will be the plane containing the points (0,0,0), (a1,a2,a3), and (b1,b2,b3). Find the equation of that plane: Ax+ By+ Cz= D for some numbers A,B,C,D. The equation of the sphere is x^2+ y^2+ z^2= R^2 where R^2= a1^2+ a2^2+ a3^2= b1^2+ b2^2+ b3^2 (and those last two must be equal in order that (a1, a2, a3) and (b1, b32, b3) lie on the same sphere). You have two equations in 3 variables so you can solve for two of them in terms of the third. That will give you parametric equations for the circle with that third variable as parameter.
 

Similar threads

  • · Replies 12 ·
Replies
12
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 21 ·
Replies
21
Views
4K
Replies
6
Views
2K
  • · Replies 13 ·
Replies
13
Views
1K
Replies
11
Views
3K
Replies
1
Views
2K
  • · Replies 11 ·
Replies
11
Views
3K
Replies
7
Views
2K