Answer:
distance = sqrt( 65 ) ~= 8.06
Explanation:
To find the distance between two points, we can use the distance formula.
distance = sqrt( [x2 - x1]^2 + [y2 - y1]^2)
distance = sqrt( [-5 - 2]^2 + [3 - -1]^2)
distance = sqrt( [-7]^2 + [4]^2)
distance = sqrt( 49 + 16 )
distance = sqrt( 65 ) ~= 8.06
Cheers.