I am working with the system of ODE's or second order differential equation representing the nonlinear pendulum with constant torque and damping.
\begin{equation*} \theta'=v \end{equation*} \begin{equation*} v'=-bv-\sin(\theta)+k \end{equation*} with $b,k>0$ for physics reasons. I determined that we have equilibria at \begin{equation*} \begin{bmatrix}\theta\\v \end{bmatrix}= \begin{bmatrix}\sin^{-1}(k)\\0 \end{bmatrix} \end{equation*}
I have already proved that for $sin^{-1}(k)$ i.e. when there are no equilibria, and for some strip of the cylinder $\mathbb{R}\times S^1$ on which this system is defined, we have a periodic solution (via Poincare-Bendixson)
I need to show that this particular solution is unique. The hint given is to use the energy function for this system: $E(\theta, y)=\frac{1}{2} y^2 -\cos(\theta)+1$ and the fact that $E$ along any periodic solution must have no change.
However, I am getting a bit stuck on how to do this. Previous exercises seem to suggest I should make use of poincare map, $p$ iteration and maybe the contraction mapping to prove existence and uniqueness of a fixed point of the poincare map. My TA suggested that use of the "facts" from physics intuition that if $v_1>v_0$ then $p(v_1)<p(v_0)$ and if $v_1<v_0$ then $p(v_0)<p(v_1)$ as more energy is lost at higher velocity, and therefore we should end up at different vertical spots along the cylinder. I am not comfortable with writing up a solution in which these facts are proved appealing to natural phenomena, is there a better way?
Below is the answer I settled on. Helpful resources included Hirsch Smale and Devaney as well as Strogatz, nonlinear dynamics and chaos. Previous work included proving the existence of a solution between a strip of $v$ values and $0<\theta<2\pi$, a planar region where I applied Poincare-Bendixson to show there exists a at least a periodic solution.
The hint tells us that the net energy gained for any periodic solution is zero, adding $\int_{0}^{2\pi}\frac{dE}{d\theta}d\theta=0$ Fix $k>1$. Taking the energy function to be: \begin{equation*} E(v,\theta)=\frac{1}{2}v-\cos(\theta)+1 \end{equation*} We have \begin{equation*} \frac{dE}{d\theta}=v\frac{dv}{d\theta}+\sin(\theta)=v\frac{\frac{dv}{dt}}{\frac{d\theta}{dt}} +\sin(\theta) \end{equation*} By the chain rule, yielding: \begin{equation*} \frac{dE}{d\theta}=v\frac{-bv-\sin(\theta)+k}{v}+\sin(\theta)=-bv-\sin(\theta)+k+ \sin(\theta)=-bv+k \end{equation*}
Using our hypothesis that energy along periodic solutions is conserved, if $v$ is a $v$ is the velocity for which $p(v)=v$, i.e. the velocity for a periodic solution, which we know exists in the region $v_{1}<v<v_{2}$ then we have: \begin{equation*} \int_{0}^{2\pi}\frac{dE}{d\theta}d\theta=0\Rightarrow int_{0}^{2\pi}(-bv+k)d\theta =0\Rightarrow \frac{2\pi k}{b}=\int_{0}^{2\pi}v d\theta \end{equation*} But this means that this $v$ is unique. If $v'<v$, then $\int_{0}^{2\pi}v' d\theta <\int_{0}^{2\pi}v d\theta$ and if $v'>v$, then $\int_{0}^{2\pi}v' d\theta >\int_{0}^{2\pi}v d\theta$ by monotonicity of the integral.
Therefore, we can conclude that there is one $v$ for which $p(v)=v$ and $E(\theta,v)=E(\theta,p(v))$ and therefore one periodic solution.
Added: Any tips on how to prove that v is constant in theta would be much appreciated, I believe this is true but a hole in the above proof.