What is the distance between the following polar coordinates?: # (21,(4pi)/3), (11,(11pi)/8) #
1 Answer
Explanation:
There are two basic methods, which invoke either working in polar coordinates or converting to Cartesian coordinates. The polar coordinate equation is a little harder to remember but easier to use, whereas the rectangular formula is easy to remember (it just relies upon Pythagoras) but invokes more work due to the polar to Cartesian conversion
Polar Coordinates
The distance between two polar coordinates
#d=sqrt(( r_1^2+ r_2^2 -2r_1r)2 cos(theta_2 - theta_1) )#
So for polar coordinates
#d=sqrt(21^2+11^2-2*21*11cos((11pi)/8-(4pi)/3)#
# \ \ =sqrt(441+121-462cos(pi/24))#
# \ \ =sqrt(103.9524..)#
# \ \ =10.1957...#
Cartesian (Rectangular) Coordinates
The distance between two Cartesian coordinates
#d=sqrt((x_1-x_2)^2+(y_1-y_2)^2) #
The Cartesian equivalent of the polar coordinate
#(21,(4pi)/3) rarr (21cos((4pi)/3), 21sin((4pi)/3)) #
# " "= (-10.5, -18.1865...)#
#(11,(11pi)/8) rarr (11cos((11pi)/8), 11sin((11pi)/8)) #
# " "= (-4.2095..., -10.1626...)#
So s the distance between these coordinates is:
#d=sqrt((-10.5-(-4.2095...))^2 + (-18.1865...-(-10.1626...))^2)#
# \ \ =sqrt((-6.2904...)^2 + (-8.0238)^2)#
# \ \ =sqrt(39.5701...+64.3823...)#
# \ \ =sqrt(103.9524...)#
# \ \ =10.1957...# , as above