Difficulty: Easy
Correct Answer: 748.6875
Explanation:
Introduction / Context:
This problem tests basic laws of indices and order of operations. We must carefully compute powers first, then multiply and divide. Converting to exact integers as long as possible helps prevent rounding errors, and only at the end should we convert to decimals if needed.
Given Data / Assumptions:
Concept / Approach:
Use the exponent definitions a^m * a^n = a^(m+n) (when bases match) and evaluate each power separately when bases differ. Respect BODMAS/PEMDAS: powers → multiplication → division → addition/subtraction.
Step-by-Step Solution:
Verification / Alternative check:
Break 36 as 64 * (36/64) = 64 * 0.5625; then (1331 * 36)/64 = 1331 * 0.5625 = 748.6875, confirming the previous result without long division.
Why Other Options Are Wrong:
Common Pitfalls:
Typical mistakes include computing 11^3 as 121 or 133 instead of 1331, or dividing by 4 rather than 4^3. Always compute exponents before other operations.
Final Answer:
Discussion & Comments