Difficulty: Easy
Correct Answer: 1000
Explanation:
Introduction:Voltage gain is fundamental in amplifier analysis. It is defined as the ratio of output voltage to input voltage and is often expressed as a pure ratio or in decibels. Quick mental math on small signals and unit conversions is a practical skill when reviewing specifications or debugging circuits.
Given Data / Assumptions:
Concept / Approach:Compute A_v = V_out / V_in, taking care to convert millivolts to volts to avoid errors. Because 1 mV = 10^-3 V, 2 mV = 0.002 V. The ratio then becomes straightforward division.
Step-by-Step Solution:
Convert input: 2 mV = 0.002 V.Compute ratio: A_v = 2 V / 0.002 V.Perform division: 2 / 0.002 = 1000.Therefore the voltage gain is 1000 (or 60 dB if expressed as 20 * log10(1000)).Verification / Alternative check:Cross-check by proportional reasoning: increasing input by a factor of 1000 (2 mV * 1000 = 2 V) matches the output, confirming the gain.
Why Other Options Are Wrong:
Common Pitfalls:Forgetting unit conversion (mV to V), or accidentally calculating V_in / V_out. Always normalize units first to avoid magnitude errors.
Final Answer:1000
Discussion & Comments