Graph in a window that has 0 <= x <= 2. Then, on the same screen, graph
for h = -1, -0.5, -0.1, 0.1, 0.5, 1.
from sympy import * init_printing() x, h = symbols('x h') y1 = 1/(2*sqrt(x)) y2_0 = (sqrt(x + h) - sqrt(x))/h y2 = Lambda((x, h), y2_0) h = (-1, -0.5, -0.1, 0.1, 0.5, 1) ff = [] for n in h: f = y2(x, n) ff.append(f) pprint(ff) plot(y1, ff[0], ff[1], ff[2], ff[3], ff[4], ff[5], (x, -1, 2), ylim=(0, 10))