Solving Polar Equation r = θ + sin(2θ) for x = -2: Homework Problem

  • Thread starter Thread starter rjs123
  • Start date Start date
  • Tags Tags
    Polar
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
6 replies · 2K views
rjs123
Messages
90
Reaction score
0

Homework Statement





Using this polar equation:

[tex]r = \theta + sin(2\theta)[/tex]

Find the angle [tex]\theta[/tex] that relates to the point on the curve when x = -2


I'm not sure where to start...but my guess is to convert the equation to another form...any help is appreciated.
 
Physics news on Phys.org
Use [tex]x=r\cos\theta[/tex], you know that theta has to be in the range to make cos theta negative, so I might write:

[tex] \frac{-2}{\cos\theta}=\theta +\sin (2\theta )[/tex]

and look for a possible numerical solution.
 
Don't convert the equation, convert the condition. [itex]x= r cos(\theta)[/itex] so the condition that x= -2 becomes [itex]rcos(\theta)= -2[/itex]. Since on this curve, [itex]r= \theta+ sin(2\theta)[/itex] you want to solve [itex](\theta+ sin(2\theta))cos(\theta)= -2[/itex].
 
Last edited by a moderator:
SammyS said:
x=r·cos(θ), so if x=2, r=2/cos(θ)

That leaves you to solve: 2/cos(θ) = θ + sin(2θ) for θ.

Looks like a numerical solution.

yes, this is what I initially had...[tex]\theta + sin2\theta = \frac{-2}{cos\theta}[/tex]

but got stuck on finding [tex]\theta[/tex]
 
Use Newton Raphson method. if you have an equation to solve [tex]f(\theta )=0[/tex] then to iterate to a solution use the process:

[tex] \theta_{n+1}=\theta_{n}-\frac{f(\theta_{n})}{f'(\theta_{n})}[/tex]

You have to have an initial stating guess mind you, and you have to work in radians. I would start with an initial guess of [tex]\pi /2[/tex]
 
Having done the calculation myself (just out of interest), the iteration process out should use is:

[tex] \theta_{n+1}=\theta_{n}-\frac{\theta_{n}\cos\theta_{n} +\sin 2\theta_{n}\cos\theta_{n}+2}{\cos\theta_{n} (1+2\cos 2\theta_{n} )-\sin\theta_{n} (\theta_{n} +\sin 2\theta_{n} ))}[/tex]

After about 3 iterations it settled down to the value of [tex]\theta =2.7861[/tex] radians.