#When converting of Cartesian coordinates to polar coordinates

6 messages · Page 1 of 1 (latest)

pallid thunderBOT
#
  1. Wait patiently for a helper to come along.
  2. Once someone helps you, say thank you and close the thread with: ```diff
    +close
steady solstice
#

Porbably too low for uni level but I can't find complex numbers in help school

valid hearth
#

Cartesian to polar:
(x,y) -> (r,ø)
r = sqrt(x²+y²)
ø = arctan(y/x)
Polar to cartesian:
(r,ø) -> (x,y)
x = r cos(ø)
y = r sin(ø)
if you get a negative angle from arctan, for example 30°, then the angle is 360°-30° = 330°

steady solstice
#

if you get a negative angle from arctan, for example 30°, then the angle is 360°-30° = 330°
what about the quadrant?