Faraday's Law of Electromagnetic Induction states that a changing magnetic field within a closed loop of wire induces an electromotive force (voltage) proportional to the rate of change of the magnetic flux. It does not matter how incredibly strong a static magnetic field is; if it is not moving or changing relative to the conductor, it induces exactly zero volts. This principle is the fundamental reason we can step AC voltages up and down, generate grid power, and why a simple relay coil will permanently brick your Arduino if you forget to install a flyback diode.

The Core Principle: Changing Magnetic Fields Create Voltage

When you ask "what is Faradays law" in a practical electronics context, you are really asking about the mathematical relationship between magnetic flux and induced voltage. The law is expressed by the formula:

E = -N (ΔΦ / Δt)

  • E = Induced electromotive force (voltage) in Volts.
  • N = Number of turns in the wire coil.
  • ΔΦ = Change in magnetic flux in Webers (Wb).
  • Δt = Time interval of the change in seconds.

Think of magnetic flux like water filling a bucket; Faraday's law doesn't care how much total water is currently in the bucket, it only cares about how fast the water level is rising or falling. If the water level is static, nothing happens. If you dump a gallon in a millisecond, the reaction is violent.

In a real circuit, this law changes everything when inductive components are present. It dictates that any time current through an inductor changes, the collapsing or expanding magnetic field will induce a voltage that fights or aids the source. This is why inductors resist changes in current, and it is the exact mechanism that allows transformers to transfer energy from a primary winding to a secondary winding without any direct electrical connection.

Worked Numeric Example: Calculating Inductive Kickback

Let's look at a scenario that destroys microcontrollers on workbenches every day: switching off a DC relay. When you open a transistor switch to turn off a relay, the magnetic field in the coil collapses rapidly. According to Georgia State University's HyperPhysics, the faster this collapse, the higher the induced voltage spike.

The Setup:

  • You have a 12V automotive relay coil with 1,200 turns of wire (N = 1200).
  • While energized, the coil generates a magnetic flux of 0.005 Webers (5 mWb).
  • When your microcontroller turns off the driving transistor, the current stops and the magnetic field collapses to zero in just 2 milliseconds (0.002 seconds).

The Calculation:

  • ΔΦ = 0.005 Wb (change from 0.005 to 0)
  • Δt = 0.002 s
  • E = 1200 × (0.005 / 0.002)
  • E = 1200 × 2.5
  • E = 3,000 Volts
The Bench Reality: Even though you are only switching a 12V circuit, Faraday's law dictates that the collapsing field will induce a massive 3,000V spike across the coil terminals. Without a flyback diode (like a standard 1N4007) wired in reverse bias across the coil to clamp this spike, that 3kV will instantly punch through the silicon junction of your switching transistor and fry your microcontroller's GPIO pin.

Where You Meet Faraday's Law in Practice

You interact with electromagnetic induction constantly, whether you are wiring a subpanel or debugging an ESP32 circuit. Here is where this law dictates hardware behavior:

1. Transformers and Power Supplies

Every AC-DC wall wart and mains step-down transformer relies entirely on this law. In a 120V to 12V transformer, the AC mains creates a constantly expanding and collapsing magnetic field in the iron core. Because the secondary winding shares the same core, it experiences the exact same rate of flux change (ΔΦ / Δt). If the primary has 1,000 turns and the secondary has 100 turns, the induced voltage on the secondary is exactly one-tenth of the primary. The frequency of the AC (60Hz in North America) ensures the flux is always changing, keeping the induction active.

2. Generators and Alternators

Whether it is a massive 500MW utility generator or a portable Honda EU2200i inverter generator, the mechanism is identical. A rotor (magnet) spins inside a stator (wire coil). The physical rotation continuously changes the angle and density of the magnetic field passing through the coil, inducing an alternating voltage. The faster you spin the rotor, the higher the frequency and the greater the induced voltage.

3. Wireless Charging (Qi Standard)

When you drop your phone on a Qi charging pad, you are utilizing Faraday's law at high frequencies. The pad contains a primary coil driven by an alternating current at roughly 100 kHz to 300 kHz. This rapidly changing magnetic field passes through the glass and plastic, intersecting a secondary coil inside your phone, inducing an AC voltage that is then rectified to DC to charge the lithium cell.

Common Confusions: Faraday's Law vs. Lenz's Law vs. Faraday Cages

When studying electromagnetism, people frequently tangle up three distinct concepts associated with Michael Faraday and his contemporaries. Here is how to keep them straight on the bench:

  • Faraday's Law vs. Lenz's Law: Faraday's law tells you the magnitude of the induced voltage. Lenz's law tells you the direction of the induced current. Lenz's law is actually the reason for the negative sign in the Faraday equation (E = -N...). It states that the induced current will always flow in a direction that creates a magnetic field opposing the original change in flux. This is why inductors fight changes in current.
  • Faraday's Law vs. Faraday Cages: A Faraday cage is an enclosure made of conductive material that blocks external static and low-frequency electric fields (like lightning or RF signals) by redistributing electrical charges on its surface. It has absolutely nothing to do with magnetic induction. If you want to block a changing magnetic field, a copper Faraday cage won't work; you need a high-permeability magnetic shield made of Mu-metal to redirect the magnetic flux lines.

For a deeper dive into the mathematical derivations of these principles, Electronics Tutorials provides excellent visual breakdowns of flux lines and coil interactions.

Frequently Asked Questions

What is the difference between Faraday's law and Lenz's law?

Faraday's law calculates how much voltage is induced when a magnetic field changes, giving you the raw number (e.g., 50 Volts). Lenz's law dictates the polarity and direction of that induced voltage, ensuring that the resulting current creates a magnetic field that opposes the initial change. In practical circuit design, Lenz's law is the reason an inductor generates a reverse voltage spike when you abruptly cut the power to it.

How does Faraday's law apply to transformers?

In a transformer, an alternating current in the primary winding creates a continuously changing magnetic flux in the core. Faraday's law dictates that this changing flux will induce a voltage in any other coil wrapped around that same core. The ratio of the induced voltage between the primary and secondary coils is exactly equal to the ratio of their wire turns, allowing you to step 240V AC down to 24V AC for a doorbell or HVAC control circuit safely.

Why is there a negative sign in the Faraday's law equation?

The negative sign in E = -N(ΔΦ/Δt) is the mathematical representation of Lenz's Law. It indicates that the induced electromotive force (EMF) acts in opposition to the change in magnetic flux that created it. Without this negative sign, the induced current would reinforce the changing magnetic field, creating a runaway feedback loop that would generate infinite energy, violating the law of conservation of energy. The negative sign keeps physics grounded in reality.