Momentum-Position Graphs- How to Read and Interpret Them

What Momentum-Position Graphs Actually Are

A momentum-position graph plots two variables on perpendicular axes. The horizontal axis shows position (x), and the vertical axis shows momentum (p). This isn't just a fancy chart—it's a phase space portrait that tells you everything about a system's motion at a glance.

Physicists use these graphs because they reveal patterns you can't see in separate position-time or velocity-time graphs. The shape of the trajectory tells you the type of motion. The area enclosed tells you energy. The direction of travel tells you where the system is heading.

If you've been staring at these graphs and feeling lost, that's normal. Schools rarely teach phase space properly. Most students memorize shapes without understanding what they're looking at. This article fixes that.

Why These Graphs Matter

Position-time graphs show where something is. Velocity-time graphs show how fast it's moving. Momentum-position graphs show the relationship between both—and that's where the real physics lives.

Here's what you can extract from a single momentum-position plot:

For conservative systems—ones where energy doesn't leak away—these graphs show closed orbits. The path never ends. The system cycles forever. That's not poetry. That's physics.

The Basic Shape Tells You the Motion Type

Different physical systems produce different shapes on momentum-position graphs. You need to recognize these patterns.

Simple Harmonic Motion: The Ellipse

A mass on a spring moving without friction traces an ellipse centered at the origin. The equation governing this is:

p = mωA sin(ωt)
x = A cos(ωt)

Eliminate time, and you get the ellipse equation:

(x/A)² + (p/mωA)² = 1

The ellipse's semi-major axis equals the amplitude A. The semi-minor axis equals mωA. The area is πmωA², which corresponds to the total energy E = ½kA² divided by ω.

Free Particle Motion: A Horizontal Line

A particle moving with constant velocity (no forces) has constant momentum. On a momentum-position graph, this looks like a horizontal line. The particle's position changes, but its momentum stays fixed.

This is the simplest case. No curves. No fancy geometry. Just a flat line at whatever momentum value the particle started with.

Particle Under Constant Force: A Parabola

Apply a constant force (like gravity near Earth's surface), and the momentum increases linearly with time while position increases quadratically. The result on a phase diagram is a parabola.

This isn't a closed orbit. The trajectory keeps extending. The particle accelerates in one direction indefinitely.

Bound vs Unbound Motion

The shape immediately tells you if motion is bounded:

If the trajectory closes on itself, the system repeats. If it doesn't, the system keeps evolving without returning to its starting point.

Reading Specific Points on the Graph

Every point on a momentum-position graph represents a specific state. You can read physical quantities directly.

The x-axis (y = 0): Momentum is zero. This happens at turning points—the particle stops, reverses direction. For a mass on a spring, these are the extreme positions ±A.

The y-axis (x = 0): Position is zero. This is the equilibrium point. Here, momentum reaches its maximum (positive or negative). Velocity is maximum. The particle moves fastest through this point.

Quadrant analysis:

The trajectory always moves clockwise for one-dimensional motion. This isn't arbitrary—it's a consequence of how momentum and position change with time. When x increases, p decreases (if force opposes motion), and vice versa.

The Area Under the Curve: What It Actually Means

For a closed orbit (like the ellipse of simple harmonic motion), the area enclosed has physical significance. It equals the action or relates directly to the system's energy.

For a harmonic oscillator:

Area = π × (mωA) × A = πmωA²

Since E = ½kA² and ω = √(k/m), you can show:

Area = 2πE/ω

The area scales with energy. Higher energy means a larger ellipse. This gives you a direct visual interpretation: larger orbits mean more energy.

How To Read a Momentum-Position Graph: Step by Step

Here's the practical process for interpreting any momentum-position graph you encounter:

Step 1: Identify the Shape

Is it a closed curve or open? Ellipse, circle, parabola, line? This tells you the type of system and whether motion is bounded.

Step 2: Find the Axes

Confirm which axis is position and which is momentum. Horizontal = position (x), Vertical = momentum (p). Label the scales if provided.

Step 3: Locate Key Points

Find where the trajectory crosses the axes. These are turning points (x-axis) and equilibrium positions (y-axis). Note the maximum and minimum values.

Step 4: Determine Direction of Motion

Use the clockwise rule. Or, check the sign of momentum at different positions. Momentum positive means moving in one direction; negative means the opposite.

Step 5: Extract Quantities

Measure what you need from the graph:

Common Mistakes to Avoid

Students consistently make the same errors. Don't be one of them.

Mistaking velocity for momentum: These are different quantities. Momentum is mass times velocity. If mass varies (like in rocket problems), the graphs look different even if velocity patterns are identical.

Forgetting the clockwise direction: The trajectory doesn't wander randomly. It moves clockwise. Use this to figure out what happens at any point in the motion.

Ignoring units: Position might be in meters, momentum in kg·m/s. Check what you're actually plotting. Don't assume standard units.

Confusing the graph with a trajectory in space: The curve isn't the path the object takes through physical space. It's a path through a mathematical space (phase space). The object might move left and right along a line in real space while tracing a full ellipse here.

Comparing Motion Types on Phase Space

Motion Type Phase Space Shape Bounded? Key Feature
Simple Harmonic Oscillator Ellipse Yes Centered at origin
Free Particle Horizontal line No Constant momentum
Constant Force Parabola No Opens in one direction
Damped Oscillator Spiral inward Yes (decays) Radius decreases each cycle
Particle in Square Well Truncated ellipse Yes Flat regions at boundaries

Getting Started: Plotting Your Own Momentum-Position Graph

You don't need expensive software. Here's how to generate these graphs:

Method 1: Parametric Equations (Quickest)

If you know x(t) and p(t), use a parametric plotter. For a harmonic oscillator:

Eliminate t to get the ellipse equation. Plot over 0 ≤ t ≤ 2π/ω for a complete orbit.

Method 2: Numerical Integration

For complex systems without clean equations, use Euler or Runge-Kutta methods:

  1. Start with initial x₀ and p₀
  2. Calculate force F from potential energy: F = -dU/dx
  3. Update momentum: p(new) = p(old) + F·Δt
  4. Update position: x(new) = x(old) + (p/m)·Δt
  5. Repeat, plotting each (x, p) pair

Method 3: Python/MATLAB

Basic code structure:

import numpy as np
import matplotlib.pyplot as plt

t = np.linspace(0, 2*np.pi, 1000)
x = np.cos(t)
p = -np.sin(t)

plt.plot(x, p)
plt.xlabel('Position (x)')
plt.ylabel('Momentum (p)')
plt.axhline(0, color='k', linewidth=0.5)
plt.axvline(0, color='k', linewidth=0.5)
plt.grid(True)
plt.show()

This plots a unit ellipse for a harmonic oscillator with m = ω = A = 1.

What You Should Take Away

Momentum-position graphs are phase space representations. The shape tells you the physics. Ellipse means harmonic oscillation. Line means constant motion. Open curve means unbounded motion.

Read axes correctly. Horizontal is position, vertical is momentum. Crossing the x-axis means zero momentum (turning point). Crossing the y-axis means equilibrium position (maximum speed).

Direction is always clockwise for one-dimensional motion. The area enclosed equals energy-related quantities for conservative systems.

Stop memorizing. Start seeing. The geometry is the physics.