How do you change (4, -1) from rectangular to cylindrical coordinates between [0, 2π)?

1 Answer
Mar 4, 2015

I will assume you meant "polar coordinates" since cylindrical coordinates are 3-dimensional and you have only supplied 2-dimensional Cartesian coordinates.

enter image source here

From the graph:
r = sqrt(4^2 + (-1)^2) = sqrt(17)r=42+(1)2=17
and
theta = arctan((-1)/4)θ=arctan(14)

Note that standard arctan functions will return a value which will need to be adjusted to compensate for the point being in the IV quadrant so thetaθ will fall in the [0,2pi)[0,2π) range.

Depending upon the version used you will typically get
arctan((-1)/4) = -0.245arctan(14)=0.245 (radians)
or
arctan((-1)/4) = -14.040arctan(14)=14.040 (degrees)

Add 2pi2π or 360^o360o respectively to get the "correct" answer.