Combining Rules
Many functions can't be cracked open with a single rule.
Instead, we can use a rule to break the problem down into (possibly several)
simpler problems. Then we can use another rule on each of those. And repeat as long as
needed to get the answer.
Example: Find F′(x) where
F(x)=sin(x2)1+e2x.
Solution:
This is a ratio, so
F′(x)=(1+e2x)ddx((sin(x2))−sin(x2)ddx(1+e2x)(1+e2x)2,
by the quotient rule. But that still leaves us with the question
of how to compute the derivatives of sin(x2) and (1+e2x).
Each of those can be computed using the chain rule.
It's very dangerous to combine steps!
Until you've really got the hang of it,
write out your calculations with at most one rule per line.
For instance, you might write:
F′(x)=(1+e2x)ddx(sin(x2))−sin(x2)ddx(1+e2x)(1+e2x)2(by
the quotient rule)=(1+e2x)(cos(x2))(2x)−sin(x2)ddx(1+e2x)(1+e2x)2(by
the chain rule applied to sin(x2))=(1+e2x)(cos(x2))(2x)−sin(x2)e2xddx(2x)(1+e2x)2(by the
chain rule applied to e2x)=2x(1+e2x)cos(x2)−2sin(x2)e2x(1+e2x)2(by algebra)
|
Eventually you'll get the hang of it to the point that you can
do several operations in one line, but please be patient.
There isn't always an obvious order in which to apply the rules.
When in doubt, think about the structure of the function. Would
you describe it as a product of two simpler functions? If so, apply
the product rule first! Would you describe it as a quotient? If so,
apply the quotient rule first. Is it instead a power, or a log, or an
exponential, or a trig function of some complicated expression (which
may itself involve products, quotients, or further nesting)? If so,
apply the chain rule first.
|