I have a function that I want to find the derivative of using the difference quotient definition of a derivative. The function is:
$$f(x)=\frac{\sqrt{x}}{x+1}$$
therefore, using the difference quotient definition, we have:
$$f'(x)=\lim_{h\to0}\frac{1}{h}\left(\frac{\sqrt{x+h}}{x+h+1}-\frac{\sqrt{x}}{x+1}\right)$$
this is equal to:
$$\lim_{h\to0}\frac{1}{h}\left(\frac{(x+1)\sqrt{x+h}-(x+h+1)\sqrt{x}}{(x+1)(x+h+1)}\right)$$
I tried using (a+b)(a-b) = a^2 - b^2 to get rid of the square roots in the numerator, but the denominator gets pretty huge, so I'm not sure if this is a wise path to proceed down.
At this point I get stuck with the algebra. I understand that this is a simple derivative to take using the quotient rule, but I'm trying to practice taking limits, and to learn useful algebra tricks.
A step by step computation would be helpful. Many thanks
You properly wrote$$\lim_{h\to0}\frac{1}{h}\left(\frac{(x+1)\sqrt{x+h}-(x+h+1)\sqrt{x}}{(x+1)(x+h+1)}\right)$$ Now, it is clear that the problem is within $\sqrt{x+h}$. But, you could use the generalized binomial theorem to write $$\sqrt{x+h}=\sqrt{x}+\frac{h}{2 \sqrt{x}}+\cdots$$ So, for the numerator $$A=(x+1)\sqrt{x+h}-(x+h+1)\sqrt{x}=(x+1)\left(\sqrt{x}+\frac{h}{2 \sqrt{x}}+\cdots \right)-(x+h+1)\sqrt{x}$$ Expanding and simplifying $$A=\frac{h}{2 \sqrt{x}}-\frac{h \sqrt{x}}{2}=h\frac{1- x}{2 \sqrt{x}}$$ and the overall problem becomes simple.