The MOSFET
Nearly every transistor inside a modern processor — all tens of billions of them — is a MOSFET (Metal-Oxide-Semiconductor Field-Effect Transistor). Unlike the bipolar transistor, which needs a continuous trickle of base current to stay switched on, a MOSFET is controlled almost entirely by voltage, drawing essentially zero steady-state current at its control terminal. That one difference is why the MOSFET, not the BJT, became the building block of digital computing.
The four terminals
A MOSFET has four terminals, though the fourth is often connected internally and left off simple diagrams:
- Source (S) — where charge carriers enter the device.
- Drain (D) — where charge carriers exit.
- Gate (G) — sits above the region between source and drain, separated from the silicon by a thin insulating layer, and controls whether current can flow.
- Body / Substrate (B) — the bulk silicon the device is built into.
In an N-channel MOSFET (the type used in the examples below), the source and drain are heavily doped N-type regions embedded in a P-type body.
Cross-section of an N-channel MOSFET
The gate sits on top of a very thin insulating layer of silicon dioxide, so no current ever flows directly into the gate under normal DC operation — the gate simply creates an electric field that reaches down into the silicon beneath it.
How the field-effect switch works
With zero (or low) voltage on the gate, the region between source and drain is just P-type body material — the same polarity as the source and drain are not, meaning no continuous N-type path connects them. Current can’t flow between source and drain because it would have to cross two back-to-back PN junctions in series, and one of them is always reverse biased.
Raise the gate voltage relative to the source () high enough, and the electric field from the gate pushes away holes and pulls free electrons up to the silicon surface directly beneath the gate oxide, forming a thin, continuous layer of N-type-like material called the channel or inversion layer. That channel electrically connects source to drain, letting current flow. The gate voltage at which this channel first fully forms is called the threshold voltage, .
The saturation current equation
Once the channel is formed and the drain voltage is high enough to pull the channel into “saturation” (the regime used for most digital switching), the drain current is approximately:
Where:
- is the drain current — the current flowing from drain to source through the channel.
- is the electron mobility in the channel (how easily electrons move through it).
- is the gate oxide capacitance per unit area — a thinner oxide gives a larger and stronger field coupling.
- and are the channel’s width and length — the physical dimensions of the transistor, which chip designers choose deliberately.
- is the gate-to-source voltage, and is the threshold voltage.
The key takeaway from this formula, even without doing the math: current turns on only once exceeds , and grows with the square of how far past threshold you push it. Below threshold, the device is (ideally) off.
From physical device to digital switch
The property that matters most for digital chips is binary: below , the MOSFET is effectively an open circuit (off, logic 0); above , it conducts (on, logic 1). That clean on/off behavior, controlled purely by voltage, is what the next page builds on directly: The Transistor as a Switch.
Key takeaways
- A MOSFET has four terminals: source, drain, gate, and body, with the gate insulated from the silicon by a thin oxide layer.
- Applying gate voltage above the threshold voltage forms a conductive channel connecting source and drain.
- Because the gate is insulated, a MOSFET draws essentially no steady-state current at its control terminal — unlike a BJT.
- Saturation drain current follows , growing with the square of the gate overdrive.
- This clean voltage-controlled on/off behavior is the direct basis for digital switching, covered in The Transistor as a Switch.