Trigonometric functions (sin, cos, tan)
📖 Scenario: You are analyzing angles in degrees and want to find their sine, cosine, and tangent values using Python. This is useful in many fields like physics, engineering, and computer graphics.
🎯 Goal: Build a small program that converts a list of angles from degrees to radians, then calculates the sine, cosine, and tangent for each angle using numpy.
📋 What You'll Learn
Create a list of angles in degrees
Create a variable for converting degrees to radians
Use numpy to calculate sine, cosine, and tangent for each angle
Print the results clearly
💡 Why This Matters
🌍 Real World
Trigonometric functions are used in physics to analyze waves, in engineering for signal processing, and in computer graphics for rotations and animations.
💼 Career
Understanding how to calculate and use trigonometric functions is important for data scientists working with time series, spatial data, or any domain involving angles and periodic behavior.
Progress0 / 4 steps