Parametrization of a circle on a sphere

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 5K views
TimNguyen
Messages
79
Reaction score
0

Homework Statement


Parametrize a circle of radius r on a sphere of radius R>r by arclength.



Homework Equations


Circle Equation: (cos [theta], sin[theta], 0)


The Attempt at a Solution


I don't know if the professor is tricking us, but isn't the parametrization just

Circle: (r*sin[theta]/s, r*cos[theta]/s, s), where s is the arc length?
 
Physics news on Phys.org
The circumference of a circle is [tex]2\pi[/tex], so when you find the length of your circle, you should obtain length=1.

Mat
 
You can always set up your coordinate system so that the circle is at a fixed z.

In spherical coordinates we have [itex]x= Rcos(\theta)sin(\phi)[/itex], [itex]y= R sin(\theta)sin(\phi)[/itex] and [itex]z= R cos(\phi)[/itex]. At fixed z, [itex]\phi= cos^{-1}(z/R)[/itex] and it is easy to show that
[tex]sin(cos^{-1}(z/R))= \frac{\sqrt{R^2- z^2}}{R^}[/tex]

It is also true that with radius r, we have [itex]r^2+ z^2= R^2[/itex] so that [itex]R^2- z^2= r^2[/itex] and so
[tex]sin(\phi)= sin(cos^{-1}(z/R))= \frac{r}{R}[/tex]

That is, [itex]x= r cos(\theta)[/itex], [itex]y= r sin(\theta)[/itex], and [itex]z= \sqrt{R^2- r^2}[/itex], a constant.

But, since [itex]\theta[/itex] is in radians, the arclength of a segment over angle [itex]\theta[/itex] is [itex]s= r\theta[/itex] so that
[tex]\theta= \frac{s}{r}[/tex]
 
Oh, there should not be a [theta] in the trigonometric functions, but rather the value (s/r).

Hence, the parametrization of a circle would be:

(r*cos(s/r), r*sin(s/r), sqrt[R^2 - r^2])

Thanks for all the help!