Electromagnetism

Lenz's Law

Induced currents oppose the change in magnetic flux that causes them — a sign of energy conservation

Lenz's law states that the direction of an induced current always opposes the change in magnetic flux that creates it. It's the negative sign in Faraday's law (EMF = -dΦ/dt) — energy conservation in disguise. Push a magnet into a coil, induced current makes the coil resist the magnet. Powers magnetic braking, eddy current damping, and underlies all generators and motors.

  • StatementInduced current opposes the change in flux
  • SourceEnergy conservation (no free energy)
  • Faraday's lawEMF = -dΦ/dt (the minus sign IS Lenz's law)
  • DiscoveredHeinrich Lenz, 1834
  • ApplicationsMagnetic brakes, eddy currents, induction motors
  • Energy sourceMechanical work that creates the flux change

Interactive visualization

Press play, or step through manually. The visualization is yours to drive — try it before reading on.

Open visualization fullscreen ↗

Watch the 60-second explainer

A condensed visual walkthrough — narrated, captioned, under a minute.

Lenz's law

The induced current in a closed circuit flows in a direction that opposes the change in magnetic flux that produced it.

Mathematically, this is the negative sign in Faraday's law:

EMF = -dΦ/dt

The negative sign is Lenz's law in equation form.

Visualizing Lenz's law

ScenarioFlux changeInduced current directionEffect
Magnet (N pole forward) pushed into coilIncreasing in coilCounterclockwise (viewed from magnet) — creates N facing magnetRepels magnet (resistance)
Magnet (N pole forward) pulled OUT of coilDecreasing in coilClockwise — creates S facing magnetAttracts magnet (resistance)
External B increasing through coilIncreasingOpposes BReduces increase
External B decreasingDecreasingReinforces BCounters decrease

Energy conservation

Lenz's law is a manifestation of energy conservation. Consider:

  • If induced current ADDED to the change → you'd get magnetic energy increasing without input. Push a magnet in slowly → coil pulls it in faster → free kinetic energy → free energy. NO.
  • Lenz forces you to do WORK against the induced opposition. That work goes into the induced current's energy (which dissipates as heat in resistance, or stored as KE if motor turns).

The mechanical work to push a magnet through a coil EQUALS the electrical energy generated.

Real applications

SystemHow Lenz's law works
Magnet falling through copper tubeEddy currents in tube oppose magnet's motion → terminal velocity ~few m/s
Roller coaster magnetic brakesConductors near track experience induced eddy currents; opposite force decelerates train
Train regenerative brakingMotor used as generator; energy harvested back to overhead lines or batteries
Induction motor rotorStator's rotating B induces currents in rotor; opposing torque drags rotor along
Transformer core lossesEddy currents in core (laminated to minimize)
Levitating frog (high B field)Diamagnetic response — induced currents in water in frog oppose strong B → repulsion

JavaScript — Lenz's law applications

// Magnetic braking force on a moving conductor
function magneticBrakeForce(B, length, velocity, resistance) {
  // Motional EMF = B·L·v; current = EMF/R; force = B·I·L
  const I = B * length * velocity / resistance;
  return B * I * length;  // F = ILB, opposing motion
}

// 1 m wide rail in 0.1 T field, moving 1 m/s, 1 Ω resistance
console.log(`Brake force: ${magneticBrakeForce(0.1, 1, 1, 1).toFixed(2)} N`);  // 0.01

// Magnet falling through tube: terminal velocity (rough model)
function terminalVelocityInTube(mass, B, alpha) {
  // F_drag = α·v at terminal: F_drag = mg
  // α depends on tube conductivity and magnet geometry
  return mass * 9.81 / alpha;
}

// Back-EMF in a motor
function backEMF(N, B, A, omega) {
  // Same as generator EMF
  return N * B * A * omega;
}

// At full speed, back-EMF nearly equals supply voltage
function motorCurrent(V_supply, V_back_EMF, R_motor) {
  // I = (V_supply - V_back_EMF) / R
  return (V_supply - V_back_EMF) / R_motor;
}

// Stalled motor (no back-EMF): I = V/R, large
console.log(`Stalled motor: ${motorCurrent(120, 0, 5)} A`);  // 24 A
// Spinning motor (back-EMF 100V): I = 20/5 = 4 A
console.log(`Spinning motor: ${motorCurrent(120, 100, 5)} A`);

// Eddy current power loss in a conductor
function eddyPower(B, area, frequency, conductivity) {
  // Rough; depends on geometry
  // Power ~ (B·f)² · σ · A
  return B * B * frequency * frequency * conductivity * area;
}

// Magnetic levitation force on a diamagnetic object (rough)
function diamagneticForce(susceptibility, B, gradB) {
  // F = -χ · V · B · ∇B / μ_0 (per unit volume)
  const mu_0 = 4 * Math.PI * 1e-7;
  return -susceptibility * B * gradB / mu_0;
}

// Water (χ ≈ -9.1e-6), in 16 T field with gradient 1000 T/m
console.log(`Diamagnetic levitation force: ${diamagneticForce(-9.1e-6, 16, 1000).toExponential(2)} N/m³`);
// Strong enough to levitate small objects

Where Lenz's law shows up

  • Generators. Conservation of energy — work in equals electrical energy out.
  • Motors. Back-EMF limits current; Lenz's law explanation.
  • Magnetic brakes. Induced currents oppose motion → smooth, frictionless braking.
  • Transformers. Energy transfer via mutual induction; Lenz's keeps it from being a "free energy" device.
  • Induction stoves. Eddy currents in pots are induced; Lenz's law sets their direction.
  • Diamagnetic levitation. Induced currents in conductors create repulsion (Meissner effect in superconductors).
  • Educational physics. Classic demo: magnet through copper tube; falls slowly, dramatically.

Common mistakes

  • Forgetting Lenz IS the minus sign. The negative sign in Faraday's law isn't a quirk — it's the law itself.
  • Treating induced current direction as random. Always opposes the change. Use right-hand rule with this in mind.
  • Confusing flux change with B field strength. Lenz cares about CHANGE in flux. If B is constant (no change), no induction.
  • Thinking about static fields. Lenz only applies to time-varying flux. Static fields don't induce.
  • Ignoring energy source. The energy for the induced current comes from somewhere — usually mechanical work being done against the induced opposition.
  • Confusing motional and time-varying induction. Both are aspects of Faraday's law. Sign rule (Lenz) applies to both.

Frequently asked questions

Why must induced current oppose the change?

Energy conservation. If induced current AIDED the change, you'd have a positive feedback loop creating energy from nothing — impossible. So induced current must SUBTRACT from the change. The work needed to maintain the change pays for the induced current's energy. No free lunch.

How do I figure out induced current direction?

(1) Determine direction of change in flux (increasing or decreasing). (2) Use right-hand rule: imagine grabbing the coil with current direction such that resulting B field opposes the change. (3) That's the induced current direction. Practice with concrete cases — pushing a magnet in, pulling it out, etc.

How does magnetic braking work?

Strong magnet near a moving conducting plate (or vice versa). As plate moves, it experiences changing B at each point — induced eddy currents. By Lenz's law, these currents oppose the motion → force opposing the motion. Result — magnetic brake. Used in roller coasters, trains, exercise bikes. Wears nothing (no friction); dissipates kinetic energy as heat in the conductor.

What about a magnet falling through a copper tube?

Falling magnet creates changing flux at each point along the tube. Induced currents in tube oppose the change — creating B that pushes against the magnet (Lenz's). Magnet falls slower than gravity alone — terminal velocity due to induced "drag." Surreal effect; classic physics demo. Aluminum tubes also work; non-conducting tubes don't.

How are eddy currents both useful and harmful?

Useful — magnetic brakes (intentional eddy currents), induction heaters (eddy current heat metal directly). Harmful — transformer cores (eddy currents in cores waste energy as heat). Solution: laminated cores break up eddy current paths. Each thin lamination is electrically isolated → smaller current loops, less loss.

How does Lenz's law connect to motor back-EMF?

Spinning motor (rotor in B field) generates EMF (acts like a generator at the same time). This back-EMF opposes the applied voltage. As motor speeds up, back-EMF approaches applied V; current decreases. Lenz's law: induced EMF opposes the current that's driving the motor — that's why motors draw most current at startup.

Does Lenz's law violate Newton's third law?

No, complementary. Newton's 3rd — equal-opposite forces between objects. Lenz — induced current opposes the change. Both are forms of conservation laws. A magnet pulled out feels force pulling it back (Lenz); the coil feels equal force pulling toward the magnet (3rd). Consistent.