Energy on the Ellipse: Kinetic and Potential Energy in Motion
In our previous posts, we explored how a particle traces out an ellipse and what happens when its speed changes. But motion isn’t just about where and how fast something goes — it’s also about energy. Today, we’ll explore the kinetic and potential energy of a particle moving along an elliptical path. We'll use physics to understand the motion and simulate the energies using Octave. --- The Position and Velocity Revisited Let’s return to our position vector: r(t) = < a*cos(ωt), b*sin(ωt) > From this, the velocity is: v(t) = < -a*ω*sin(ωt), b*ω*cos(ωt) > This gives us the magnitude of velocity (speed): |v(t)| = ω \* sqrt( a²*sin²(ωt) + b²*cos²(ωt) ) --- Kinetic Energy (KE) Kinetic energy is given by the formula: KE = (1/2) \* m \* |v(t)|² So for our particle of mass m , we get: KE(t) = (1/2) \* m \* ω² \* ( a²*sin²(ωt) + b²*cos²(ωt) ) This energy varies over time as the particle speeds up and slows down along the ellipse. --- Potential Energy (PE) ...