Distance Calculator
Calculate the distance between two points on a 2D plane using the distance formula.
Point 1
Point 2
Distance Formula
d = √[(x₂ - x₁)² + (y₂ - y₁)²]
How it works
- Calculate the difference in x-coordinates: 3 - 0 = 3
- Calculate the difference in y-coordinates: 4 - 0 = 4
- Square both differences: (3)² = 9, (4)² = 16
- Add the squares: 9 + 16 = 25
- Take the square root: √(25) = 0.0000