3

First of all hi; this is my first post on MSE. I came across an ALREADY asked question but wasn't entirely sure (couldn't make sense, more like) about the answers provided. (Apologies if this is in the wrong place)

Let $D\colon {\mathbb R}[X]\to {\mathbb R}[X]$ be differential operator $D(f(X))=f′(X)$. Prove that $\exp(tD)f(X)=f(X+t)$ for $t\in {\mathbb R}$.

Right firstly, I am not quite sure how to make sense of adding $t\in {\mathbb R}$ to $X$ (possibly) a column vector? Or is it just $X + tI$ where $I$ is a column vector with all rows equal to the multiplicative identity? Probably a trivial question....

Any help would be much appreciated.... I couldn't comment on the already answered question due to lack of rep.

Link for previous question: Differentation Operator

anja504
  • 31
  • I have edited your math code a little. I don't exactly understand why you've broken up the math expressions so much, but I joined them together when appropriate. Also, I left your $R$s typeset as such (so that it looks like arbitrary ring). If you want it to denote reals, replace them with $\bf R$s or $\mathbb R$s. – tomasz Dec 15 '13 at 02:34
  • $X$ is just the variable of the function, represents only one real number if substituted. – Berci Dec 15 '13 at 02:34
  • @tomasz: thankyou... this probably gives you an idea of how bad I am with notation (and also how late it is in the night) – anja504 Dec 15 '13 at 02:35
  • @Berci, wait I thought $X$ was column vector.... slightly confused.. sorry. – anja504 Dec 15 '13 at 02:37
  • @anja504: You're welcome. :) $R[X]$ usually denotes the ring of polynomials with coefficients in $R$, and $X$ is a variable. You can evaluate a polynomial at a vector and as long as you know how to multiply two vectors it makes sense (for exaple, you could do it separately for each coordinate), but as it stands it's just an abstract variable. – tomasz Dec 15 '13 at 02:39
  • @tomasz: once again thanks! I see what you mean, thanks! Ok so having established that $X$ is just a variable, when we employ the taylor's series do we "center" it at X? – anja504 Dec 15 '13 at 02:44

2 Answers2

3

I assume that $R[X]$ means the polynomials over a ring $R$.

So using Taylor's series: $$ f(X+t) = \sum_{k=0}^\infty \frac{t^k}{k!} f^{(k)}(X) = \sum_{k=0}^\infty \frac{t^k}{k!} D^k f(X) = \exp(tD) f(X) .$$ Note that the sum is actually finite since $D^k f(X) = 0$ for $k$ large enough.

The proof of Taylors series: by linearity we need only prove it in the case $f(X) = X^n$. Then this reduces to the binomial expansion. And this can be proved by induction, when $X$ is a variable and $t$ is a real number.

Or you can prove it by induction on the degree of $f$. When the degree is zero, it is trivial. To go from degree $n$ to degree $n+1$, formally integrate both sides. Then substitute $t=0$ to get the constant term.

2

Yes, you idea is right. When doing formal power series with matrices, you usually think of the constants as multiples of the identity.

One reason is that the ring of matrices is an $\mathbb{R}$ algebra, meaning that it contains a copy of the real numbers (i.e multiples of the identity) which commutes with all matrices. This allows us to think of the reals as a subset of the set of matrices.

Brian Rushton
  • 13,375