Question: What methods can be applied to find the solution of this system with specified initial conditions?

How can we determine the solution of the  system

Udot1 := -beta*V;
Vdot1 := beta*U;
Pdot1 := Q;
Qdot1 := 0;

and with initial conditions 

 U(0) := U[0];
V(0) := V[0];
P(0) := P[0];
Q(0) := Q[0];

Ode1.mw

Please Wait...