Is There a Simple Way to Compute Derivatives for Factorials Beyond the Basics?

  • Thread starter Thread starter Ebolamonk3y
  • Start date Start date
  • Tags Tags
    Factorial
Ebolamonk3y
Messages
180
Reaction score
0
Is there a simple neat process to compute derivates for factorials beyond the simple ones...
 
Physics news on Phys.org
I don't understand... can you post the actual problem?
 
Given that the factorial is a discrete function, not a continuous one, there is no continuous derivative, so the discrete derivative is simple to formulate from this basis.

<br /> <br /> f(x) = x!<br /> <br />
<br /> <br /> \frac{df}{dx} = \frac{\delta f}{\delta x}<br /> = \frac{f_1-f_0}{x_1-x_0}<br /> <br />

Now because f(x) is discrete, the only important values are integers so

<br /> <br /> x_1-x_0=1 <br /> <br />

<br /> <br /> \frac{df}{dx} = (x_1)! - (x_0)! <br /> <br />

substituting the general x for

<br /> <br /> x_0<br /> <br />

and x+1 for

<br /> <br /> x_1 <br /> <br />

we get

<br /> <br /> \frac{df}{dx} = (x+1)! - x!<br /> = (x+1)*x! - x!<br /> <br />
<br /> = x! * (x+1-1)<br /> = x!*x<br /> = x^2 * (x-1)!<br /> <br />

There is your discrete derivative for integer values of x, it is the difference between the value of f at x and x+1 in terms of x.


Note: LaTeX friggin hates me.
 
Last edited:
Back
Top