I'm having trouble working out how to differentiate expressions that have both division and square roots in them such as:
$$\frac{2x}{\sqrt{x^2+7}}$$
if someone could show me the necessary process that would be great.
I'm having trouble working out how to differentiate expressions that have both division and square roots in them such as:
$$\frac{2x}{\sqrt{x^2+7}}$$
if someone could show me the necessary process that would be great.
Using the quotent rule $\bigg(\frac{u}{v}\bigg)' = \frac{vu' - v'u}{v^2}$
$$\frac{d}{dx}\left(\frac{2x}{\sqrt{x^2+7}}\right) = \frac{\sqrt{x^2+7} \cdot (2x)^{'}-2x\cdot {(\sqrt{x^2+7})^{'}}}{(\sqrt{x^2+7})^2}$$
$$=\frac{\sqrt{x^2+7} \cdot 2 - 2x\cdot \frac{1}{2\sqrt{x^2+7}}\cdot(2x) }{x^2+7}=\frac{2\sqrt{x^2+7}-\frac{2x^2}{\sqrt{x^2+7}}}{x^2+7}=\frac{\frac{2(x^2+7)-2x^2}{\sqrt{x^2+7}}}{x^2+7}=\boxed{\frac{14}{(x^2+7)\sqrt{x^2+7}}}$$
For this kind of problems where you have products, quotients and powers, logarithmic differentiation makes life easier.
Making the problem more general, consider $$f(x)=\frac{[g(x)]^a}{[h(x)]^b}\implies \log(f(x))=a \log(g(x))-b \log(h(x))$$ Differnetiate both sides to get $$\frac{f'(x)}{f(x)}=a\frac{g'(x)}{g(x)}-b\frac{h'(x)}{h(x)}\implies f'(x)=f(x)\Big(a\frac{g'(x)}{g(x)}-b\frac{h'(x)}{h(x)} \Big)$$ and simplify to finally obtain $$f'(x)=a g(x)^{a-1} h(x)^{-b} g'(x)-b g(x)^a h(x)^{-b-1} h'(x)$$