1

before I ask for anything I must admit I'm working hard to understand this beautiful subject. Thanks in advance. I want to get a derivative of: $\cos(x)\sin(x)$ The solution is the following:

$$ \frac d{dx}(\cos(x) \sin(x)) = \cos(2 x)$$

Where should I start?

Diego Pacheco
  • 151
  • 4
  • 13
  • Do you know the product rule? $\frac{\mathrm d}{\mathrm dx} (f(x) g(x)) = f(x) \frac{\mathrm d}{\mathrm dx} g(x) + g(x) \frac{\mathrm d}{\mathrm dx} f(x)$. –  Nov 10 '12 at 03:36
  • Of course, but I did not get a cos(2x) Thanks. – Diego Pacheco Nov 10 '12 at 03:50

2 Answers2

3

One way is to recall the identity $\sin 2x=2\sin x\cos x$, which can be rewritten as $$\sin x\cos x=\frac{1}{2}\sin 2x.$$ Now differentiate, not forgetting to use the Chain Rule.

An alternative is to differentiate $\cos x\sin x$ immediately, using the Product Rule. We get $(\cos x)(\cos x)+(-\sin x)(\sin x)=\cos^2 x-\sin^2 x$. Then recall the identity $\cos 2x=\cos^2 x-\sin^2 x$.

André Nicolas
  • 507,029
2

Do you know the rules for taking the derivatives of products?

$$\frac d{dx}(uv) = u'v + uv'$$

Set $u = \cos(x)$ and $v = \sin(x)$ and find their derivatives using this rule.

Then you will need to use a Double-Angle Formula to get your desired result.

MJD
  • 65,394
  • 39
  • 298
  • 580
sacohe
  • 321