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 கால்குலேட்டரை முயற்சிக்கவும்
நீங்களே முயற்சிக்கவும் →