Introduction / Context:
This is a 3D Pythagoras application. The floor diagonal gives √(l^2 + b^2); the space diagonal gives √(l^2 + b^2 + h^2). Using both, we can isolate the height h of the room.
Given Data / Assumptions:
- Floor diagonal = 10 m ⇒ √(l^2 + b^2) = 10
- Space diagonal = 10√2 m ⇒ √(l^2 + b^2 + h^2) = 10√2
Concept / Approach:
- Use the identity: (space diagonal)^2 − (floor diagonal)^2 = h^2.
Step-by-Step Solution:
(10√2)^2 − (10)^2 = h^2200 − 100 = h^2 ⇒ h^2 = 100 ⇒ h = 10 m.
Verification / Alternative check:
Plug back: space diagonal = √(10^2 + h^2) with floor diagonal 10 gives √(100 + 100) = √200 = 10√2, consistent.
Why Other Options Are Wrong:
- 8 m, 7.5 m, 6 m: Each gives space diagonal less than 10√2, contradicting the given value.
Common Pitfalls:
- Confusing the floor diagonal with a wall diagonal.
- Not squaring correctly when applying Pythagoras in 3D.
Final Answer:
10 m
Discussion & Comments