📍 Coordinate Explorer

Enter coordinates for Point A and Point B. Instantly see them plotted on the grid, and learn how to calculate the Distance and Midpoint!

Point A (x₁, y₁)
( , )
Point B (x₂, y₂)
( , )
Distance
10.00
Midpoint
(0, 0)
A B M

📝 The Math Breakdown

  • Distance Formula: Find the length of the straight line connecting the two points using the Pythagorean theorem.
    Formula: d = √( (x₂ − x₁)² + (y₂ − y₁)² )
    Calculation: ...
  • Midpoint Formula: Find the exact center point by averaging the X coordinates and averaging the Y coordinates.
    Formula: M = ( (x₁ + x₂)/2 , (y₁ + y₂)/2 )
    Calculation: ...