In mathematics, the distance between one point (a) and another point (b), each with coordinates (x,y), can be computed by taking the differences of their x coordinates and their y coordinates and then squaring those differences. the squares are added and the square root of the resulting sum is taken and... voila! the distance. given two variables, p1 and p2 that are of type point -- a structured type with two fields, x and y, both of type double-- write an expression whose value is the distance between the two points represented by p1 and p