
Jacob G. answered 03/30/20
A Mechanical Engineering Grad that's Passionate for Problem Solving
Whenever we see an equation that seems like it has a lot going on, it helps to break it down into more manageable bits, making it more obvious which derivation rules need to be used. This doesn't need to be done every time, but it's helpful as you're building your intuition when it comes to derivation.
First, we convert it from single-line to general mathematical notation to make it easier to understand the layers of each operation being performed within the function:
f(x) = 3/7sin^2(3x)
3
f(x) = –– sin2(3x)
7
3
f(x) = –– [sin(3x)]2
7
From here, we start breaking the function down into smaller chunks:
3
f(u) = –– [u]2 where u = sin(3x)
7
3
f(u) = –– u2 where u = sin(v) and v = 3x
7
If you didn't know already, calculus was developed separately and independently by both Sir Isaac Newton and Gottfried Leibniz. And since then, many mathematicians have put their own flare on how to describe calculus. Because of that, there's different ways to notate the same concepts, including derivatives. We could use Lagrange's notation with the derivative as f'(x), but for this scenario, I think it'll be more intuitive to use Leibniz's notation with the derivative as d(f(x))/dx or:
d(f(x)) dy
––––– = ––
dx dx
Back to where we left off:
3
f(u) = –– u2 where u = sin(v) and v = 3x
7
We take the derivative of the main equation with respect to u using the Power Rule:
d(f(u)) 3 6
––––– = –– 2 u2-1 = –– u
du 7 7
The problem is, we need the derivative with respect to x, but to get to that, we first need the derivative with respect to v. From earlier:
u = sin(v)
du
–– = cos(v)
dv
Which we can rearrange as:
du = cos(v) dv
Plug into the main equation:
d(f(v)) 6
–––––––– = –– sin(v)
cos(v) dv 7
And rearrange to the standard format:
d(f(v)) 6
–––––– = –– sin(v)cos(v)
dv 7
We're getting closer! Let's do this process again, but with respect to x now. From way earlier:
v = 3x
dv
–– = 3
dx
dv = 3dx
Plugging in and simplifying:
d(f(x)) 6
–––––– = –– sin(3x)cos(3x)
3dx 7
d(f(x)) 6
–––––– = 3 –– sin(3x)cos(3x)
dx 7
d(f(x)) 18
–––––– = –– sin(3x)cos(3x)
dx 7
Now that we have our answer, you might be able to see where the "chain" in Chain Rule comes from. We're simply linking together a series of nested derivatives to get to that of our initial equation. If you follow this process enough times, you'll start to see where the shortcuts and general formulas came from in the first place.
Paul F.
No need for the Product Rule as you can use the Constant Rule and just factor out the leading 3/7 and find [sin^2 (3x) using the Power and Chain Rules. I think that is a bit easier. But Tim's solution works fine too.03/27/20