User Portlet User Portlet

Discussions
f[x_, y_] = 2 + (x y^2)/7; (*initial conditions*) Y[0] = 0; x[0] = 0; (*number of intervals and step size*) n = 4; h = 2/n // N; (*table of points*) pnts = Table[{x[i] = x[i - 1] + h, ...