Math Problem Statement
To estimate the height of a building, two students find the angle of elevation from a point (at ground level) down the street from the building to the top of the building is
35
∘
. From a point that is
150
feet closer to the building, the angle of elevation (at ground level) to the top of the building is
51
∘
. Assume that the street is level. What is the height of the building?
Round your answer to the nearest hundredth. Don't include the " h
" or any units - your answer should just be a number.
Provide your answer below:
Solution
We can solve this problem using trigonometry. Let be the height of the building and be the distance from the first point of observation to the base of the building.
Step-by-step solution:
-
From the first point, we have the angle of elevation of . Using the tangent function: This gives:
-
From the second point, which is 150 feet closer, the angle of elevation is . The distance from this point to the base of the building is . Using the tangent function: This gives:
-
Since both expressions equal , we can set them equal to each other:
-
Solve for :
-
Once is found, substitute it into the equation to find .
Let me compute this. math
Angles in degrees
angle1 = 35 # First angle of elevation angle2 = 51 # Second angle of elevation distance_closer = 150 # Distance closer in feet
Convert angles to radians for computation
tan1 = math.tan(math.radians(angle1)) tan2 = math.tan(math.radians(angle2))
Solve for x
x = (-distance_closer * tan2) / (tan1 - tan2)
Solve for h
h = x * tan1
Round to the nearest hundredth
h_rounded = round(h, 2) h_roundedThe height of the building is 242.58.
Would you like me to go over any details or steps?
Here are 5 related questions you might find helpful:
- How can tangent functions be used to solve real-world elevation problems?
- What is the relationship between angles of elevation and trigonometric ratios?
- How does changing the distance to the building affect the angles of elevation?
- What are some other practical applications of trigonometry in construction or surveying?
- How can we verify this calculation using another trigonometric method?
Tip: Always ensure angles are converted to radians when using programming tools for trigonometric calculations!
Ask a new question for Free
By Image
Drop file here or Click Here to upload
Math Problem Analysis
Mathematical Concepts
Trigonometry
Angles of Elevation
Tangent Function
Formulas
tan(angle) = opposite/adjacent
x = (-distance_closer * tan(angle2)) / (tan(angle1) - tan(angle2))
h = x * tan(angle1)
Theorems
Tangent Ratio in Right Triangles
Suitable Grade Level
Grades 9-12
Related Recommendation
Calculate Building Height Using Trigonometry and Angle of Elevation
Calculate Building Height Using Changing Elevation Angles from 30° to 45°
Estimating the Height of a Building Using Trigonometry with Angles of Elevation
Building Height Calculation Using Tangent Function: Problem Solving with Angles of Elevation
Calculating Building Height Using Trigonometry (Tangent Function)