8

Consider the operator given by,

$$ P = x \frac{d}{dx}$$

with,

$$ P^2 = x \frac{d}{dx} ( x\frac{d}{dx}) = x \frac{d}{dx} + x^2 \frac{d^2}{dx^2}$$

or,

$$ P^2 = x \frac{d}{dx} ( x\frac{d}{dx}) = x \frac{d}{dx} + x^2 \frac{d^2}{dx^2}$$

and on another application of the operator,

$$ P^3 = [x \frac{d}{dx}] P^2 = x\frac{d}{dx}(x \frac{d}{dx}) + x \frac{d}{dx}( x^2 \frac{d^2}{dx^2}) = x \frac{d}{dx} + 3x^2 \frac{d^2}{dx^2} + x^3 \frac{d^3}{dx^3} $$

I tried writing more iterations but I can't find / a general form of what $P^k$ should be. So my question is if you are given an operator as the one shown, is there any standard procedure to find the a formula for the kth iteration of the operator?

The actual reason why I want to know about this

Any help would be appreciated :D

  • What exactly do you mean by $x\frac{d}{dx}$? What is $\frac{d}{dx}$ the derivative of? Do you mean sometthing like $x\frac{dy}{dx}$? Also, I'm not quite sure what you mean by $P^2$ etc. Do you mean differentiating $P$ with respect to $x$ and you're simply writing it as $P^2$? – A-Level Student Aug 25 '20 at 12:00
  • 1
    It is inspired by heaviside's operator method of solving differential equations https://www.math24.net/differential-operators/#:~:text=Differential%20operators%20are%20a%20generalization,first%20derivative%20of%20this%20function%3A&text=Double%20D%20allows%20to%20obtain,y%E2%80%B2%E2%80%B2(x). – tryst with freedom Aug 25 '20 at 12:05
  • 1
    @A-levelStudent It seems clear to me that $P=xD$ is the variable $x$ right-multiplied by the associated differential operator. This is a well-defined differential operator. – Peter Foreman Aug 25 '20 at 12:06
  • @PeterForeman ok, I obviously haven't encountered it yet, apologies for my ignorance :) – A-Level Student Aug 25 '20 at 12:07
  • 1
    Related: Exponential of a function times derivative. Especially: $$ \left[1 + x\frac{d}{dx} + \frac{1}{2!}\left(x\frac{d}{dx}\right)^2 + \frac{1}{3!}\left(x\frac{d}{dx}\right)^3 + \cdots\right] f(x) = e^{x\frac{d}{dx}} f(x) = f(e,x) $$ – Han de Bruijn Sep 27 '21 at 11:08

1 Answers1

6

The coefficients are Stirling numbers of the second kind.

We can write $$P^n=\sum_{k=1}^n a_{n,k}x^k D^k$$ where $D=\frac d{dx}$. Then $$P^{n+1}=\sum_{k=1}^n a_{n,k}(xD)(x^k D^k) =\sum_{k=1}^n a_{n,k}(kx^k D^k+ x^{k+1} D^{k+1})$$ so that $$a_{n+1,1}=a_{n,1},$$ $$a_{n+1,n+1}=a_{n,n}$$ and $$a_{n+1,k}=a_{n,k-1}+ka_{n,k}$$ These recurrences are the same as for the Stirling numbers, so $$a_{n,k}=S(n,k).$$

Angina Seng
  • 158,341