In electronics, the positive and negative feedback definition hinges entirely on signal phase: negative feedback routes a portion of the output back to the input out of phase (180°) to subtract from the input and stabilize the system, while positive feedback routes the signal back in phase (0°) to add to the input and drive the system toward saturation or oscillation. What this changes in a real circuit is fundamental—it dictates whether your amplifier operates as a precise, linear signal conditioner (negative) or as a digital switch, comparator, or oscillator (positive). Beginners frequently confuse these terms with "good" and "bad" audio feedback, assuming positive means beneficial and negative means detrimental, but in circuit theory, both are intentional, mathematically controlled design tools.
Before diving into the underlying math, it helps to see how these concepts map to real-world integrated circuits. The table below breaks down common op-amp and comparator configurations, showing exactly how specific resistor values and feedback topologies dictate closed-loop behavior on the bench.
| Configuration | Feedback Type | Example IC | Resistor Values (Rf, Rin) | Closed-Loop Result | Typical Bandwidth |
|---|---|---|---|---|---|
| Inverting Amplifier | Negative | LM741 | Rf = 100kΩ, Rin = 10kΩ | Gain: -10 V/V | ~100 kHz |
| Non-Inverting Amplifier | Negative | LM358 | Rf = 90kΩ, Rin = 10kΩ | Gain: +10 V/V | ~100 kHz |
| Voltage Follower | Negative (100%) | TL072 | Rf = 0Ω, Rin = ∞ | Gain: +1 V/V | ~3 MHz |
| Schmitt Trigger | Positive | 74HC14 / LM393 | R1 = 10kΩ, R2 = 100kΩ | Hysteresis: ~1.1V | N/A (Digital) |
| Phase-Shift Oscillator | Positive | NE555 / Op-Amp | R = 10kΩ, C = 10nF | Loop Gain ≥ 29 | f = 1.59 kHz |
The Core Math: Calculating Closed-Loop Gain
To understand why negative feedback is the backbone of analog design, we need to look at the raw numbers. Let’s use a classic Texas Instruments LM741 operational amplifier wired in a non-inverting configuration. The LM741 has a massive open-loop gain ($A_{OL}$) of typically 200,000 V/V (about 106 dB). However, this raw gain is highly unstable, drifting wildly with temperature and manufacturing tolerances. You cannot use 200,000x gain for a precision audio preamp; the output would instantly rail to the supply voltage from microvolt noise.
To fix this, we apply negative feedback using two 1% tolerance metal film resistors: $R_{in} = 10 k\Omega$ (connected from the inverting input to ground) and $R_f = 90 k\Omega$ (connected from the output back to the inverting input).
The feedback factor ($\beta$) is the fraction of the output voltage fed back to the input:
$\beta = \frac{R_{in}}{R_{in} + R_f} = \frac{10,000}{10,000 + 90,000} = 0.1$
The ideal closed-loop gain ($A_{CL}$) formula for a non-inverting amplifier ignores the op-amp's internal limitations and relies only on the resistors:
$A_{CL(ideal)} = 1 + \frac{R_f}{R_{in}} = 1 + \frac{90k}{10k} = 10 \text{ V/V}$
But what happens when we calculate the exact closed-loop gain using the rigorous feedback equation $A_{CL} = \frac{A_{OL}}{1 + A_{OL}\beta}$?
$A_{CL(exact)} = \frac{200,000}{1 + (200,000 \times 0.1)} = \frac{200,000}{1 + 20,000} = \frac{200,000}{20,001}$
This numeric example reveals the true power of negative feedback. By sacrificing 99.99% of the op-amp's raw, unstable open-loop gain, we force the circuit to rely almost entirely on the passive resistor network. The difference between the ideal 10 V/V and the exact 9.9995 V/V is a mere 0.005% error. Because your 1% resistors have a much tighter tolerance than the op-amp's silicon, your circuit's gain is now predictable, stable, and linear. For deeper mathematical proofs of this loop-gain tradeoff, the All About Circuits semiconductor textbook provides excellent derivations of the loop gain parameter.
Where You Meet This in Practice
Theory is clean, but jobsite and bench applications introduce parasitic capacitance, load variations, and noise. Here is how both feedback types manifest in real-world builds.
Negative Feedback Applications
- Audio Preamplifiers: A TL072 op-amp in a guitar pedal uses heavy negative feedback to flatten the frequency response and reduce Total Harmonic Distortion (THD) to below 0.01%, ensuring the audio signal is amplified without adding coloration.
- Microcontroller PID Loops: When an ESP32 controls a DC motor via PWM, it reads a quadrature encoder to determine actual speed. The firmware calculates the error (Target RPM - Actual RPM) and feeds this negative error back into the PID integral and proportional terms to smoothly correct the PWM duty cycle without overshooting.
- Linear Voltage Regulators: The ubiquitous LM317 adjustable regulator uses an internal negative feedback loop to constantly compare the output voltage against an internal 1.25V bandgap reference, adjusting its internal pass transistor to maintain a rock-solid output despite load transients.
Positive Feedback Applications
- Switch Debouncing (Schmitt Triggers): Mechanical pushbuttons suffer from contact bounce, generating dozens of rapid high/low transitions in a few milliseconds. Routing the button signal through a 74HC14 hex inverter with internal positive feedback creates hysteresis. The threshold to switch HIGH is physically different from the threshold to switch LOW, effectively ignoring the micro-bounces.
- Astable Oscillators: The NE555 timer in astable mode relies on positive feedback through the discharge pin and an external RC network. Once the internal comparator trips, positive feedback violently snaps the output stage to the opposite rail, creating the sharp square waves needed for clock signals.
- Crowbar Overvoltage Protection: In high-power supply design, an SCR (Silicon Controlled Rectifier) can be triggered by an overvoltage detector. Once the SCR fires, positive feedback from the anode to the gate ensures the SCR remains latched ON, intentionally blowing the main fuse to protect downstream loads.
Common Confusions and Edge Cases
Frequently Asked Questions
Q: Is positive feedback always used to make oscillators?
A: No. While positive feedback with a loop gain ≥ 1 creates an oscillator, positive feedback with a loop gain < 1 is routinely used to create hysteresis in comparators. The circuit remains stable in one of two saturated states (HIGH or LOW) and does not oscillate; it simply requires a larger input swing to change states.
Q: What is the difference between feedback and feedforward?
A: Feedback measures the output and corrects the input after an error has occurred (reactive). Feedforward measures the load disturbance before it affects the output and adjusts the control element in anticipation (proactive). Advanced switch-mode power supplies often use both: feedforward for immediate line-voltage sags, and negative feedback for fine-tuning the final output ripple.
Q: Can a single circuit use both positive and negative feedback simultaneously?
A: Yes, and it is highly common. A classic Wien-bridge oscillator uses a negative feedback network (often a thermistor or incandescent bulb) to stabilize the amplitude and prevent clipping, while simultaneously using a positive feedback RC network to select the exact oscillation frequency. The design challenge is balancing the two so the positive feedback dominates at the target frequency, while the negative feedback dominates at all other frequencies. For more on mixed-feedback topologies, Electronics Tutorials offers excellent schematic breakdowns.






