Part III: Analog Electronics | Chapter 7

Amplifier Fundamentals

Voltage gain, current gain, impedances, common-emitter and common-source topologies, small-signal analysis, frequency response, and the gain-bandwidth product

1. Amplifier Parameters

Any two-port amplifier is completely characterized by four quantities: voltage gain, current gain, input impedance, and output impedance. In decibels, voltage gain is\( A_v\,[\text{dB}] = 20\log_{10}|A_v| \), while power gain uses\( G\,[\text{dB}] = 10\log_{10}(P_{out}/P_{in}) \).

Voltage Gain
\( A_v = V_{out}/V_{in} \)
Current Gain
\( A_i = I_{out}/I_{in} \)
Input Impedance
\( Z_{in} = V_{in}/I_{in} \)
Output Impedance
\( Z_{out} = V_{oc}/I_{sc} \)

The ideal amplifier has infinite \( Z_{in} \) (draws no input current) and zero\( Z_{out} \) (drives any load without loss). Real amplifiers approximate these ideals through careful design.

2. Common-Emitter Amplifier

The common-emitter (CE) configuration is the workhorse BJT amplifier. Using the small-signal hybrid-Ī€ model, the voltage gain (with emitter bypass capacitor) is\( A_v = -g_m R_C \), where the transconductance\( g_m = I_C / V_T \) (\( V_T \approx 26\,\text{mV} \) at room temperature).

V_CCR_CCBER_EC_inv_inC_outv_outR_B1Common-Emitter AmplifierA_v = -gm*RC | Zin ≈ rĪ€ || RB | 180° phase inversion
Common-emitter amplifier with biasing resistors R_B1, R_B2, emitter bypass, and coupling capacitors

The minus sign in \( A_v = -g_m R_C \) indicates a 180° phase inversion — a hallmark of the common-emitter stage. The input impedance is\( Z_{in} = r_\pi \| R_{B1} \| R_{B2} \) where\( r_\pi = \beta / g_m \).

With an unbypassed emitter resistor \( R_E \), the gain becomes\( A_v \approx -R_C / R_E \), trading gain for improved linearity and temperature stability.

3. Common-Source MOSFET Amplifier

The MOSFET common-source (CS) amplifier is the FET analogue of the CE stage. Using the small-signal model with transconductance \( g_m = 2I_D / (V_{GS} - V_{th}) \), the voltage gain is \( A_v = -g_m (R_D \| r_{ds}) \).

CS Voltage Gain
\( A_v = -g_m R_D \)
(large r_ds)
CS Input Impedance
\( Z_{in} \approx \infty \)
(gate draws no DC current)
Transconductance
\( g_m = \sqrt{2\mu_n C_{ox}(W/L)I_D} \)

4. Frequency Response & Gain-Bandwidth Product

Every amplifier has a frequency-dependent gain \( A_v(j\omega) \). For a single-pole amplifier, the transfer function is:

\[ A_v(j\omega) = \frac{A_0}{1 + j\omega/\omega_p} \]

The magnitude falls to \( A_0/\sqrt{2} \) (i.e., −3 dB) at the pole frequency\( \omega_p = 1/RC \). At higher frequencies, gain rolls off at −20 dB/decade.

A fundamental trade-off exists: the gain-bandwidth product (GBW) is approximately constant for a given amplifier technology:

\[ \text{GBW} = A_0 \cdot f_{-3\text{dB}} = \text{constant} \]

Increasing DC gain \( A_0 \) proportionally reduces bandwidth. Negative feedback exploits this: by reducing closed-loop gain by factor \( (1+A_0\beta) \), bandwidth increases by the same factor.

5. Python: Bode Plot & Gain-Bandwidth Product

Plot the frequency response of a single-pole amplifier (A₀ = 60 dB, f_p = 1 kHz), demonstrate the −3 dB bandwidth, and show how feedback trades gain for bandwidth.

Python
script.py96 lines

Click Run to execute the Python code

Code will be executed with Python 3 on the server