Generate a Gallery of Difference Quotients
Compute the difference quotient of several functions and the related derivatives.
In[1]:=
fList = {1, x, x^2, x^3, x^4, 1/x, Sin[x], Cos[x], Sinh[x], Cosh[x],
a^(x)};
dqList = DifferenceQuotient[fList, {x, h}];
derList = Limit[dqList, h -> 0];
Display the results in a formatted table.
show complete Wolfram Language input
Out[2]//TraditionalForm=