learn.howToCalculate
learn.whatIsHeading
Arccos (inverse cosine, cos⁻¹) returns the angle whose cosine equals the input value. The output is in the range [0°, 180°] or [0, π] radians.
공식
θ = arccos(x) where cos(θ) = x
- x
- input value (cosine) — must be in range [−1, 1]
- θ
- angle result (degrees or radians)
단계별 가이드
- 1arccos(x) returns θ where cos(θ) = x
- 2Domain: x ∈ [−1, 1]
- 3Range: [0°, 180°] or [0, π] radians
- 4arccos(0.5) = 60°, arccos(−1) = 180°
풀어진 예시
입력
arccos(0.5)
결과
60° or π/3 radians
입력
arccos(0)
결과
90° or π/2 radians
입력
arccos(−0.5)
결과
120° or 2π/3 radians
자주 묻는 질문
What is the domain and range of arccos?
Domain: [−1, 1]. Range: [0°, 180°] or [0, π] radians.
Why is arccos(1) = 0 and arccos(−1) = 180°?
cos(0°) = 1, so the angle whose cosine is 1 is 0°. Similarly, cos(180°) = −1.
Is arccos the same as 1/cos?
No! arccos is the inverse function (angle from cosine). 1/cos is the reciprocal (secant).
계산할 준비가 되셨나요? 무료 Arccos 계산기를 사용해 보세요
직접 시도해 보세요 →