I'm having trouble wtih the exposition to problems such as the one below, and I'd therefore like to request suggestions on how to improve it. The problem, my solution, and my struggles are below.
Problem
The surface of a football is the ellipsoid $4x^2 + y^2 + 4z^2 = 9$. A drop of water starts at $(1,1,1)$ and rolls down the path of steepest descent. Describe its path.
(Source: Shifrin's Multivariable Mathematics)
Solution
The drop takes the path $$p(t) = \begin{bmatrix}t^4 \\ t \\ \frac 1 2 {\sqrt{9 - 4t^8 - t^2}} \end{bmatrix}$$ with $t_0 =1$, for $t \geq 1, {\sqrt{9 - 4t^8 - t^2}} \geq 0$. I am assuming that when the drop reaches the widest part of the football, it stops or falls off, but doesn't continue rolling underneath.
Proof: Given surface $S$ defined by $z(x,y)$, any curve $\gamma: [a,b] \to \mathbb R ^3$ is a path of steepest descent of $S$ iff two conditions are met:
- For all $t \in [a,b], \gamma(t) \in S$
- For all $t \in [a,b]$, there exists an $m > 0$ such that $$(D \gamma(t))_x = m (\nabla z)_x \\ (D \gamma(t))_y = m (\nabla z)_y.$$
Since $p$ clearly meets condition 1, it suffices to show $p$ meets condition 2 as well.
For all $(x,y,z), z \in [0,1]$ on the ellipsoid's surface, we have $$z = \frac 1 2 {\sqrt{9 - 4x^2 - y^2}}$$ and there exists a function $g: \mathbb R^2 \to \mathbb R$ such that $$\nabla z = |g(x,y)| \begin{bmatrix}4x \\ y\end{bmatrix}.$$ Thus, curve $p$ will be a path of steepest descent iff $$Dp(t) = |h(t)|\begin{bmatrix}4(p(t))_x \\ (p(t))_y \\ \zeta(t)\end{bmatrix}$$ for some functions $h, \zeta: \mathbb R \to \mathbb R$.
To show $p$ meets this, reparameterize $p$ as $q(u) = p(e^u)$, so that $$q(u) = \begin{bmatrix}e^{4u} \\ e^u \\ \xi(u) \end{bmatrix}$$ for some $\xi: \mathbb R \to \mathbb R$. Therefore, $$Dq(u) = \begin{bmatrix} 4e^{4u} \\ e^u \\ \xi(u) \end{bmatrix} = \begin{bmatrix} 4(q(u))_x \\ (q(u))_y \\ \xi(u) \end{bmatrix}$$ and the proof is complete.
Struggles
I believe my solution correct and my proof rigorous. However, the exposition is difficult, largely because it involves looking at the curve and surface from shifting perspectives:
- At some points I want all three dimensions, but at some points only the projection to $(x,y)$. For example, I would have liked to simply write in condition 2 "$D \gamma(t) = m \nabla z$", but this would be incorrect, as $\gamma$ is three dimensional. I handled this by defining dummy functions $\zeta, \xi$ for $z$, and using subscripts $\cdot _x \cdot _y$, but this obfuscates the main point.
- At some points I need to use implicit definitions of the surface whereas at others I need a function $z(x,y)$.
- At some points I need the gradient whereas at others the derivative (Jacobian).
I tried many variations of the exposition, such as taking the projection of $p$ to the $xy$ plane, or using Leibnitz partial derivative notation; the best result is what I posted above. Still, the result seems to be hard to read, and so I request your help.
Please note that there are similar questions on math.SE asking for the direction of the drop at one particular point; this question, however, asks for the entire path. Moreover, my question is how to improve exposition and writing of this proof (not how to find a different proof).