Hello I want to obtain the explicit formula for the Hermite polynomial: $$ H_n(x)=\sum_{k=0}^{[n/2]}\frac{(-1)^k n!}{k! (n-2k)!} (2x)^{n-2k} $$ by expanding the exponential in the generating function $$ e^{2xz-z^2}=\sum_{n=0}^\infty H_{n}(x)\frac{z^n}{n!} $$ and using the binomial theorem $$ e^{2xz-z^2}=\sum_{n=0}^\infty \frac{(2xz-z^2)^n}{n!}=\sum_{n=0}^\infty \sum_{k=0}^{n} \frac{(-1)^k n! }{k!(n-k)!} \frac{(2xz)^{n-k}z^{2k}}{n!}=\sum_{n=0}^\infty \sum_{k=0}^{n} \frac{(-1)^kn!}{k!(n-k)!} (2x)^{n-k} \frac{z^{n+k}}{n!} $$ It seems almost done, but what is the easiest way to transform the last result in the Hermite polynomial?
2026-03-25 17:51:51.1774461111
Hermite polynomials from binomial theorem
194 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in HERMITE-POLYNOMIALS
- Fourier transform of squared Gaussian Hermite polynomial
- An unusual integral involving Hermite polynomials
- $\int\frac1{(1+x^2)^3}\,dx$ without Hermite
- Orthogonality and norm of Hermite polynomials
- A proof of Mathias theorem about characteristic functions
- Multivariate normal/change of variables in integral ("derivative of change is change of derivative"?)
- Hermite polynomials $H_{n}(y)=\frac{1}{\sqrt{2^n}}\left( y -\frac{d}{dy} \right)^n$ equivalent form
- A polynomial parametric curve spanning known tangent end-points
- Hermite Polynomial Expansion
- Compute the $n$th stochastic integral of Brownian motions
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
The last step is differentiation of boths sides with respect to $z$, as $$ \frac{\partial^m}{\partial z^m}e^{2xz-z^2}|_{z=0}\equiv H_m(x), $$ by the definition of the generating function.
Performing the differentiation leads to $$ H_m(x) = \sum_{n=0}^\infty \sum_{k=0}^n \frac{(-1)^k}{k!(n-k)!}(2x)^{n-k}(n+k)(n+k-1)\cdots(n+k-m+1)z^{n+k-m}|_{z=0}. $$ The last expression is only non-zero when $n+k=m$, restricting ones of the sums. This also restricts the parity of the polynomial, as $\operatorname{mod}(n,2)+\operatorname{mod}(k,2) = \operatorname{mod}(m,2)$, which also implies $\operatorname{mod}(n,2)-\operatorname{mod}(n,2)=\operatorname{mod}(n,2)$ meaning the parity of the polynomial inside the sum is the same as the parity of $m$, as required.
Note that $n+k=m$ but $n\ge k$ (since the upper limit of summation over $k$ is $n$) therefore the the minimum value $k$ can take is $0$ when $n=m$ and the maximum is $\left \lfloor \frac{m}{2} \right \rfloor $ when $n=k$. This can be seen graphically if you plot out the $(k,n)$ coordinates:
Making this substitution leads to the formula, since the term $(n+k)(n+k-1)\cdots(n+k-m+1) = \frac{(n+k)!}{(n+k-m)!}$ becomes simply $m!$ by the substitution $n=m-k$, and resulting expression is $$ H_m(x)=m!\sum_{k=0}^{\left \lfloor \frac{m}{2} \right \rfloor} \frac{(-1)^k}{k!(n-2k)!}(2x)^{n-2k} $$ as desired. Note your original equation is missing the leading $n!$. I switched to $m$ because you already had $n$ as a summation index.