lacunary - Mathnotes

Polar Coordinates

This isn't strictly a calculus topic but it comes up a lot with calculus so I'm sticking it here. I'm not really sure what "part" of math coordinate systems belong to; they are used all over the place and have geometric and algebraic interpretations.

Definition

Polar coordinates are a 2d orthogonal coordinate system where coordinates are given by two components, radius and angle, i.e. P=(r,θ).

The radius is the distance from the origin to P and the angle is the angle formed with a line measured counter-clockwise from the positive x-axis to a line passing through P.

Converting Between Rectangular and Polar

x=rcosθ,y=rsinθ

r=x2+y2,θ=atan2(y,x)

Derivatives

If we parameterize such that x=x(t) and y=y(t) and want to find x and y in polar coordinates, we have:

dxdt=x(t)=(rcosθ)=rcosθθrsinθ,dydt=y(t)=(rsinθ)=rsinθ+θrcosθ(a)

thus:

dydtdxdt=dydx=rsinθ+θrcosθrcosθθrsinθ(b)

Doing some tedious algebra from here, we can arrive at definitions of r and θ in terms of x,y,x,y and r, but it's easier if we start with the following, letting x=x(t), y=y(t), r=r(t), θ=θ(t):

r2=x2+y2,tanθ=yx(c)

Differentiating the first equation in (c) with respect to t we get:

2rr=2xx+2yy, rr=xx+yy, r=xx+yyr(d)

Rewriting the second equaton in (c) and then differentiating with respect to t we get:

θ=tan1yx,θ=11+(yx)2yxyxx2=yxyxx2+y2=yxyxr2(e)

Summarizing (d) and (e) we have:

drdt=r=xx+yyr,dθdt= θ=yxyxr2(f)

Therefore, the derivative of r with respect to θ is:

drdtdθdt=drdθ=xx+yyrr2yxyx=r(xx+yy)yxyx

Radial and Transverse Components of Motion

Given a particle at point B(r,θ) moving in a plane, we can define the radial and transverse components of the particle's motion.

Radial: The particle's motion in the direction away from the origin, that is, in the direction that purely increases the r coordinate of the particle's position.

Transverse: The particle's motion in the direction tangential to its radius, that is, in the direction that purely increases the θ coordinate of the particle's position.

Let's call the radial direction R and the transverse direction T. Also recognize that the radial and transverse directions are orthogonal - moving in the radial direction doesn't change the transverse component and vice versa.

Let's assume the particle at B(r1,θ1) is moving in the direction of point L(r2,θ2), at velocity v0. We can then say that the velocity vector for the particle is given as the vector v=v0,θρ.

Then, the component of v in the R direction is the projection of v onto R, whose magnitude is given by vR=v0cos(θρ), and the component of v in the T direction is the projection of v onto T, whose magnitude is given by vT=v0sin(θρ). The following image shows this geometrically:

Radial and Transverse Components

Here, you can see that we can sort of think of the R direction as the x-axis and the T direction as the y-axis when thinking about how to find the amount of motion in the R and T directions. It's important to remember, though, that for a moving particle, its position is changing constantly, and so are the R and T directions, so they don't make good fixed references.

We must also point out that vR is moving in the negative R direction here and so is reducing the radius. In vector component form it would be given as v0cos(θρ),θ and the derivative of the radius with respect to time would be given by drdt=v0cos(θρ).

Also, while vT=v0sin(θρ), this doesn't tell us the change in θ with respect to time, it only tells us the amount of linear movement in the tangential direction. The change in angle also depends on the radius - the further from the origin we are, the less the angle will change. The derivative of the angle θ with respect to time is then given by dθdt=v0sin(θρ)r. Note: The division by r here needs better justification. It's intuitive that the bigger r, the less the change in angle, but it's not clear why it should be a linear factor.

Other Notes

I found the notes in this document on converting a system of rectangular differential equations to polar coordinates particularly helpful.

polar integrals