(d/dx)( f(x)g(x) ) = f(x)( (d/dx)g(x) ) + g(x)( (d/dx)f(x) )

What this means is that the derivative of a product equals the first factor times the derivative of the second factor, plus the second times the derivative of the first.

Proof:

Letting y = f(x)g(x) and using the definition of a derivative:

    f(x+h) - f(x)
lim -------------
h→0     h

we write

dy        f(x+h)g(x+h) - f(x)g(x)
-- = lim ------------------------.
dx   h→0            h

To change the form of the quotient so that the limit may be evaluated, we subtract and 
add the expression f(x+h)g(x) in the numerator.

dy       f(x+h)g(x+h) - f(x+h)g(x) + f(x+h)g(x) - f(x)g(x)
-- = lim ------------------------------------------------- =
dx   h→0                        h

         _                                               _
        |          g(x+h) - g(x)           f(x+h) - f(x) |     
     lim|f(x+h) * -------------- + g(x) * -------------- |=
        |h→0           h                       h         |
        |_                                              _|

                      g(x+h) - g(x)                  f(x+h) - f(x)
     lim f(x+h) * lim ------------- + lim g(x) * lim ------------
     h→0                   h                              h

Since f is differentiable at x, it is continuous at x. Hence, limh→0 f(x+h) = f(x). Also, limh→0 g(x) = g(x), since x is fixed in this limiting process. Finally, applying the definition of derivative to f(x) and g(x), we obtain

dy
-- = f(x)g'(x) + g(x)f'(x).
dx

The product rule is good to use if the factors of the product are too complicated to multiply out beforehand. However, we'll start with an easy exercise, for other rules might have to be known, such as the chain rule, for a complicated exercise.

Example:

y = (x3 + 1)(2x2 + 8x - 5)

(dy/dx)
= (x3 + 1)(dy/dx)(2x2 + 8x - 5) + (2x2 + 8x - 5)(dy/dx)(x3 + 1)

= (x3 + 1)(4x + 8) + (2x2 + 8x - 5)(3x2)

= (4x4 + 8x3 + 4x + 8) + (6x4 + 24x3 - 15x2)

= 10x4 + 32x3 - 15x2 + 4x + 8

This answer could also be found if y was multiplied out and then derived, which is a good way to check the answers of these exercises.

When studying multivariable calculus, one encounters a whole zoo of product rules: there's one for dot products, there's one for cross products, there's one for matrix products; later in functional analysis one sees yet another product rule for inner products. After a while, one gets the feeling that pretty much every notion of product comes with its own product rule. Isn't there some underlying general rule? Yes there is:

Let X, Y and Z be Banach spaces and let B : X × YZ be a continuous bilinear operator. Then B is differentiable and the derivative at the point (x,y) ∈ X×Y is the linear map D(x,y)B : X × YZ defined by

D(x,y)B(u,v) = B(x,v) + B(u,y)
for every (u,v)∈X×Y.


This writeup is in the public domain.

The following product rules are used when calculating derivatives of scalar functions and vector fields in multiple dimensions. They can be shown by breaking both sides of the equalities into components and using the product rule for single variables (as explained above): Let g,h be differentiable scalar functions of x. Then d/dx(gh)=g(dh/dx)+h(dg/dx).

A few words about notation:

  • All vector fields are in bold, all scalar functions are not.
  • gh is the product of g and h, and gA is the product of g and A.
  • A·B is the dot product of A with B.
  • A×B is the cross product of A with B.
  • g is the gradient of g.
  • ·A is the divergence of A.
  • ×A is the curl of A.
  • (A·)B is the vector [Ax1∂Bx1/∂x1, Ax2∂Bx2/∂x2, ...]

It makes sense that we would need 6 product rules for multivariable differentiation. We have three operators: gradient, divergence and curl. Gradient operates on a scalar function while divergence and curl operate on vector fields. A scalar can be formed by the product of two scalars functions or by the dot product of two vector fields. A vector can be formed from the product of a scalar function and a vector field or by the cross product of two vector fields. Therefore, there are three operations, each of which can operate on one of two possible combinations of scalar functions and vector fields, and three times two is six.

Let g,h be differentiable scalar functions of x1,x2,...,xn, and let A,B be differentiable vector fields in Rn.

  1. (gh)=gh+hg
  2. (A·B)=A×(×B)+B×(×A)+(A·)B+(B·)A
  3. ·(gA)=g(·A)+A·(g)
  4. ·(A×B)=B·(×A)-A·(×B)
  5. ×(gA)=g(×A)+A×(g)
  6. ×(A×B)=(B·)A-(A·)B+A(·B)-B(·A)


Sources:
Griffiths, D. Introduction to Electrodynamics Third Edition © 1999.
http://www.pas.rochester.edu/~orr/p217/lecture2.pdf

Log in or register to write something here or to contact authors.