Considere a real polynomial function $P_n\left(x\right)$ of two variable, when $n$ is a discrete variable and $x$ a continuous variable
where $P_0\left(x\right)=1$
and satisfies the following recurrence relations:
$$P_{n+1}\left(x\right)=\left(x+1\right)\cdot P_n\left(x\right)+x\cdot\frac{d}{dx}\left(P_n\left(x\right)\right).$$
How could I find the explicit solution $P_n\left(x\right)$ for this expression?
And what name do these types of equations receive?
Write the polynomial as: $$P_n(x)=c_{n,0}x^0+c_{n,1}x^1+\cdots+c_{n,n}x^n,$$
apply the recurrence, and you will get a relation among the coefficients.
That is $$ \eqalign{ & \sum\limits_{0\, \le \;k\,\left( { \le \,n + 1} \right)} {c_{\,n + 1,\,k} x^{\,k} } = \left( {x + 1} \right)\sum\limits_{0\, \le \;k\,\left( { \le \,n} \right)} {c_{\,n,\,k} x^{\,k} } + x{d \over {dx}}\sum\limits_{0\, \le \;k\,\left( { \le \,n} \right)} {c_{\,n,\,k} x^{\,k} } = \cr & = \sum\limits_{0\, \le \;k\,\left( { \le \,n} \right)} {c_{\,n,\,k} x^{\,k} } + \sum\limits_{0\, \le \;k\,\left( { \le \,n} \right)} {c_{\,n,\,k} x^{\,k + 1} } + \sum\limits_{0\, \le \;k\,\left( { \le \,n} \right)} {k\,c_{\,n,\,k} x^{\,k} } = \cr & = \sum\limits_{0\, \le \;k\,\left( { \le \,n} \right)} {c_{\,n,\,k} x^{\,k} } + \sum\limits_{1\, \le \;k\,\left( { \le \,n} \right)} {c_{\,n,\,k - 1} x^{\,k} } + \sum\limits_{0\, \le \;k\,\left( { \le \,n} \right)} {k\,c_{\,n,\,k} x^{\,k} } \cr} $$ or $$ c_{\,n + 1,\,k} = \left( {1 + k} \right)c_{\,n,\,k} + c_{\,n,\,k - 1} $$ with the understanding that when the index is negative the coefficient is null.
Since the recursion for Stirling N. of 2nd kind is $$ \left\{ \matrix{ n \cr m \cr} \right\} = m\left\{ \matrix{ n - 1 \cr m \cr} \right\} + \left\{ \matrix{ n - 1 \cr m - 1 \cr} \right\} $$ then you get $$ c_{\,n,\,k} = \left\{ \matrix{ n + 1 \cr k + 1 \cr} \right\} $$ and your polynomials are related to the Touchard Polynomials $$ P_{\,n} (x) = {1 \over x}T_{\,n + 1} (x) $$