Difficulty: Easy
Correct Answer: 0.5
Explanation:
Introduction / Context:
Powers of two appear everywhere in digital systems, binary arithmetic, and signal processing. Being fluent with negative exponents is essential when interpreting fractional binary values, fixed-point formats, and resolution steps in analog-to-digital converters.
Given Data / Assumptions:
Concept / Approach:
A negative exponent indicates a reciprocal: a^(−n) = 1 / (a^n). For base two, common values include 2^(−1) = 1/2, 2^(−2) = 1/4, and 2^(−3) = 1/8. These map directly to fractional steps in binary place values to the right of the binary point.
Step-by-Step Solution:
Start with the rule: 2^(−1) = 1 / 2^1.Compute 2^1 = 2.Therefore 2^(−1) = 1 / 2 = 0.5.
Verification / Alternative check:
Relate to binary fractions: the first fractional bit (2^(−1)) represents one-half. For example, the binary number 0.1(2) equals 0.5 in decimal, confirming the result.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
0.5
Discussion & Comments