How to find the length between two points on a plane

The first point will be referenced using x1 and y1, while the second point will be referenced using x2 and y2.

  1. First, find the individual distances between the two x coordinates and the two y coordinates.
  2. Then, execute the Pythagorean Theorem, substuting a and b with the two distance values.

Back to Assignments.