From the definition of a derivative it is seen that the process of
differentiating a function
consists in taking the following
distinct steps:
General rule for differentiating4.5:
The student should become thoroughly familiar with this rule by applying the process to a large number of examples. Three such examples will now be worked out in detail.
Solution. Applying the successive steps in the General Rule, we get, after placing
Fourth step.
.
We may also write this
Here's how to use SAGE to verify this (for simplicity, we set
):
[fontsize=\scriptsize,fontfamily=courier,fontshape=tt,frame=single,label=\sage]
sage: x = var("x")
sage: h = var("h")
sage: f(x) = 3*x^2 + 5
sage: Deltay = f(x+h)-f(x)
sage: (Deltay/h).expand()
6*x + 3*h
sage: limit((f(x+h)-f(x))/h,h=0)
6*x
sage: diff(f(x),x)
6*x
Solution. Place
.
First step.
Fourth step.
.
Or,
Solution. Place
.
First step.
.
Second step.
Fourth step.
.
Or,
.
david joyner 2008-08-11