learn.howToCalculate
learn.whatIsHeading
Polar coordinates represent a point by distance r from the origin and angle θ from the positive x-axis. Natural for circular and radial problems. x = r cos θ, y = r sin θ.
단계별 가이드
- 1Cartesian to polar: r = √(x²+y²) · θ = atan2(y,x)
- 2Polar to Cartesian: x = r cos θ · y = r sin θ
풀어진 예시
입력
Cartesian (3, 4)
결과
Polar (5, 53.13°)
r=√(9+16)=5; θ=atan2(4,3)=53.13°
계산할 준비가 되셨나요? 무료 Polar Coordinates 계산기를 사용해 보세요
직접 시도해 보세요 →