Difficulty: Easy
Correct Answer: 29.3%
Explanation:
Problem restatement
Compare the diagonal path to the L-shaped edge path around one corner of a square and find the percentage saving in distance.
Given data
Concept/Approach
Percent saved = [(edge path − diagonal) ÷ edge path] × 100%.
Step-by-Step calculation
Percent saved = [(2a − a√2) ÷ 2a] × 100%= (1 − √2 ÷ 2) × 100% ≈ (1 − 0.7071) × 100%≈ 29.3%
Verification/Alternative
For a = 1: edge = 2, diagonal ≈ 1.4142, saving ≈ 0.5858 ⇒ 0.5858 ÷ 2 ≈ 29.29%.
Common pitfalls
Using 1 − (1/√2) instead of 1 − (√2/2); both are equal numerically here, but ensure the reference distance is the edge path (2a).
Final Answer
29.3%
Discussion & Comments