I observed that
$f^{(n)}(x)=
\begin{cases}
e^{-x^2} & \text{if $n=0$}\\
-2xe^{-x^2} & \text{if $n=1$}\\
f^{(n-1)}(x)-f^{(n-2)}(x) & \text{otherwise.}
\end{cases}$
How to get the closed form?
Edit: This recurrence does not hold.
Asked
Active
Viewed 613 times
1

k5f
- 641
3 Answers
3
Hint: the recursion $f_n=f_{n-1}-f_{n-2}$ always has a solution of the form
$$ C_1(1/2+i\sqrt{3}/2)^n + C_2(1/2-i\sqrt{3}/2)^n, $$
with $C_1,C_2$ constants to be determined from the initial values $f_0,f_1$.
Edit: Your recurrence does not hold.

Kim Fierens
- 1,012
-
He mentioned that the $n$-th derivatives obey a certain recurrence formula, with $f_n = D^n(e^{-x^2})$. Thus $f_n$ would be a legitimate sequence (of functions). But the point is moot anyway, since the recurrence he derived turns out to be incorrect. – Kim Fierens Sep 06 '14 at 12:55
-
Why not? The recurrence holds for every $x$ separately, and only the initial values explicitly depend on $x$. Example: $f_n(x)=2f_{n-1}(x)$, with $f_0(x)=x$. Then $f_n=2^nx=f_n(x)$. – Kim Fierens Sep 06 '14 at 13:05
-
I mean you cannot solve it that way unless you have had enough caffeine. – copper.hat Sep 06 '14 at 13:14
1
Hint: If the recurrence relation holds then the $n$-th derivative is a telescopic sum

Belgi
- 23,150
0
The question is answered here:
More informatiion at: The keywords are "Hermite polynomial" and "Rodrigues formula".
Han de Bruijn
- 17,070
We get $f^{n+1}(x)=e^{-x^2}(P_n'(x)-2xP_n(x))$, hence $P_{n+1}(x)=P_n'(x)-2xP_n(x)$. There may be a nice closed form for the coefficients of $P_n$, consider the similar question http://math.stackexchange.com/questions/193702. (I just deleted my answer because I thought it would better be a comment.)
– Bart Michels Sep 06 '14 at 12:35