Polar Coordinates

To be honest, it should be called Polar Coordinate System

In mathematics, the polar coordinate system is a two-dimensional coordinate system in which each point on a plane is determined by a distance from a reference point and an angle from a reference direction.

  • The reference point (analogous to the origin of a Cartesian coordinate system, the center point) is called the pole

  • The ray from the pole in the reference direction is the polar axis

You can represent any point in this system with (distance, angle), for example, (3, 60 degree)

or generally, (ρ,θ)(\rho, \theta)

ρ\rho: rho

θ\theta: theta

Converting between polar and Cartesian coordinates

x=ρcosθx = \rho \cdot \cos{\theta}
y=ρsinθy = \rho \cdot \sin{\theta}
ρ=x2+y2\rho = \sqrt{x^2 + y^2}

Question and Answers

In polar coordinate system, a circle equation is ρ=8sinθ\rho = 8 \cdot \sin{\theta}, a line equation is θ=π3\theta=\frac{\pi}{3}, what's the max distance for a point at that circle to the line?

the answer is 6

First, we need to convert all information from polar coordinate to Cartesian coordinate:

1. circle

ρ=8sinθρ=8yρρ2=8yx2+y2=8yx2+y28y=0x2+(y4)2=16=42\begin{align*} \rho &= 8 \cdot \sin{\theta} \\ \rho &= 8 \cdot \frac{y}{\rho} \\ {\rho}^2 &= 8y \\ x^2 + y^2 &= 8y \\ x^2 + y^2 - 8y &= 0 \\ x^2 + (y-4)^2 &= 16 = 4^2 \\ \end{align*}

so now we know the center point of that circle is (0, 4), radius of the circle is 4

2. line

we know θ=π3\theta=\frac{\pi}{3} is nothing but a line of 60 degree angle.

And we also know a general line could be represented as y=slopexy = slope \cdot x

And slope=tan(θ)slope = \tan(\theta)

so:

slope=tanπ3=3y=3x\begin{align*} slope &= \tan\frac{\pi}{3} \\ &= \sqrt{3} \\ \\ y &= \sqrt{3} \cdot x \\ \end{align*}

How to get the max distance?

Inner a circle, diameter is the longest line segment you can get.

A special line drawn inside a circle is called a chord. A chord can be of different lengths. The longest length of the chord is called a diameter. Two times the radius makes a diameter.

And for the distance between a point(x0,y0x_0, y_0) and a line(ax+by+c=0ax + by + c = 0), there's a formula for it:

distance=a(x0)+b(y0)+ca2+b2distance = \frac{|a(x_0) + b(y_0) + c|}{\sqrt{a^2 + b^2}}

So first, we need to choose a line as close a diameter as possible.

For some reason, people already known the distance between a line and circle center + the radius of that circle = the max distance for a point at that circle to the line.

so:

distance between circle center and line=30+(1)(4)32+12=42=2max distance=4+radius of that circlemax distance=4+2max distance=6\begin{align*} \text{distance between circle center and line} &= \frac{|\sqrt{3} \cdot 0 + (-1) \cdot (-4)|}{\sqrt{\sqrt{3}^2 + 1^2}} \\ &= \frac{4}{2} \\ &= 2 \\ \\ \text{max distance} &= 4 + \text{radius of that circle} \\ \text{max distance} &= 4 + 2 \\ \text{max distance} &= 6 \end{align*}

Thank you for reading, I love the feeling of doing this.

Last updated

Was this helpful?