Difficulty: Easy
Correct Answer: 1
Explanation:
Introduction / Context:
Recognizing algebraic identities is the fastest route to accurate results. This problem encodes the sum-of-cubes identity in decimal form and asks for a clean simplification without heavy computation.
Given Data / Assumptions:
Concept / Approach:
The identity a^3 + b^3 = (a + b)(a^2 − ab + b^2) applies. Dividing by (a^2 − ab + b^2) cancels that factor, leaving simply a + b. With the given decimals, the answer is exact and elegant: 1.00.
Step-by-Step Solution:
Use a^3 + b^3 = (a + b)(a^2 − ab + b^2).Therefore [(a^3 + b^3)] / [(a^2 − ab + b^2)] = a + b.Compute a + b = 0.87 + 0.13 = 1.00.
Verification / Alternative check:
Directly raising decimals to powers also works but is slower and prone to rounding; the identity is exact and error-proof.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing the identity with (a − b)^3 or attempting brute-force decimal exponentiation.
Final Answer:
1
Discussion & Comments