This lesson shows how to calculate sine, cosine, and tangent of an angle using numpy in Python. We start with an angle in radians, here π/4 which is 45 degrees. Then we calculate sin, cos, and tan step-by-step. The values for sin and cos at 45 degrees are about 0.707, and tan is about 1. We track each variable's value as the code runs. Common confusions include why sin and cos are equal at 45 degrees, why tan is close but not exactly 1, and why angles must be in radians. The quiz tests understanding of these values and behavior. This helps beginners see how trigonometric functions work in code with real numbers.