chilge
- 8
- 0
Homework Statement
I need to (analytically) solve a system of coupled second-order ODEs:
(A) \frac{du}{dt} - fv = \Omega^2x
(B) \frac{dv}{dt} + fu = \Omega^2y
where
u = \frac{dx}{dt}
v = \frac{dy}{dt}
subject to the initial conditions u(t=0) = U and v(t=0) = 0.
Homework Equations
---
The Attempt at a Solution
(1) I first converted the ODEs to:
\frac{d^2x}{dt^2} - f\frac{dy}{dt} = \Omega^2x
\frac{d^2y}{dt^2} + f\frac{dx}{dt} = \Omega^2y
and then added and subtracted them to get:
\frac{d^2(x+y)}{dt^2} - f\frac{d(x-y)}{dt} = \Omega^2(x+y)
\frac{d^2(x-y)}{dt^2} - f\frac{d(x+y)}{dt} = \Omega^2(x-y)
then making the substitution
\alpha = x + y
\beta = x - y
which just leads me to the exact problem I started with.
Since I got stuck here, I tried it a different way...
(2) Making note that, from (B), u=\frac{1}{f}(\Omega^2y - \frac{dv}{dt}). Plugging into A, we get:
\frac{1}{f}(\Omega^2\frac{dy}{dt} - \frac{d^2v}{dt^2})-fv=\Omega^2x
(...after rearranging...)
\frac{d^2v}{dt^2} + v(f-\frac{\Omega^2}{f}) = -\Omega^2x
Since v=\frac{dy}{dt}, this is now a third order coupled ODE (after we do something similar to above for u), and I don't know how to solve it.
Does anyone know where to go from here?