কীভাবে Distance Calculator 2D গণনা করবেন
Distance Calculator 2D কি?
The distance formula calculates the straight-line (Euclidean) distance between two points in a 2D coordinate plane. It is derived directly from the Pythagorean theorem — the distance is the hypotenuse of a right triangle formed by the horizontal and vertical differences.
ধাপে ধাপে নির্দেশিকা
- 1Find the horizontal difference: Δx = x₂ − x₁
- 2Find the vertical difference: Δy = y₂ − y₁
- 3Square both differences and add them
- 4Take the square root: d = √(Δx² + Δy²)
সমাধান করা উদাহরণ
ইনপুট
(0,0) to (3,4)
ফলাফল
5
√(9+16)=√25=5 — a 3-4-5 triangle
ইনপুট
(1,1) to (4,5)
ফলাফল
5
√(9+16)=5
ইনপুট
(−2,3) to (4,−1)
ফলাফল
7.211
√(36+16)=√52≈7.211
গণনা করতে প্রস্তুত? বিনামূল্যে Distance Calculator 2D ক্যালকুলেটর চেষ্টা করুন
নিজে চেষ্টা করে দেখুন →