Find the distance between these two points -2 -1 and two and four

To find the distance between two points, we can use the distance formula.

If we have two points (x1, y1) and (x2, y2), the distance between them is given by:

Distance = √((x2 - x1)^2 + (y2 - y1)^2)

Let's calculate the distance between the points (-2, -1) and (2, 4).

x1 = -2, y1 = -1
x2 = 2, y2 = 4

Distance = √((2 - (-2))^2 + (4 - (-1))^2)
= √((2 + 2)^2 + (4 + 1)^2)
= √(4^2 + 5^2)
= √(16 + 25)
= √41

Therefore, the distance between the points (-2, -1) and (2, 4) is √41.