Distance Between Points ஐ எப்படி கணக்கிடுவது
Distance Between Points என்றால் என்ன?
The distance formula calculates the straight-line distance between two points in 2D or 3D space. It is derived from the Pythagorean theorem.
சூத்திரம்
d = √[(x₂−x₁)² + (y₂−y₁)²] (2D); d = √[(x₂−x₁)² + (y₂−y₁)² + (z₂−z₁)²] (3D)
- P₁
- first point (x₁, y₁)
- P₂
- second point (x₂, y₂)
- d
- distance between points (length)
படிப்படியான வழிகாட்டி
- 12D: d = √((x₂−x₁)² + (y₂−y₁)²)
- 23D: d = √((x₂−x₁)² + (y₂−y₁)² + (z₂−z₁)²)
- 3Midpoint: ((x₁+x₂)/2, (y₁+y₂)/2)
- 4Manhattan distance: |x₂−x₁| + |y₂−y₁|
தீர்க்கப்பட்ட எடுத்துக்காட்டுகள்
உள்ளீடு
(0,0) to (3,4)
முடிவு
d = √(9+16) = 5
உள்ளீடு
(1,2,3) to (4,6,3)
முடிவு
d = √(9+16+0) = 5
அடிக்கடி கேட்கப்படும் கேள்விகள்
Is the distance formula symmetric?
Yes! d(P₁, P₂) = d(P₂, P₁). The order doesn't matter.
Can distance be negative?
No, distance is always non-negative. It's the magnitude of the displacement vector.
How do I find the distance from a point to a line?
Use the point-to-line distance formula: d = |ax₀ + by₀ + c| / √(a² + b²).
கணக்கிடத் தயாரா? இலவச Distance Between Points கால்குலேட்டரை முயற்சிக்கவும்
நீங்களே முயற்சிக்கவும் →