This formula expresses the
-th derivative of the
product of two variables in terms of the variables
themselves and their successive derivatives.
If u and v are functions of
, we have, from
equation (V) in §5.1 above,
Solution. Let
, and
;
then
,
,
,
,
,
.
Substituting in (7.1), we get
This can be verified using the SAGE commands:
[fontsize=\small,fontfamily=courier,fontshape=tt,frame=single,label=\sage]
sage: x = var("x")
sage: f = exp(x)*log(x)
sage: diff(f,x,3)
e^x*log(x) + 3*e^x/x - 3*e^x/x^2 + 2*e^x/x^3
Solution. Let
, and
;
then
,
,
,
,
,
,
...,
,
.
Substituting in (7.1), we get
david joyner 2008-08-11