If you crack open the epoxy casing of a standard TO-220 or TO-92 transistor, you will not find a mechanical switch or a vacuum. You will find a tiny, precisely doped slice of semiconductor material. When hobbyists and engineers ask what are transistors made of, the short answer is usually silicon. But as power electronics have evolved, the materials on the bench have diversified. The semiconductor substrate dictates everything from the base-emitter voltage drop to the maximum junction temperature and switching speed. Understanding the physical material is the first step to selecting the right part for your circuit and troubleshooting it when it inevitably fails.
The Core Materials: What Transistors Are Actually Made Of
The semiconductor die inside a transistor is typically made from one of four materials, each with distinct electrical properties defined by its bandgap energy. Here is how they translate to real-world bench behavior:
- Silicon (Si): The undisputed workhorse. With a bandgap of 1.12 eV, silicon BJTs and MOSFETs are cheap, predictable, and handle standard voltages up to about 900V. They have a standard base-emitter voltage drop (Vbe) of ~0.7V and max out at junction temperatures around 150°C to 175°C.
- Silicon Carbide (SiC): A wide-bandgap material (3.26 eV) used in high-voltage, high-temperature applications like EV inverters and solar charge controllers. SiC MOSFETs easily handle 1200V to 1700V and operate at junction temperatures exceeding 200°C. According to the U.S. Department of Energy, wide-bandgap semiconductors like SiC drastically reduce switching losses in power conversion.
- Gallium Nitride (GaN): Another wide-bandgap material (3.4 eV) optimized for ultra-high-frequency switching. GaN has virtually zero reverse recovery charge, making it the default choice for modern USB-C PD chargers and high-frequency RF amplifiers. It switches in nanoseconds, requiring meticulous PCB layout to avoid ringing.
- Germanium (Ge): Historically significant but practically obsolete in modern power design. Germanium has a much lower bandgap (0.67 eV), resulting in a Vbe drop of only ~0.3V. You will only encounter these in vintage audio gear or classic fuzz pedals (like the AC128 transistor), where their thermal instability and high leakage current actually contribute to the desired harmonic distortion.
From Silicon Die to Bench: Pinouts, Symbols, and Safe Default Parts
Knowing the material is only half the battle; you must know how to interface with the physical package. For the most common through-hole package, the TO-92, the pinout is standardized but frequently misread.
TO-92 NPN Pinout: Hold the transistor with the flat face pointing toward you and the three wire legs pointing down. From left to right, the pins are Emitter (E), Base (B), and Collector (C).
Schematic Symbol: The NPN symbol features an arrow on the Emitter leg pointing outward (away from the Base). For a PNP, the arrow points inward.
When stocking your bench, these are the safe, high-availability default part numbers with their absolute maximum ratings:
| Part Number | Type | Max Vce / Vds | Max Ic / Id | Max Power | Best Use Case |
|---|---|---|---|---|---|
| 2N3904 | NPN BJT | 40V | 200mA | 625mW | Low-side signal switching, logic level translation |
| 2N3906 | PNP BJT | -40V | -200mA | 625mW | High-side switching, current mirrors |
| 2N7000 | N-Ch MOSFET | 60V | 200mA | 400mW | Microcontroller GPIO driving, low-power relays |
| IRFZ44N | N-Ch MOSFET | 55V | 49A | 94W | PWM motor control, high-current DC loads (requires heatsink) |
Biasing and Operation Regions: Making the Silicon Work
A transistor is not a simple on/off switch; it is a current-controlled (BJT) or voltage-controlled (MOSFET) variable resistor. To use a BJT effectively, you must bias it into the correct operating region. As detailed in standard semiconductor theory references, the Base-Emitter junction must be forward-biased, while the Base-Collector junction's bias determines the region.
| Operation Region | Base-Emitter Voltage (Vbe) | Collector-Emitter Voltage (Vce) | Collector Current (Ic) | Practical Application |
|---|---|---|---|---|
| Cutoff | < 0.5V | Equal to Supply (Vcc) | 0A (Leakage only) | Switch OFF (Open circuit) |
| Active (Linear) | ~0.65V - 0.7V | 1.0V to (Vcc - 1V) | Ic = hFE * Ib | Audio amplification, linear regulators |
| Saturation | ~0.7V - 0.8V | < 0.3V (Vce_sat) | Limited by external load | Switch ON (Closed circuit, minimal heat) |
How to select and bias: If you are building an audio amplifier, you want the Active region, requiring careful voltage divider biasing to set the quiescent point. If you are driving a relay or motor, you want Saturation. To force a BJT into saturation, do not rely on the datasheet's linear hFE (gain). Instead, use a 'forced beta' of 10. If your load requires 100mA of Collector current, you must supply at least 10mA of Base current, regardless of what the hFE chart claims.
Practical Application: A 2N2222 Silicon Switching Circuit
Let's apply this material science and biasing theory to a concrete build. We will use a standard Silicon NPN transistor (PN2222A / 2N2222) to switch a 12V relay coil using a 3.3V logic signal from an ESP32 or Raspberry Pi GPIO pin.
Circuit Specifications:
- Supply Voltage (Vcc): 12V DC
- Load: 12V Relay with a 120Ω coil (Draws 100mA)
- Control Signal: 3.3V GPIO
- Transistor: 2N2222 (TO-92, Max Ic = 800mA, well within limits)
Calculating the Base Resistor (Rb):
- Target Collector Current (Ic) = 100mA.
- Forced Beta = 10. Required Base Current (Ib) = 100mA / 10 = 10mA.
- GPIO Voltage = 3.3V. Silicon Vbe drop = 0.7V. Voltage across Rb = 3.3V - 0.7V = 2.6V.
- Ohm's Law: R = V / I = 2.6V / 0.010A = 260Ω.
- Select the nearest standard E12 resistor value: 270Ω.
Build Steps:
- Connect the 270Ω resistor between the ESP32 GPIO pin and the Base (middle pin) of the 2N2222.
- Connect the Emitter (left pin) directly to the common circuit Ground.
- Connect one side of the relay coil to the 12V supply. Connect the other side of the coil to the Collector (right pin) of the transistor.
- Critical: Place a 1N4007 flyback diode in parallel with the relay coil, with the cathode (stripe) facing the 12V supply. This protects the silicon die from the inductive voltage spike when the transistor turns off.
- Apply power and set the GPIO HIGH. The transistor saturates, dropping Vce to ~0.2V, and the relay clicks shut.
Failure Modes and Multimeter Testing
Silicon and wide-bandgap dies fail in specific, predictable ways. BJTs typically suffer from thermal runaway (as the die heats up, it conducts more current, generating more heat until it shorts) or secondary breakdown from high voltage and high current simultaneously. MOSFETs usually fail due to gate oxide puncture from electrostatic discharge (ESD) or exceeding the Vgs maximum (usually ±20V).
You can diagnose a dead BJT on the bench using the Diode Test mode on your digital multimeter (DMM).
- Set your DMM to the diode symbol setting. The meter will output a small test voltage (usually ~2.5V).
- Place the Red probe on the Base and the Black probe on the Emitter. A healthy NPN silicon transistor will read between 0.600V and 0.750V.
- Move the Black probe to the Collector (Red still on Base). You should see a similar reading (0.600V - 0.750V).
- Reverse the probes (Black on Base, Red on Emitter/Collector). The meter should read 'OL' (Open Loop / Over Limit), indicating the junction is reverse-biased and blocking current.
- Measure across Collector and Emitter in both directions. It must read 'OL'. If you read 0.00V or a low resistance, the silicon die has shorted and the part is dead.
Frequently Asked Questions
What are early vintage transistors made of compared to modern ones?
Early transistors from the 1950s and 60s were primarily made of Germanium. While Germanium turns on at a lower voltage (~0.3V compared to Silicon's 0.7V), it is highly temperature-sensitive. At roughly 85°C, germanium experiences massive thermal leakage, rendering it useless for modern power applications. Today, Germanium is strictly a niche material for vintage audio reproduction, while Silicon dominates 95% of the market.
What are SMD transistors made of and how do they differ from through-hole?
Surface Mount Device (SMD) transistors (like those in SOT-23 packages) are made of the exact same silicon or GaN die as their through-hole counterparts. The difference lies entirely in the packaging. Instead of long wire leads and thick epoxy, the die is mounted on a tiny copper leadframe and encapsulated in a thin plastic shell. This reduces parasitic inductance, allowing SMD parts to switch faster, but makes them much harder to prototype with and requires proper PCB thermal vias to dissipate heat.
What are power transistors made of to handle such high heat?
High-power transistors (like those in TO-247 packages used in welders and motor drives) utilize a much larger physical silicon die to spread the thermal load. More importantly, modern high-power designs are increasingly made of Silicon Carbide (SiC). SiC's superior thermal conductivity and wider bandgap allow the die to operate at 200°C+ without breaking down, and it switches high voltages with a fraction of the switching losses seen in standard silicon.






