Integrated Math 2: Right Triangle Trig: Angle of Elevation and Depression

Can you explain angle of elevation and angle of depression in trigonometry, and how they're used to solve problems involving right triangles in Integrated Math 2?

1 Answers

✓ Best Answer

📐 Understanding Angle of Elevation and Depression

In trigonometry, particularly when dealing with right triangles, the angle of elevation and angle of depression are crucial concepts. They describe the angle formed between a horizontal line and an observer's line of sight to an object.

  • Angle of Elevation: The angle formed when an observer looks upward from a horizontal line to an object. Imagine you are standing on the ground looking up at a bird flying in the sky.
  • Angle of Depression: The angle formed when an observer looks downward from a horizontal line to an object. Think of being on top of a building and looking down at a car on the street.

✍️ Setting Up the Right Triangle

To solve problems involving these angles, you'll typically use trigonometric ratios (sine, cosine, tangent) within a right triangle. Here's how to set up the problem:

  1. Draw a Diagram: Sketch the scenario described in the problem. This usually involves a horizontal line, a vertical line (representing height or depth), and the line of sight.
  2. Identify the Angle: Determine whether the problem involves an angle of elevation or depression and mark it in your diagram.
  3. Label the Sides: Identify the sides of the right triangle relative to the angle you've marked: opposite, adjacent, and hypotenuse.
  4. Choose the Trig Ratio: Select the appropriate trigonometric ratio (sin, cos, or tan) based on the sides you know and the side you need to find. Remember:
    • $\sin(\theta) = \frac{\text{opposite}}{\text{hypotenuse}}$
    • $\cos(\theta) = \frac{\text{adjacent}}{\text{hypotenuse}}$
    • $\tan(\theta) = \frac{\text{opposite}}{\text{adjacent}}$

💻 Example Problem: Angle of Elevation

Problem: A person standing 50 feet from the base of a tree observes the top of the tree at an angle of elevation of 60°. Find the height of the tree.

Solution:

  1. Diagram: Draw a right triangle with the base as 50 feet (adjacent side), the height of the tree as the opposite side, and the angle of elevation as 60°.
  2. Trig Ratio: Since we have the adjacent side and want to find the opposite side, we use the tangent function: $\tan(\theta) = \frac{\text{opposite}}{\text{adjacent}}$
  3. Equation: $\tan(60°) = \frac{\text{height}}{50}$
  4. Solve for Height: $\text{height} = 50 \cdot \tan(60°)$
import math

angle_degrees = 60
angle_radians = math.radians(angle_degrees)
adjacent = 50

height = adjacent * math.tan(angle_radians)

print(f"The height of the tree is: {height:.2f} feet")

Answer: The height of the tree is approximately 86.60 feet.

🌁 Example Problem: Angle of Depression

Problem: From the top of a cliff 100 feet high, the angle of depression to a boat is 25°. How far is the boat from the base of the cliff?

Solution:

  1. Diagram: Draw a right triangle with the height of the cliff as 100 feet (opposite side), the distance from the boat to the base of the cliff as the adjacent side, and the angle of depression as 25°.
  2. Trig Ratio: Since we have the opposite side and want to find the adjacent side, we use the tangent function: $\tan(\theta) = \frac{\text{opposite}}{\text{adjacent}}$
  3. Equation: $\tan(25°) = \frac{100}{\text{distance}}$
  4. Solve for Distance: $\text{distance} = \frac{100}{\tan(25°)}$
import math

angle_degrees = 25
angle_radians = math.radians(angle_degrees)
opposite = 100

distance = opposite / math.tan(angle_radians)

print(f"The distance of the boat from the cliff is: {distance:.2f} feet")

Answer: The boat is approximately 214.45 feet from the base of the cliff.

🔑 Key Takeaways

  • Always draw a diagram to visualize the problem.
  • Identify the angle of elevation or depression correctly.
  • Use the appropriate trigonometric ratio (sin, cos, tan) based on the given and required sides.
  • Practice, practice, practice! The more you solve these problems, the easier they become.

Know the answer? Login to help.