I'm studying for my PhD qualifying exam and have run into a problem that I cannot figure out how to solve. I'm sure there is a relatively simple trick that I'm forgetting. Can you help me solve this?
Problem Statement
Let $u(t)$ and $v(t)$ be two real functions that obey the differential relations:
$$ \begin{align} \dot{u} &= v - au\\ \dot{v} &= -u + \sin(bt) \end{align} $$
where $a$ and $b$ are positive constants and dot denotes the derivative with respect to $t$. Find the value of $b$ such that the largest value of $v$ is 5 at very large $t$ (i.e., as $t \to \infty$)
My thoughts so far:
It seems to me that transforming this system into the frequency domain will be the best way to find the answer. If we assume zero initial conditions $u(0) = v(0) = 0$, then we can solve for the Laplace transform of $v$:
$$ V(s) = \frac{b(s+a)}{(s^2 + b^2)(s^2 + as + 1)} $$
Attempt 1: I tried splitting this into pieces via partial fractions; things get very messy very quickly so I abandoned that path.
Attempt 2: Final value theorem (FVT) seemed to be the next answer, i.e.
$$ \underset{t \to \infty}{\lim} v(t) = \underset{s \to \infty}{\lim} s V(s) $$
However, FVT only applies if the roots of the denominator of $s V(s)$ all have negative real parts. Clearly, $V(s)$ has poles at $\pm bi$, so that condition is not satisfied...
Thoughts?