Difficulty: Easy
Correct Answer: Incorrect
Explanation:
Introduction / Context:Accurate manipulation of powers of ten is crucial in electronics (for example, converting microfarads to farads or kilohertz to hertz) and in data-sheet calculations. This question asks you to validate a multiplication written in scientific notation.
Given Data / Assumptions:
Concept / Approach:When multiplying numbers in scientific notation, multiply the mantissas and add the exponents: (a × 10^m) × (b × 10^n) = (a*b) × 10^(m+n). Afterward, normalize the mantissa if necessary so that it lies between 1 and 10, adjusting the exponent accordingly.
Step-by-Step Solution:
Multiply mantissas: 5 × 4 = 20.Add exponents: 10^6 × 10^3 = 10^(6+3) = 10^9.Intermediate product: 20 × 10^9.Normalize mantissa: 20 × 10^9 = 2.0 × 10^10.Verification / Alternative check:Compute in plain numbers: 5,000,000 × 4,000 = 20,000,000,000 = 2.0 × 10^10. The statement “20 × 10^18” is off by nine orders of magnitude in the exponent.
Why Other Options Are Wrong:
Common Pitfalls:Confusing exponent addition with multiplication, or forgetting to normalize mantissas. Always multiply coefficients first, then add exponents and normalize.
Final Answer:Incorrect — the correct product is 2.0 × 10^10, not 20 × 10^18.
Discussion & Comments