Get the answers you need at Westonci.ca, where our expert community is always ready to help with accurate information. Join our Q&A platform and get accurate answers to all your questions from professionals across multiple disciplines. Get immediate and reliable solutions to your questions from a community of experienced professionals on our platform.

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!