An NPN common emitter amplifier is a transistor circuit configuration where the emitter is tied to ground (common to both input and output), the AC input signal is applied to the base, and the amplified, phase-inverted output is extracted from the collector. What it changes in a real circuit is the amplitude of a weak sensor or audio signal, boosting millivolt-level inputs to volt levels while flipping the waveform 180 degrees. People commonly confuse it with the common collector (emitter follower), which buffers current but provides zero voltage gain, or they mistake the DC bias point (Q-point) for the AC signal gain.
The Core Job: Voltage Gain and Phase Inversion
The fundamental purpose of this topology is voltage amplification. By forward-biasing the base-emitter junction and reverse-biasing the base-collector junction, a tiny fluctuation in base current dictates a massive fluctuation in collector current. Because the collector current flows through a resistor (Rc) tied to the positive supply rail, Ohm's law dictates that as current increases, the voltage dropped across Rc increases. Consequently, the voltage measured at the collector (relative to ground) drops.
This 180-degree phase shift is a defining characteristic. If you feed a sine wave into the base and probe the collector with an oscilloscope, the peaks and troughs will be exactly swapped. In multi-stage audio amplifiers, you must account for this inversion to avoid accidental negative feedback if you route a signal back to an earlier stage.
The Math That Matters: A Worked 2N3904 Example
Theory is useless if your transistor is driven into saturation or cutoff. You must establish a DC Quiescent Point (Q-point) roughly in the middle of your supply rail to allow maximum symmetrical AC swing. Let us design a stage using the ubiquitous ON Semiconductor 2N3904 NPN transistor.
Design Targets:
- Supply Voltage (Vcc): 12V
- Target Collector Current (Ic): 1mA
- Target Collector-Emitter Voltage (Vce): 6V (half of Vcc for max swing)
- Assumed Beta (hFE): 100 (always use a conservative minimum, not the datasheet 'typical' of 300)
Step 1: Set the Emitter Resistor (Re)
We allocate roughly 10% of Vcc to the emitter resistor for thermal stability. Target Ve = 1V.
Re = Ve / Ic = 1V / 1mA = 1kΩ.
Step 2: Set the Collector Resistor (Rc)
The remaining voltage must drop across Rc and the transistor. V_Rc = Vcc - Vce - Ve = 12V - 6V - 1V = 5V.
Rc = V_Rc / Ic = 5V / 1mA = 5kΩ. The nearest standard E12 value is 4.7kΩ.
Step 3: Calculate Base Bias Network (R1 and R2)
Base voltage (Vb) must be Ve + 0.7V (silicon Vbe drop) = 1.7V.
Base current (Ib) = Ic / Beta = 1mA / 100 = 10µA.
To make the bias network 'stiff' and immune to beta variations, we design the voltage divider to pass 10x the base current (100µA).
R2 = Vb / 100µA = 1.7V / 0.1mA = 17kΩ (use standard 18kΩ).
R1 = (Vcc - Vb) / 100µA = 10.3V / 0.1mA = 103kΩ (use standard 100kΩ).
Step 4: Determine AC Gain
The internal emitter resistance (re) is approximately 25mV / Ic = 22Ω. If you place a 10µF bypass capacitor in parallel with Re, the AC signal 'sees' only re.
Av = -Rc / re = -4700 / 22 = -213.
If you omit the bypass capacitor, Re dominates: Av = -4700 / (1000 + 22) = -4.6.
Where You Meet This in Practice
You will rarely build a discrete common emitter amplifier to drive a speaker; that requires a power stage. Instead, you meet this topology in signal conditioning and pre-amplification:
- Electret Microphone Preamps: An electret mic capsule outputs 5mV to 20mV. A common emitter stage with a gain of -100 boosts this to the 0.5V - 2V range required by a microcontroller's ADC or an op-amp line input.
- Piezo Vibration Sensors: Piezo discs generate high-voltage, high-impedance spikes. A CE amplifier with a high-value base bias network can step this down and amplify the current to drive an optocoupler or logic gate.
- RF Oscillators: Topologies like the Colpitts or Hartley oscillator rely on a common emitter stage to provide the necessary loop gain to sustain oscillation, while the LC tank dictates the frequency.
Topology Decision Tree: When to Use What
Beginners often default to the common emitter without checking if it actually solves their impedance or gain problem. Use this matrix to select the correct BJT configuration.
| Requirement | Common Emitter (CE) | Common Collector (CC) | Common Base (CB) |
|---|---|---|---|
| Voltage Gain | High (-50 to -300) | ~1 (Unity) | High (+50 to +300) |
| Current Gain | High (Beta) | High (Beta + 1) | ~1 (Unity) |
| Input Impedance | Medium (1k - 5k) | High (100k+) | Very Low (< 100Ω) |
| Phase Shift | 180° (Inverted) | 0° (Non-inverted) | 0° (Non-inverted) |
| Best Used For | Audio preamps, sensor gain | Impedance buffering, driving low-Z loads | High-frequency RF, current buffering |
The Verdict: If your goal is to take a high-impedance, low-voltage sensor signal and boost its voltage swing for an ADC or audio line-in, choose the Common Emitter. Grab a 2N3904 or BC547, use the 4.7k/1k resistor ratio calculated above, and bypass the emitter.
FAQ: Troubleshooting the Q-Point and Gain
Q: My oscilloscope shows the output sine wave is clipped flat on the bottom (near 0V). What went wrong?
A: Your transistor is hitting saturation. The Q-point is biased too high, meaning the collector voltage is resting too close to the emitter voltage. To fix this, you need to reduce the collector current. Increase the value of R1 or decrease R2 to lower the base voltage, which will pull the resting collector voltage back up toward Vcc/2.
Q: I calculated a gain of -213, but my AC voltmeter only shows a gain of -40. Why?
A: You are experiencing 'loading effect.' The theoretical gain assumes an infinite load impedance. If your next stage (like a volume potentiometer or an ADC input) has an impedance of 10kΩ, it appears in parallel with your 4.7kΩ Rc, dropping the effective collector resistance to roughly 3.2kΩ. Furthermore, if your emitter bypass capacitor is too small (e.g., 0.1µF), its reactance at audio frequencies will add to the internal 're', crushing your gain. Use a minimum of 10µF for the bypass cap in audio circuits.
Q: Can I use a MOSFET instead of a BJT for this exact same circuit?
A: Yes, but the biasing math changes entirely. A 2N7000 MOSFET is voltage-controlled, not current-controlled. You do not need a stiff base divider to supply gate current; instead, you use a high-impedance divider to set the gate-source threshold voltage (Vgs). The AC gain mechanism (transconductance) is similar, but the DC bias network will use megaohm resistors instead of kilohms. For a deep dive into BJT vs FET biasing, refer to the All About Circuits semiconductor textbook.
For 90% of hobbyist and prototyping audio or sensor tasks, a 2N3904 common emitter stage with a 4.7kΩ collector resistor, a bypassed 1kΩ emitter resistor, and a 100k/18k base divider on a 12V rail is your default, bulletproof starting point.






