I have the following system: $$dx/dt=y ;$$
$$dy/dt=x+yz ;$$
$$dz/dt=x+y^2+xz.$$ I work on this system that it has no first integral and invariant algebraic surface. So I want to solve it by numerical methods. Can I solve it by Runge-Kutta method? How can I choose the initial point?
Yes, you can solve this system using the Runge-Kutta Method, but this problem has singularities that you have to watch out for.
Here is the solution using Mathematica's built in numerical solver.
Here it is using Runge-Kutta
In both cases, I just selected a random IC of $(x(0), y(0), z(0)) = (1,1,1)$, but I'd certainly play around with different values.