I am new to power series. I know how to write $e^x$ as a summation, but i do not know how that helps me.
-
Substitute $-\frac{x}{2}$ in your formula for $e^x$. – nomen Nov 05 '13 at 22:03
-
So the answer would be x^(-n/2)/n! ? – Tad Nov 05 '13 at 22:14
-
What nomen meant was, substitute $x$ in the $e^x$ expansion that you know (taylor series) for $-\frac{x}{2}$. – Oria Gruber Nov 05 '13 at 22:16
3 Answers
You know how to write $e^x$ as a power series, meaning that you know how to write
$$\exp(y) = e^y = \sum_{n = 0}^\infty \frac{y^n}{n!}$$
You might know that this is valid for all $y$. What you want to do is write out the series for $\exp(-x/2)$. Fortunately, you can get this from the series that you know.
All you need to do is substitute $-x/2$ in for $y$ in the expansion that you know, which I wrote above.
- 91,687
-
-
@user: Absolutely. In fact, if you just divide your expansion for $e^y$ by $y$, you get a perfectly reasonable expansion for $e^y/y$. Strictly speaking, it's not a power series any more (but it is a Laurent series, if that means something to you). If you really wanted to, I suppose you could expand the $1/y$ part of $e^y/y$ to get a power series - but that's sort of gross. – davidlowryduda Nov 05 '13 at 22:52
This problem is easy if you don't confuse yourself by using the same variable for multiple things. Here's an expression for $e^x$:
$$e^x = \sum_{n=0}^{\infty} \frac{x^{n}}{n!}$$
And here's an expression for $e^u$:
$$e^u = \sum_{n=0}^{\infty} \frac{u^{n}}{n!}$$
The takeaway here is that that the exponent of $e$ is simply a "dummy variable" - this means you can plug in anything for the variable and it will give you the correct equation! So in your example, you want to find $e^{x^{-2}}$. Just let $u = -x^2$, and plug in that value for $u$ wherever you see a $u$ in the series:
$$ e^{x^{-2}} = \sum_{n=0}^{\infty} \frac{{(x^{-2})}^{n}}{n!} = \sum_{n=0}^{\infty} \frac{x^{-2n}}{n!} \\ = \frac{x^0}{0!} + \frac{x^{-2}}{1!} + \frac{x^{-4}}{2!} + \frac{x^{-6}}{3!} + \frac{x^{-8}}{4!} \cdots \\ = 1 + \frac{1}{x^2} + \frac{1}{2x^4} + \frac{1}{6x^6} + \frac{1}{24x^8} + \cdots $$
- 4,384
-
Nicely written and formatted, but OP wants $e^{-x/2}$, not $e^{-x^2}$ or $e^{x^{-2}}$. – mjqxxxx Nov 05 '13 at 22:33
-
I feel so silly now...especially because I helped edit the title question!
– Xoque55 Nov 05 '13 at 22:45