Answers
(1) The system can be first converted into a system of four ordinary differential equations and then can be solved using ode45 (Runke-Kutta 4th order) of MATLAB by the following code:
G=6.67408*10^(-11);
M=5.974*10^(24);
R=6378.1*10^3;
v=10000;
f = @(t,x) [x(2);(-G*M*x(1))/((x(1))^2+(x(3))^2)^(3/2);x(4);(-G*M*x(1))/((x(3))^2+(x(3))^2)^(3/2)]; % The system %
[t,xa] = ode45(f,[0 10],[0 v 20000+R 0]);
distance=sqrt((xa(85,1))^2+(xa(85,3))^2) % distance of the satelite from the centre of earth %
plot(xa(:,1),xa(:,3))
xlabel('x(t)'), ylabel('y(t)')
You can see the distance we get is 6398880 which is larger than R, i.e., 6378100. The plot (x,y) is given below :
(b) To determine the v_{min}, one can change v in the above MATLAB code and check the distance for each of this v. Then see for which it is less than R.