Re: Using first principles to find the derivative of a function at a specific vlaue for x
Petrus said:
Hello!
I am stuck trying to understanding this question. I would be glad if someone could explain it to me.
"Each limit represents the derivative of some function $f$ at some number $a$. State such an $f$ and $a$ in each case."
Example of a problem:
$\displaystyle \lim_{h\to0}\frac{(1+h)^{10}-1}{h}$
After typing this out, I realized I misunderstood the problem, but if you don't mind, I'd like to add my two cents on another way to compute the derivative of this guy from first principles.
There is another way to find the derivative of $x^{10}$ from first principles without using the binomial theorem as MarkFL originally suggested, but in the end requires you to notice a peculiar form of factorizing a certain expression. In addition to the well known formula $f^{\prime}(a)=\displaystyle\lim_{h\to 0}\frac{f(a+h)-f(a)}{h}$, we also have an alternate (yet equivalent) form $f^{\prime}(a)=\displaystyle\lim_{x\to a}\frac{f(x)-f(a)}{x-a}$, which I personally like to use when having to justify the derivatives of polynomials from first principles.
So if we wanted to compute the derivative of $x^{10}$ at $x=1$, we'd have $f^{\prime}(1)=\displaystyle\lim_{x\to 1}\frac{x^{10}-1}{x-1}$. So now, there's actually a way to factorize the above expression. To see this, let us factor a few expressions and notice the pattern.
We know that:
$\hspace{.5in}\begin{aligned} x^2 - 1 &= (x-1)(x+1)\\ x^3-1 &= (x-1)(x^2+x+1)\\ x^4-1 &= (x^2-1)(x^2+1)\\ &= (x-1)(x+1)(x^2+1)\\ &= (x-1)(x^3+x^2+x+1)\end{aligned}$
So following the same pattern, we'd observe that $x^{10}-1=(x-1)(x^9+x^8+x^7+x^6+x^5+x^4+x^3+x^2+x+1)$.
(If this was done for general $a$, we'd notice that $x^{10}-a^{10}=(x-a)(x^9+ax^8+a^2x^7+a^3x^6+a^4x^5+a^5x^4+a^6x^3+a^7x^2+a^8x+a^9)$.)
Therefore,
$\hspace{.5in}\begin{aligned}\lim_{x\to 1}\frac{x^{10}-1}{x-1} &= \lim_{x\to 1}\frac{(x-1)(x^9+x^8+x^7+x^6+x^5+x^4+x^3+x^2+x+1)}{x-1}\\ &=\lim_{x\to 1}x^9+x^8+x^7+x^6+x^5+x^4+x^3+x^2+x+1\\ &= 1+1+1+1+1+1+1+1+1+1\\ &= 10\end{aligned}$
Thus, for $f(x)=x^{10}$, $f^{\prime}(1)=10$.
I hope this makes sense!