วิธีการคำนวณ Polar Coordinates
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 ฟรี
ลองด้วยตัวคุณเอง→