Answer:
To find the straight line distance between two points, you can use the distance formula, which is derived from the Pythagorean theorem:
Distance = √((x2 - x1)^2 + (y2 - y1)^2)
In this case, your points are (x1, y1) = (1, 1) and (x2, y2) = (-4, 11).
Plugging these values into the formula:
Distance = √((-4 - 1)^2 + (11 - 1)^2)
Now, calculate:
Distance = √((-5)^2 + (10)^2)
Distance = √(25 + 100)
Distance = √125
Distance ≈ 11.18
So, the straight-line distance between (1, 1) and (-4, 11) is approximately 11.18 units.
Hope this helps :)