At Westonci.ca, we connect you with the answers you need, thanks to our active and informed community. Join our platform to connect with experts ready to provide accurate answers to your questions in various fields. Join our Q&A platform to connect with experts dedicated to providing accurate answers to your questions in various fields.

5. Define a procedure “DistanceBetweenTwoPoints” that will take four paramaters x1, y1, x2
and y2 and will calculate the distance between these two points using the formula
√((x2 – x1)² + (y2 – y1)²). You must use the SquareRoot function you defined previously.
[10 points]

Test case:
> (DistanceBetweenTwoPoints 2 5 3 2)
3.1622776601683795
Can anyone please help me to write this procedure in Scheme Language? I am stuck! Please help!