0

I am struggling to find the derivative of $f(x)=\frac1x+2$ (and/or $f(x)=\frac1{x+2}$) using the definition of the derivative. thank you

pashy
  • 1

1 Answers1

4
  • First case

$$f'(x):=\lim_{h\rightarrow 0}\frac{f(x+h)-f(x)}{h}=\lim_{h\rightarrow 0}\frac{1}{h}\left(\frac{1}{x+h}-\frac{1}{x} \right)=\lim_{h\rightarrow 0}\frac{1}{h}\left( \frac{-h}{x(x+h)}\right)=\lim_{h\rightarrow 0} \frac{-1}{x(x+h)}=-\frac{1}{x^2}$$

  • Second case

$$f'(x):=\lim_{h\rightarrow 0}\frac{f(x+h)-f(x)}{h}=\lim_{h\rightarrow 0}\frac{1}{h}\left(\frac{1}{x+2+h}-\frac{1}{x+2} \right)=\lim_{h\rightarrow 0}\frac{1}{h}\left( \frac{-h}{(x+2)(x+2+h)}\right)=\lim_{h\rightarrow 0} \frac{-1}{(x+2)(x+2+h)}=-\frac{1}{(x+2)^2}$$

Avitus
  • 14,018
  • For the second function the strategy is similar: once you write the difference in the definition of the derivative explicitly you arrive at a single fraction $\frac{-1}{(x+2)(x+2+h)}$, whose limit for $h\rightarrow 0$ is $\frac{-1}{(x+2)^2}$. – Avitus Jul 22 '13 at 13:30
  • Edit: comment moved to the answer – Avitus Jul 22 '13 at 13:34
  • You are welcome! – Avitus Jul 22 '13 at 13:45