>
section 6 of 115 min read

6. Biasing: Setting the Operating Point

You have a transistor. You want it to amplify an AC signal. Before any AC analysis, you need to put the transistor in a stable DC operating condition — biased in the active region with a chosen value of ICI_C and VCEV_{CE}. The choice of bias is called the operating point or Q-point ("quiescent point").

6.1 Why bias matters

Imagine a swing on a playground. You want to push it back and forth. If the swing is hanging straight down (centered), small pushes give symmetrical swings to both sides — that is the best you can do. If the swing is tilted way to one side, your pushes hit the swing's natural limit early — you get clipping. Same with a transistor: if the Q-point is too close to one of the supply rails, AC signals will clip on that side. Center the Q-point and you get the most clean swing.

For an amplifier driving a load RLR_L with supply VCCV_{CC}, the standard target is:

  • VCEVCC/2V_{CE} \approx V_{CC}/2 (centered between saturation and cutoff).
  • ICI_C chosen for desired gain (high ICI_C → high gmg_m → high gain, but also more power and lower input impedance).

6.2 The load line: visualizing the Q-point

In a simple CE amplifier, the collector connects through a resistor RCR_C to VCCV_{CC}:

plaintext
       V_CC

        R_C

   ─────┤── (output)
        C
       [Q]
        E

       GND

KVL on the collector branch: VCC=VCE+ICRCV_{CC} = V_{CE} + I_C R_C. Rearranging: IC=(VCCVCE)/RCI_C = (V_{CC} - V_{CE}) / R_C. This is a straight line in the ICI_C vs VCEV_{CE} plane — the DC load line.

The Q-point is where the load line intersects the transistor's output curve for the chosen IBI_B. Move IBI_B up and the Q-point slides up the load line; move it down and slides down. The bias circuit is what sets IBI_B to put the Q-point in the right place.

6.3 Fixed bias: simple but terrible

The simplest bias circuit: a single resistor RBR_B from VCCV_{CC} to the base.

plaintext
       V_CC

       [R_B]

        B [Q1]

        E

       GND

IB=(VCCVBE)/RBVCC/RBI_B = (V_{CC} - V_{BE}) / R_B \approx V_{CC}/R_B. Then IC=βIBI_C = \beta I_B.

Why it is bad: ICI_C depends linearly on β\beta. Replace your transistor with another from the same batch — β\beta might be 80 or 250. ICI_C swings by a factor of three. The Q-point moves wildly. Add temperature variation (which also shifts β\beta) and the circuit is essentially uncontrollable.

Don't use fixed bias except in textbook examples and certain low-cost digital switches.

6.4 Self-bias (voltage-divider bias): the standard

Almost every real BJT amplifier uses voltage-divider bias with an emitter resistor:

plaintext
       V_CC
        │      │
       [R1]   [R_C]
        │      │
        B─────C [Q1]
        │      │
       [R2]    E
        │      │
       GND    [R_E]

               GND

R1R_1 and R2R_2 form a voltage divider that sets the base voltage VB=VCCR2/(R1+R2)V_B = V_{CC} \cdot R_2/(R_1+R_2). The emitter is then at VE=VB0.7V_E = V_B - 0.7 V. The emitter current is IE=VE/REI_E = V_E/R_E, and ICIEI_C \approx I_E.

Crucially, ICI_C no longer depends on β\beta. It is set by VBV_B, VBEV_{BE}, and RER_E — none of which involve β\beta. The transistor's β\beta can vary by 3× and your Q-point barely moves, because the emitter resistor provides negative feedback: if ICI_C tries to rise, VEV_E rises, the base-emitter voltage drops, and ICI_C comes back down.

This is the canonical BJT amplifier bias circuit. You will see it in textbooks for the rest of your life. Memorize the topology.

6.5 Stability factor

Quantitatively, we measure how much ICI_C varies with parameter XX by the stability factor SX=IC/XS_X = \partial I_C / \partial X.

For fixed bias: SβS_\beta is huge — a 1% change in β\beta changes ICI_C by 1%.

For self-bias: SβS_\beta is much smaller — typically a 1% change in β\beta changes ICI_C by 0.1% or less. The improvement comes from the emitter resistor providing negative feedback.

Detailed formulas exist for SβS_\beta, SVBES_{V_{BE}}, SICOS_{I_{CO}} (sensitivity to leakage). Each is reduced by the emitter resistor. Bigger RER_E → better stability → but also more voltage dropped across the emitter, less swing available. Engineering compromise.

6.6 Bias compensation

For really demanding applications (precision references, audio output stages), you can also compensate temperature drift using elements that match the BJT's drift. A diode in the bias network whose VFV_F tracks the transistor's VBEV_{BE} provides automatic compensation; a thermistor on the bias divider provides another approach. Modern op-amps and bandgap references use sophisticated multi-element compensation that produces references stable to a few ppm/°C across the full automotive temperature range.

6.7 Thermal runaway

Without proper bias, BJTs can self-destruct via thermal runaway: more heat → less VBEV_{BE} at fixed ICI_C (-2 mV/°C) → more ICI_C at fixed bias → more heat → more ICI_C → 💥. The emitter resistor in self-bias prevents this.

For high-power output stages (audio amps, motor drivers), small emitter resistors (0.1–1 Ω each) called emitter ballast resistors are added to the bias network for explicit local feedback. Combined with thermal-tracking biasing (a diode on the heatsink), this keeps the transistor stable across the full temperature range.