Difficulty: Easy
Correct Answer: False
Explanation:
Introduction / Context:Computing equivalent resistance for two resistors in parallel is a frequent task in circuit design. This question challenges a common misconception that parallel totals add like series totals.
Given Data / Assumptions:
Concept / Approach:For two resistors in parallel, the correct equivalent resistance is Req = (R1 * R2) / (R1 + R2). More generally, 1/Req = 1/R1 + 1/R2. The arithmetic sum R1 + R2 applies to series connections, not parallel. Because parallel adds conductances, the final equivalent must be less than the smallest individual resistor value.
Step-by-Step Solution:
Start from conductance: G_eq = 1/R1 + 1/R2.Invert to get resistance: Req = 1 / G_eq = (R1 * R2) / (R1 + R2).Check inequality: Req < min(R1, R2), which contradicts any claim of a sum.If R1 = R2 = R, then Req = R/2, a useful quick check.Verification / Alternative check:Numerical example: R1 = 6 Ω, R2 = 3 Ω → Req = (6 * 3) / (6 + 3) = 18/9 = 2 Ω; clearly not 9 Ω.
Why Other Options Are Wrong:
Common Pitfalls:Forgetting to invert sums when switching between resistance and conductance; to avoid errors, compute with admittances in parallel networks.
Final Answer:False
Discussion & Comments