Suppose that we use Euler's method to approximate the solution to the differential equation dy/dx = x^3/y; y(0) = 7. Let f(x,y) = x^3/y. We let x_0 = 0 and y_0 = 7 and pick a step size h = 0.2. Euler's method is the following algorithm. From x_n and y_n, our approximations to the solution of the differential equation at the nth stage, we find the next stage by computing x_{n+1} = x_n + h, y_{n+1} = y_n + h * f(x_n, y_n). Complete the following table. Your answers should be accurate to at least seven decimal places. n x_n y_n 0 0 7 1 0.2 7 2 0.4 7.000229 3 0.6 4 0.8 5 1.0 The exact solution can also be found using separation of variables. It is y(x) = Thus the actual value of the function at the point x = 1 y(1) =