I am struggling to solve the following non-linear simultaneous differential equation. $$ m\frac{dx}{dt} + cx^2 +k_1 y=0\\ m\frac{dy}{dt}-cy^2-k_1x+k_2=0 $$ where m, c, $k_1$ and $k_2$ are positive constants.
I have continued further to find y(t);
After much simplification I got;
$$ m^2k_1^2y'' -2c^2my'y^2 + 2cmk_2y'-2k_1mcyy'+cm^2y'^2+c^3y^4-2c^2k_2y^2+k_1^3y+k_2^2c=0 $$
However, I substituted all the constants in; \begin{align} m=0.66 \times 10^{-3}\\ k_1=4.6 \times 10^{-6}\\ k_2=6.5\times 10^{-3}\\ c=7.6\times 10^{-6} \end{align}
Initial condition \begin{align} t=0\\ x=0\\ y=0\\ \end{align}
and tried to run it on wolfram alpha, but it says "Standard computation time exceeded." What should I do? I do not have access to matlab.
To save your time: i pressed this into alpha wolfram - "(9.2x10^-18)y''-(7.6x10^-14)y'y^2+(6.5x10^-11)y'-(4.6x10^-14)yy'+(3.3x10^-12)(y')^2+(4.39x10^-16)y^4-(7.5x10^-13)y^2+(9.8x10^-17)y+(3.18x10^-10)=0"
So if anyone has matlab is it possible if you run this result for me.

This MATLAB code:
produces this answer:
Function
fcomputes the derivatives in terms of current stateyand parametersm,c, andk. Then@(~,y) f(y,c,m,k)fixes the values of the parameters to give an anonymous function of time and state, which is handed over to the ODE solver. The ODE solver (ode45in this case) calls that function repeatedly to integrate. Since the system is time-invariant, the first parameter (time) to the function passed to the solver is ignored. (That's what the tilde is for.)For Octave, the call to the ODE solver must be changed:
The function
fdoesn't need any changes.