Point A is at (6 ,-2 )(6,2) and point B is at (-3 ,5 )(3,5). Point A is rotated pi/2 π2 clockwise about the origin. What are the new coordinates of point A and by how much has the distance between points A and B changed?

1 Answer
Sep 28, 2016

Use d = sqrt((x_A - x_B)^2 + (y_A - y_B)^2)d=(xAxB)2+(yAyB)2 to compute the distance, convert A to polar form and rotate -pi/2π2, convert A back to Cartesian form, compute the new distance, and the difference.

Explanation:

Compute the distance from B to A:

d = sqrt((6 - -3)^2 + (-2 - 5)^2)d=(63)2+(25)2

d = sqrt(130)d=130

Convert A to polar form:

r = sqrt(6^2 + (-2)^2)r=62+(2)2
r = sqrt(40)r=40
theta_1 = tan^-1(-2/6)θ1=tan1(26)

Rotate:

r = sqrt(6^2 + (-2)^2)r=62+(2)2
r = sqrt(40)r=40
theta_2 = tan^-1(-2/6) - pi/2θ2=tan1(26)π2

Convert back to Cartesian form:

(rcos(theta_2), rsin(theta_2) = (-2, -6)(rcos(θ2),rsin(θ2)=(2,6)

Compute the distance from B to the new A:

d_2 = sqrt((-2 - -3)^2 + (-6 - 5)^2)d2=(23)2+(65)2

d_2 = sqrt(1 + (-11)^2d2=1+(11)2

Deltad = sqrt(130) - sqrt(122)