Functional Differential Geometry
.
The metric for a unit sphere, expressed in colatitude and longitude
, is
Compute the Lagrange equations for motion of a free particle on the sphere and convince yourself that they describe great circles. For example, consider the motion on the equator and motion on a line of longitude (
is constant).
~~~
(define ((Lfree mass) state) (* 1/2 mass (square (velocity state)))) (define ((sphere->R3 R) state) (let ((q (coordinate state))) (let ((theta (ref q 0)) (phi (ref q 1))) (up (* R (sin theta) (cos phi)) (* R (sin theta) (sin phi)) (* R (cos theta)))))) (define ((F->C F) local) (up (time local) (F local) (+ (((partial 0) F) local) (* (((partial 1) F) local) (velocity local))))) (define (Lsphere m R) (compose (Lfree m) (F->C (sphere->R3 R)))) (show-expression ((Lsphere 'm 'R) (up 't (up 'theta 'phi) (up 'thetadot 'phidot)))) (show-expression (((Lagrange-equations (Lsphere 'm 'R)) (up (literal-function 'theta) (literal-function 'phi))) 't))


.
So
for some constant .
.
Since for some
,
This is equivalent to setting up the coordinate system such that the initial value of equals zero.
.
Also, since for some
,
.
— Me@2022-10-08 04:56:27 PM
.
.
2022.10.09 Sunday (c) All rights reserved by ACHK
You must be logged in to post a comment.