📐 Trigonometric Functions
Calculate sin, cos, tan, cot, sec, csc
Related Calculators
Trigonometric Functions Calculator Guide
This calculator simultaneously computes six trigonometric function values: sine (sin), cosine (cos), tangent (tan), and their reciprocal functions cotangent (cot), secant (sec), and cosecant (csc). It supports both degree and radian mode switching.
Trigonometric functions bridge angles and side-length ratios, originating from ancient Greek astronomical observations and land surveying. Today they are indispensable in signal processing, wave analysis, architectural structural design, and computer graphics. This tool also provides a quick reference table for common special angles (30°, 45°, 60°, etc.).
Definitions and Identities
【Right Triangle Definition】(Acute angle A) sin A = Opposite/Hypotenuse, cos A = Adjacent/Hypotenuse tan A = Opposite/Adjacent, cot A = Adjacent/Opposite sec A = Hypotenuse/Adjacent, csc A = Hypotenuse/Opposite 【Basic Identities】 sin²θ + cos²θ = 1 (Pythagorean identity) tan θ = sin θ / cos θ 1 + tan²θ = sec²θ 1 + cot²θ = csc²θ 【Common Special Angles】 sin(30°)=1/2, sin(45°)=√2/2, sin(60°)=√3/2 cos(30°)=√3/2, cos(45°)=√2/2, cos(60°)=1/2
Practical Examples
Important Notes
Application Scenarios
- - Architecture: Slope/roof pitch calculation, truss force analysis, antenna elevation angle
- - Navigation: GPS triangulation, maritime celestial navigation
- - Signal processing: Fourier transform decomposes time-domain signals into sine wave superpositions
- - Physics: Simple harmonic motion x=A·sin(ωt+φ), wave interference and diffraction
- - Game development: Character movement direction, camera rotation, 3D rotation matrices
Degrees vs Radians In-Depth
Degrees: Divide a full circle into 360 equal parts, each 1°. Originating from the ancient Babylonian sexagesimal system, intuitive and widely used in daily life.
Radians: Measure the central angle by the arc length in units of radius. A full circle = 2π rad ≈ 6.283 rad. The advantage of radians is that they are a dimensionless natural unit — when r=1, arc length equals the radian value.
Why does higher mathematics prefer radians? Because only with radians do the elegant formulas lim(sin x/x)=1 (x→0) and d/dx(sin x)=cos x hold. With degrees, derivatives would include an extra π/180 factor. Therefore, calculus, physics formulas, and programming trig functions all default to radians.