Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Aptitude
  • Engineering Mathematics
  • Discrete Mathematics
  • Operating System
  • DBMS
  • Computer Networks
  • Digital Logic and Design
  • C Programming
  • Data Structures
  • Algorithms
  • Theory of Computation
  • Compiler Design
  • Computer Org and Architecture
Open In App
Next Article:
Need of Negative Feedback in Amplifiers
Next article icon

Need of Negative Feedback in Amplifiers

Last Updated : 05 Feb, 2021
Comments
Improve
Suggest changes
Like Article
Like
Report

An Amplifier is simply an electronic device that is used to increase the strength of the input signal. In this process of amplification, even the disturbances or noise present in the input signal also get amplified.

That's the reason why we use negative feedback in amplifiers, a portion of the output signal in a phase opposite to the input signal is fed to the input of the amplifier which significantly reduces the noise level in the output signal.

Block diagram of an amplifier with negative feedback

Negative feedback in amplifiers has the following advantages:

1. Stabilizes Amplifier Gain

The negative feedback stabilizes the gain of the amplifier by reducing the dependence of amplifier gain on various transistor parameters or variation in the supply voltage.

Gvf = Gv / (1 + β . Gv)

Here Gvf = resultant amplifier gain with negative feedback

Gv = amplifier gain without feedback

and β is the feedback fraction or feedback ratio

The above equation clearly shows that the resultant amplifier gain with negative feedback depends mainly on feedback fraction or feedback ratio.

2. Reduces Non-linear Distortion

The use of negative feedback also reduces the non-linear distortion level in the large signal amplifiers.

Dvf = D / (1 + β . Gv)

Here Dvf = resultant distortion level with negative feedback

D = distortion level without feedback

Gv = amplifier gain without feedback

and β is the feedback fraction or feedback ratio

The above equation clearly shows that the distortion level in the case of an amplifier with negative feedback is reduced by a factor of (1 + β . Gv).

3. Increases Circuit Stability

The output of an amplifier without negative feedback is affected by the variations in the temperature, frequency, or amplitude of the signal which further changes the gain of the amplifier and as result, we get a distorted signal in the output. Hence, the negative feedback is applied so that the gain of the amplifier is stabilized.

4. Increases Input Impedance/Resistance

The use of negative feedback increases the input impedance or resistance of the amplifier.

Z'in = Zin . (1 + β . Gv)

Here Z' = resultant input impedance with negative feedback

Z = input impedance without feedback

Gv = amplifier gain without feedback

and β is the feedback fraction or feedback ratio

The above relation shows that the input impedance of the amplifier with negative feedback is increased by the factor of (1 + β . Gv).

5. Decreases Output Impedance/Resistance

The use of negative feedback decreases the output impedance or resistance of the amplifier.

Z'o = Zo / (1 + β . Gv)

Here Z'o = resultant output impedance with negative feedback

Zo = output impedance without feedback

Gv = amplifier gain without feedback

and β is the feedback fraction or feedback ratio

The above relation shows that the output impedance of the amplifier with negative feedback is decreased by the factor of (1 + β . Gv).

6. Reduces Noise Level

The negative feedback which we apply to the amplifiers is in the opposite phase to that of the applied input signal, hence it cancels out the noises which are introduced in the output signal by the amplifier circuit. As a result, we get the output signal with a reduced noise level.

7. Improves Frequency Response & Bandwidth

The negative feedback which we apply to the amplifiers is a resistive network hence the gain of the amplifier with negative feedback is independent of signal frequency. As a result, the gain becomes constant over a wide range of signal frequencies in this way the frequency response of the amplifier with negative feedback is improved.

f'cf = fcf . (1 + β . Gv)

Here f'cf = resultant cut-off frequency with negative feedback

fcf = cut-off frequency without feedback

Gv = amplifier gain without feedback

and β is the feedback fraction or feedback ratio

The above relation clearly shows that the resultant cut-off frequency of the amplifier with negative feedback is increased by the factor of (1 + β . Gv). Hence, we get a more usable bandwidth in the case of an amplifier with negative feedback.

8. More Linear Operations

In the case of an ordinary amplifier, we get a very high value of the output signal even for a small value of the input signal hence the output signal is not proportional to the applied input signal. But in the case of an amplifier with negative feedback, every parameter is controlled by the applied feedback network. Hence in the case of an amplifier with negative feedback, the relation between the output and the input signal is more linear.

As we have discussed the various advantages of using negative feedback in amplifiers, it is important to know the main disadvantage of using negative feedback in amplifies, that is the overall gain of the amplifier is reduced by the factor of (1 + β . Gv).


Next Article
Need of Negative Feedback in Amplifiers

S

sanju6890
Improve
Article Tags :
  • Technical Scripter
  • Digital Logic
  • Technical Scripter 2020

Similar Reads

    Difference between Repeater and Amplifier
    Repeaters and amplifiers are tools that make signals stronger. A repeater cleans up the signal and makes it stronger. It gets rid of noise (unwanted stuff) in the signal. This gives you a clearer, stronger signal. An amplifier just makes the whole signal louder. It do not care about the noise it mak
    5 min read
    negate function in C++ STL
    This function is used to negate the given values i.e. to change the sign of the values. It changes the positive values to negative and vice-versa. Note: Objects of this class can be used on standard algorithms such as transform. Syntax: transform(arr_begin, arr_end, arr2_begin, negate()) Parameters:
    2 min read
    Minimum moves to make tree nodes non-negative
    Given a tree consisting of N nodes where the value of each node is the negative of its node number (i.e., 1st node has a value of -1, 2nd node has a value of -2, and so on) and a parent array Par[] that stores the parent node of the ith node. You can choose any node from the tree and add 1 to all no
    7 min read
    Introduction to Clampers
    Clamper circuits are essential in electronic circuits because they allow signals to be changed in voltage levels without altering the shape of their waveforms. These circuits are used in many different contexts, such as voltage regulation and signal processing, to modify the location of the signal.W
    5 min read
    C++ Program to Count Positive and Negative Numbers in an Array
    Given an array arr of integers of the size of N, our task is to find the count of positive numbers and negative numbers in the array. Examples: Input: arr[] = [-9,7,-5,3,2]Output: Positive elements = 3, Negative elements = 2 Input: arr[] = [5,4,-2,-1,-7]Output: Positive elements = 2, Negative elemen
    5 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences