Skip to main content

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)

Let’s now imagine that the particle is in a potential field — such as a spring system or gravitational field. For simplicity, suppose: The vertical direction corresponds to height (like gravity),  Then the potential energy is based on y(t): PE(t) = m * g * y(t) = m * g * b * sin(ωt) This is not constant — the particle has more potential energy at the top of the ellipse. ---

Total Mechanical Energy

The total energy at any moment is: E(t) = KE(t) + PE(t) If no external forces are doing work (no friction or air resistance), then energy is conserved— though it flows between kinetic and potential forms. Let’s plot these in Octave. ---

Octave Code to Visualize Energy

We’ll use: a = 5, b = 3 (ellipse size) * ω = 2π (one cycle per second) * m = 1 kg * g = 9.8 m/s²
% Parameters
a = 5;
b = 3;
omega = 2 * pi;
m = 1;
g = 9.8;
t = linspace(0, 1, 1000);  % One full cycle

% Position
x = a * cos(omega * t);
y = b * sin(omega * t);

% Velocity components
vx = -a * omega * sin(omega * t);
vy =  b * omega * cos(omega * t);
v_squared = vx.^2 + vy.^2;

% Energies
KE = 0.5 * m * v_squared;
PE = m * g * y;
E_total = KE + PE;

% Plot energies
plot(t, KE, 'r', t, PE, 'b', t, E_total, 'k');
legend('Kinetic Energy', 'Potential Energy', 'Total Energy');
xlabel('Time (s)');
ylabel('Energy (Joules)');
title('Energy on an Elliptical Path');
---

What Does the Plot Show?

* Kinetic and potential energy oscillate in opposite phases. * When the particle is highest (maximum PE), it is slowest (minimum KE). * When it's lowest, it moves fastest. * The **total energy remains constant** — confirming conservation of energy. ---

What Does This Teach Us?

  • Motion isn’t just geometry — it’s energy flowing back and forth.
  • Even in a simple ellipse, energy can be rich and dynamic.
  • This kind of model appears in planetary motion, spring systems, and pendulums.
---

Try This Yourself:

  • Change b to be closer to a and see what happens to the energy profile.
  • Try b = 0 to turn the ellipse into a horizontal line (pure cosine motion).
  • Add friction by subtracting a small amount from KE at each time step and observe energy loss.

Comments

Popular posts from this blog

What is Mathematical Fluency?

What does it really mean for students to be mathematically fluent? If you’ve been in any math PD over the past few years, you’ve likely heard the phrase everywhere. We talk about fluency as something students should develop, strengthen, and demonstrate, but it can still feel abstract when we try to describe it in observable, classroom-ready terms. This post breaks down mathematical fluency into the two simplest frames we can use as teachers: what it looks like and what it sounds like . These descriptions can guide instruction, assessment, student goal-setting, and even walkthrough conversations with colleagues or administrators. What Mathematical Fluency Looks Like In a classroom where students are developing mathematical fluency, you see students making choices about strategies rather than following steps robotically. They use representations—number lines, diagrams, tables, graphs, manipulatives, symbolic expressions—and switch between them to make sense of a problem. They move ...

The Tribe of Math Mentors: 11 Questions Every Educator Should Answer

It is easy to get caught up in the vague, existential questions of education: How do I become a better teacher? How do I make math engaging? How do I survive the burnout? But as author Tim Ferriss noted when writing his book Tribe of Mentors, "Life punishes the vague wish and rewards the specific ask." When Ferriss set out to deconstruct the habits of world-class performers, he didn’t ask them broad questions about "the secret to success." He engineered 11 highly specific questions designed to bypass rehearsed answers and force his subjects to share actionable, vulnerable, and unconventional insights. Recently, I started thinking about how perfectly this methodology translates to our world. What if we asked these exact types of questions to master math teachers? What if we used them to guide the next generation of educators? Here is my best thinking of what Ferriss’s Tribe of Mentors questionnaire looks like when translated into the context of the mathematics classr...

Beyond Taylor Series: The Magic and History of Padé Approximations

If you have ever taken a calculus class, you probably remember the Taylor series. It is the mathematical magic trick that lets you turn complicated functions—like sines, cosines, and exponentials—into simple, infinitely long polynomials. For centuries, it has been a cornerstone of numerical mathematics. But the Taylor series has a dark secret: it frequently breaks. If a function has a vertical asymptote (a pole) or if you move too far from your starting point, the Taylor series spirals out of control into infinity. It is strictly bounded by what mathematicians call a "radius of convergence." Enter the Padé approximation . Instead of using a single polynomial to estimate a function, a Padé approximant uses a fraction (a ratio of two polynomials). This simple structural change unlocks a profound level of mathematical power, allowing us to see past the limits of Taylor series and model complex, chaotic systems in modern physics and engineering. A Brief History: From Franc...