1. Find distance between points with positive integer coordinates
Problem
Write down both points clearly so you do not mix up which is which.
This is the difference in the -coordinates; keep it separate from the vertical difference.
Similarly, find how much the -coordinates differ.
Squaring removes any negative signs and is required by the Pythagorean theorem.
This sum represents the square of the hypotenuse of a right triangle.
Taking the square root gives the actual distance between the points.
Answer:
This is a straightforward application of the distance formula with positive integer coordinates and a perfect-square answer. The horizontal and vertical separations form the legs of a right triangle, and the distance is the hypotenuse.