soandos said:
does this make sense:
take the taylor series for e^x, at x=1, and you get the sum?
since i unfortunately have no experience with Taylor series, what is the proof for e^x.
sorry if i seem like i want to prove everything that anyone says, it is just that i do not have a background in the area.
Taylor Series are pretty simple.
Suppose that you can write some function f(x) as a polynomial of infinite degree.
f(x) = a_0 + a_1 x + a_2 x^2 + a_3 x^3 + ... + a_k x^k + ...
How do you find all the coefficients a_i? Plug in 0, and you get a_0:
f(0) = a_0 + a_1 (0) + a_2 (0)^2 + a_3 (0)^3 + ... = a_0
What about the rest? Well, take the derivative of f:
f'(x) = a_1 + 2 a_2 x + 3 a_3 x^2 + ... + k a_k x^{k-1} + ...
Notice that a_0 drops out. You can plug in 0 to f' and extract a_1.
f'(0) = a_1 + 2 a_2 (0) + 3 a_3 (0)^2 + ... + k a_k (0)^{k-1} + ... = a_1
To find a_2, you take the derivative again and find f''(0). But be careful this time. Taking the derivative has popped a '2' from the exponent on x and thrown it into your equation.
f''(x) = 2 a_2 + 6 a_3 x + ... + k (k-1) a_k x^{k-2} + ...
f''(0) = 2 a_2 + 6 a_3 (0) + ... + k (k-1) a_k (0)^{k-2} + ... = 2 a_2
So a_2 = \frac{f''(0)}{2}.
Continue this process, and you find that a_k = \frac{ f^{(k)}(0) }{k!} (where f^{(k)} is the k-th derivative and k! is k factorial).
So for any "well behaved" function f, we have
f(x) = \Sigma_{k=0}^\infty \frac{f^{(k)}(0)} {k!}x^k.
Now, applying this to f(x) = e^x, what do we get? Well, e^x is magical, because no matter how many times you take the derivative, it stays the same. That is, f^{(k)}(x) = f(x) = e^x. And knowing that e^0 = 1, we know that f^{(k)}(0) = f(0) = e^0 = 1. So finally, for our grand finale, we have:
e^x = \Sigma_{k=0}^\infty \frac{1} {k!} x^k.
So if we want to know what the number "e" itself is equal to, we just set x = 1:
e = e^1 = \Sigma_{k=0}^\infty \frac{1} {k!}.