- What is the difference between degrees and radians?
- Degrees divide a circle into 360 parts; radians divide it into 2π parts (~6.28). Radians are standard in mathematics, physics, and APIs because they relate arc length directly to calculus. Most spreadsheet trigonometric functions operate in radians.
- Why does SIN(45) return 0.85 instead of 0.707?
- Because SIN expects radians, not degrees. The input 45 represents 45 radians (~2,578°), whose sine is ~0.85. For 45 degrees, use =SIN(RADIANS(45)), which returns 0.707 (approximately √2/2).
- Can RADIANS handle negative angles or angles larger than 360?
- Yes. RADIANS converts any numeric angle. Negative angles return negative radians, and angles >360° convert proportionally—for example, 450° becomes 7.854 radians (2π + π/4), useful for multi-rotation calculations.
- How do I visualize radians to understand the output?
- A full circle is 2π radians (~6.28). Key angles: 0° = 0 rad, 90° = π/2 rad (~1.571), 180° = π rad (~3.14159), 270° = 3π/2 rad (~4.712). Verify with =DEGREES(RADIANS(90)), which returns 90.