Phase Portrait
A geometric picture of how a dynamical system evolves over time — plotting trajectories through state space to reveal attractors, repellers, and the qualitative behavior of differential equations.
// 01 — The chart
What it looks like
A phase portrait of a damped harmonic oscillator showing trajectories spiraling inward toward a stable equilibrium (spiral sink).
// 02 — Definition
What is a phase portrait?
A phase portrait is a geometric visualization of the trajectories of a dynamical system in state space (also called phase space). Instead of plotting variables against time, a phase portrait plots one state variable against another, showing how the system’s state evolves as a curve (trajectory) that traces its path through all possible states.
For a two-dimensional system described by differential equations dx/dt = f(x,y) and dy/dt = g(x,y), the phase portrait shows the x-y plane filled with trajectories. Each trajectory corresponds to a different initial condition. Together, they reveal the system’s qualitative behavior: where it converges (attractors), where it diverges (repellers), and what patterns it follows (limit cycles, saddle points).
Phase portraits are fundamental to qualitative theory of differential equations because they provide a complete picture of system behavior without requiring exact solutions. A single glance reveals stability, oscillation, and long-term fate of the system.
Origin: The concept dates back to Henri Poincaré’s work in the 1880s on celestial mechanics, where he pioneered the geometric study of differential equations and introduced the idea of classifying equilibrium points by their phase-plane behavior.
// 03 — Anatomy
Parts of a phase portrait
// 04 — Usage
When to use it — and when not to
- Studying the qualitative behavior of a system of ODEs without solving them exactly
- Classifying equilibrium points as stable/unstable nodes, spirals, centers, or saddles
- Visualizing oscillatory dynamics, limit cycles, or chaotic attractors
- Teaching or communicating dynamical systems concepts to students
- Analyzing predator-prey models, electrical circuits, or mechanical oscillators
- Your system has more than 2–3 state variables — the portrait becomes impossible to visualize directly
- You need to show how variables change over time explicitly — use a time-series plot
- The audience lacks familiarity with state-space concepts
- You want to show statistical distributions or categorical comparisons
- The system is purely stochastic with no deterministic structure
// 05 — Reading guide
How to read a phase portrait
Follow these steps to interpret the dynamics encoded in a phase portrait.
Identify the state variables on each axis
Understand what x and y represent — position and velocity, prey and predator populations, voltage and current, etc. This sets the physical meaning of each location in the portrait.
Locate equilibrium points
Find the fixed points where trajectories converge to, diverge from, or circulate around. These are the most important features of the portrait.
Follow the direction arrows
Arrows on trajectories indicate how the system evolves forward in time. They reveal whether the system spirals inward (stable), outward (unstable), or follows closed loops (conservative).
Classify the behavior near each equilibrium
Trajectories spiraling in = stable spiral. Straight convergence = stable node. Closed loops = center. Trajectories diverging = unstable. Approaching and retreating = saddle point.
Look for limit cycles and separatrices
Closed curves that trajectories approach from both inside and outside are limit cycles — self-sustained oscillations. Separatrices are special trajectories that divide the plane into regions with different long-term behavior.
// 06 — Pitfalls
Common mistakes
Confusing phase portraits with time-series plots
In a phase portrait, time is implicit — it flows along the trajectory. The axes are state variables, not time. A spiral doesn't mean sinusoidal oscillation in time.
Omitting direction arrows
Without arrows, you can't distinguish a stable spiral (inward) from an unstable one (outward). Always include direction indicators on trajectories.
Drawing too few trajectories
A sparse portrait may miss important features like saddle separatrices or limit cycles. Include enough trajectories from varied initial conditions to capture the full qualitative picture.
Applying to high-dimensional systems without projection
Phase portraits work best in 2D. For higher-dimensional systems, you must project onto 2D subspaces or use Poincaré sections, which introduces interpretation challenges.
// 07 — In the wild
Real-world examples
Predator-prey ecology (Lotka-Volterra)
Ecologists use phase portraits to visualize the cyclical rise and fall of predator and prey populations, showing closed orbits that represent sustained oscillations in population sizes.
Electrical circuit analysis
Engineers plot voltage vs. current phase portraits for oscillator circuits to determine whether oscillations are self-sustaining (limit cycle) or decay over time (stable spiral).
Cardiac physiology
Heart rhythm researchers use phase portraits of membrane potential and ion channel gating variables to study action potential dynamics and identify arrhythmia-prone regimes.
// 08 — Quick reference
Key facts
// 09 — Variations
Variations of the phase portrait
Vector field (direction field)
Instead of full trajectories, shows arrows at a grid of points indicating the direction and magnitude of the system's velocity at each location.
Poincaré section
A lower-dimensional slice through the phase space that captures the intersection of trajectories with a chosen surface — used for 3D+ systems.
Nullcline overlay
Adds curves where dx/dt = 0 and dy/dt = 0. Their intersections are equilibrium points, and the regions between them show flow direction.
// 10 — FAQs
Frequently asked questions
What is a phase portrait?+
A phase portrait is a geometric visualization of the trajectories of a dynamical system in state space (also called phase space). Instead of plotting variables against time, a phase portrait plots one state variable against another, showing how the system's state evolves as a curve (trajectory) that traces its path through all possible states.
When should you use a phase portrait?+
Use a phase portrait when studying the qualitative behavior of a system of ODEs without solving them exactly. It also works well when classifying equilibrium points as stable/unstable nodes, spirals, centers, or saddles, and when visualizing oscillatory dynamics, limit cycles, or chaotic attractors.
When should you avoid a phase portrait?+
Avoid a phase portrait when your system has more than 2–3 state variables — the portrait becomes impossible to visualize directly. It is also a poor fit when you need to show how variables change over time explicitly — use a time-series plot, or when the audience lacks familiarity with state-space concepts.
What is another name for a phase portrait?+
Phase Portrait is also known as Phase plane, phase diagram, state portrait. The name varies between fields, but the visualisation technique is the same.
Is a phase portrait suitable for dashboards?+
Yes — a phase portrait can work well in dashboards as long as the panel is large enough for readers to perceive the encoded values, has a clear title, and includes the legend or axis labels needed to interpret it.
What category of chart is a phase portrait?+
Phase Portrait belongs to the Scientific family of charts. Charts in that family are designed to answer the same kind of question, so they often work as alternatives when one doesn't quite fit your data.