1. Solve the following IVP using the second-order Taylor method with step size h = 0.3 to…
1. Solve the following IVP using the second-order Taylor method with step size h = 0.3 to calculate the solution estimates at x1, x2, and x3.
2. Write a user-defined function with function call y = Taylor_2_ ODE(f,fp,x,y0) that solves a first-order IVP in the form y′ = f(x,y), y(x0) = y0 using the second-order Taylor method. The input argument fp represents the first derivative of the function f, while the others are as in Euler ODE. Execute the function to solve