Electricity and Magnetism
Magnetism and induction
The link that spins motors and charges phones in air
A motor spins your fan. A pad charges your phone through a gap of air. An induction cooktop boils water in a pan while the glass beside it stays cool. All three run on a single link between electricity and magnetism - and the link has one strict rule that decides when it works at all.
You already know magnets: two bar magnets snap together one way and shove apart the other, just like charges, but with poles instead of plus and minus. For centuries magnetism and electricity looked like separate subjects. They are not. The hinge fact, discovered by experiment, is this: a moving charge makes a magnetic field, and a changing magnetic field pushes charges. Electricity in motion is magnetism.
Predict first: when is current induced?
The answer surprises almost everyone: none. A strong steady field sitting in the coil induces nothing. What induces a current is the field changing. Shove the magnet in and the meter kicks one way; pull it out and it kicks the other; park it anywhere and hold still, and the meter falls to zero no matter how close the magnet is. Only motion, only change, counts.
Play with it: only the change counts
Drag the magnet past the coil below, or press auto-sweep. Watch the meter needle: it swings only while the magnet is moving, and it swings the opposite way going in versus coming out. Then switch to the Motor tab and run a current the other direction to make the loop spin - the same link, run in reverse.
Drag the magnet, or press auto-sweep. The needle only moves while the magnet is moving. Park it inside the coil and hold still - the needle drops to zero, even though the field through the coil is strong.
Flux, and Faraday's law
To make "the field through the coil" precise we need one idea: , written . Think of it as how many field lines thread through the loop. A strong magnet near a big coil means a lot of flux; far away, little. The experimental law tying flux to voltage is (a stated result[1]):
Read it slowly. The induced voltage is not proportional to the flux; it is proportional to how fast the flux is changing. That is the rate-of-change, the derivative again. A constant flux, however large, has zero rate of change, so it induces nothing - exactly what the widget shows when you hold the magnet still. The minus sign encodes Lenz's law: the induced current fights the change that made it, which is why the needle flips direction between pushing in and pulling out.
def induced_emf(flux_samples, dt):
# flux_samples: the flux through the coil at each time step
emf = []
for i in range(1, len(flux_samples)):
d_phi = flux_samples[i] - flux_samples[i - 1]
emf.append(-d_phi / dt) # Faraday: EMF = -dPhi/dt
return emf
# magnet held still -> flux constant -> every difference is 0 -> no current
print(induced_emf([0.9, 0.9, 0.9, 0.9], 0.01)) # [0.0, 0.0, 0.0]
# magnet moving in -> flux rising -> nonzero, one sign the whole way
print(induced_emf([0.2, 0.5, 0.8, 0.95], 0.01)) # negative values (Lenz)The same link, six devices
Every device in the anchor is one law used two ways. A motor runs it forward: send a current through a coil in a magnet's field and each wire feels a sideways force, so the coil spins. A generator runs it backward: spin a coil in a field and the changing flux induces a current - a motor and a generator are the same machine. A transformer and a wireless charger put two coils close: an alternating current in one makes a changing field that induces a voltage in the other, ferrying energy across a gap with no wire. An induction cooktop induces swirling currents directly in the metal pan, and those currents heat it by the same you met in circuits. A hard drive's read head is a tiny coil: as magnetized patches on the spinning platter rush past, their changing field induces the blips it reads as bits[2].
One law, two directions
Lock it in
- Electricity and magnetism are one subject: a moving charge makes a magnetic field, and a changing magnetic field pushes charges.
- Faraday's law: induced voltage equals minus the rate of change of magnetic flux. Only change induces current.
- A steady field, however strong, induces nothing - hold a magnet still in a coil and the current is zero.
- Induced voltage is the derivative of flux, so it flips sign when the flux stops rising and starts falling (Lenz).
- Motor and generator are the same machine run in opposite directions; transformers, wireless charging, and induction cooktops all use changing flux.
Check yourself
You push a magnet into a coil and stop it halfway, holding it still. During which parts is a current induced?
What matters is not where the magnet is, but what it is doing. Try to state it, then check.
A voltage is induced in a coil when the magnetic flux through it...
Wireless (Qi) phone charging transfers energy across the air gap via...
Match each device to the principle it runs on.
Current in a field feels a force
Motion in a field induces a current
Changing flux couples two coils
Induced currents heat the pan directly
Primary source
The Feynman Lectures on Physics, Vol II Ch 13 to 17 (magnetism and the laws of induction)Feynman derives the magnetic force on moving charges and the flux rule, and shows why the motor and the generator are one machine.
Sources