কীভাবে Polar Coordinates গণনা করবেন
Polar Coordinates কি?
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 ক্যালকুলেটর চেষ্টা করুন
নিজে চেষ্টা করে দেখুন →