Question about converting x = pi/6 to polar form

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 3K views
ishanz
Messages
8
Reaction score
0

Homework Statement


Convert t = pi/6 into polar form.


Homework Equations


x = r*cos(t)
y = r*sin(t)



The Attempt at a Solution


t = pi/6
cos(t) = cos(pi/6)
cos(t) = sqrt(3)/2
x/r = sqrt(3)/2
sqrt(3)r = 2x
sqrt(3)sqrt(x^2 + y^2) = 2x
sqrt(3x^2 + 3y^2) = 2x
3x^2 + 3y^2 = 4x^2
0 = x^2 - 3y^2

However, the book says to use tangent instead, as shown below:

t = pi/6
tan t = sqrt(3)/3
y/x = sqrt(3)/3
sqrt(3)x - 3y = 0

This is the correct answer. However, I do not understand why the answer I obtained is incorrect. Is it legal to cosine both sides as I did?
 
on Phys.org
Actually the answer you got and the correct answer are nearly the same.

[tex]\sqrt{3}x-3y=0[/tex]

[tex]x-\sqrt{3}y=0[/tex]

[tex]x=\sqrt{3}y[/tex]

[tex]x^2=3y^2[/tex]

[tex]x^2-3y^2=0[/tex]

which is what you had. The only problem is that when you squared both sides you have introduced more solutions which are not correct. If we go backwards such as taking the square root of both sides we get:

[tex]x^2=3y^2[/tex]

[tex]x=\pm \sqrt{3} y[/tex]

and the solutions [itex]x=-\sqrt{3}y[/itex] are not correct.

It is difficult to avoid squaring in this line you had: [tex]\sqrt{3(x^2 + y^2)} = 2x[/tex] which is why using the tangent is the best approach.
 
Ahh, that makes a lot of sense. Thanks a lot!