A particle travels on a unit sphere from a point $(z, \theta) = (z_0, 0)$ to $(z_0, \theta_0)$ in cylindrical coordinates, so z0 = const. Find the distance travelled and compare with the "great circle" (G.C.) distance between those points.
My solution:
a. $Distance = r \theta = \sqrt{(1 - z_0^2)} \theta_0$, where r is the radius of a circle, cut from sphere by $z = z_0$.
b. The great circle arc distance can be found by a dot product of vectors to the beginning and the end of the journey:
$r_0 = (\sqrt{(1 - z_0^2)}, 0, z_0)$
$r1 = (\sqrt {(1 - z_0^2)} \cos \theta_0, \sqrt {(1 - z_0^2)} \sin \theta_0, z0)$
$G.C. Distance = \arccos (r_0 r_1) = \arccos((1-z_0^2) \cos \theta_0 + z_0^2) $
My question: how to show (from this calculation that $Distance >= G.C. Distance$. I can do it from geometric considerations, but would like to derive it analytically from the formulas above (or any alternative formulas that can be derived).