s =
NDSolve[
{x''[t] == ω^2 x[t] + 2 ω y'[t], y''[t] == ω^2 y[t] - 2 ω x'[t],
x[0] == -.5, x'[0] == v0/Sqrt[2], y[0] == 0, y'[0] == v0/Sqrt[2]},
{x, y}, t]
I am trying to solve the above coupled, second-order differential equation, but I'm getting this error:
NDSolve::deqn: Equation or list of equations expected instead of True in the first argument {True, y [t]-2 (x′)[t] == ω^2 y[t] - 2]ω x′[t], x[0] == -0.5, True, y[0] == 0, True}.
Any suggestions?