Use the General Rule, §4.7 in differentiating the following functions:
Ans:
Ans:
Ans:
Ans:
Ans:
Ans:
Ans:
Ans:
Ans:
Ans:
Ans:
Ans:
Here's how to use SAGE to verify this:
[fontsize=\scriptsize,fontfamily=courier,fontshape=tt,frame=single,label=\sage] sage: y = 3/(x^2-1) sage: diff(y,x) -6*x/(x^4 - 2*x^2 + 1)
Ans:
Ans:
Here's how to use SAGE to verify this (for simplicity, we set
):
[fontsize=\scriptsize,fontfamily=courier,fontshape=tt,frame=single,label=\sage]
sage: h = var("h")
sage: t = var("t")
sage: s(t) = 2*t^2 + 5*t - 8
sage: Deltas = s(t+h)-s(t)
sage: (Deltas/h).expand()
4*t + 2*h + 5
sage: limit((s(t+h)-s(t))/h,h=0)
4*t + 5
sage: diff(s(t),t)
4*t + 5
Ans:
Ans:
david joyner 2008-08-11