Finite Difference Operators
Definitions, Identities, and Relationships
\(\Delta f(x) = f(x+h) – f(x)\)
\(\nabla f(x) = f(x) – f(x-h)\)
\(E f(x) = f(x+h)\)
\(E^{-1} f(x) = f(x-h)\)
\(\delta f(x) = f(x+\frac{h}{2}) – f(x-\frac{h}{2})\)
\(\mu f(x) = \frac{1}{2}[f(x+\frac{h}{2}) + f(x-\frac{h}{2})]\)
Common Combinations
(2 × Mean × Central)
(Square of Central Difference)
(Diff equals Product)
Second Order Formulas
\(f(x+2h) – 2f(x+h) + f(x)\)
\(f(x) – 2f(x-h) + f(x-2h)\)
\(E = 1 + \Delta\)
\(\nabla = 1 – E^{-1}\)
\(\delta = E^{1/2} – E^{-1/2}\)
\(\mu = \frac{1}{2}(E^{1/2} + E^{-1/2})\)
Relation to Calculus (D):
\(E = e^{hD}\)
\(\Delta = e^{hD} – 1\)
\(\delta = 2 \sinh(hD/2)\)
\(\mu = \cosh(hD/2)\)
Numerical Analysis Notes
If a function \( f(x) \) is differentiable \( n \) times, the divided difference involving \( n+1 \) points relates to the \( n \)-th derivative.
Where:
- \(\xi\) is some unknown value inside the interval \((x_0, x_n)\).
- \(n!\) is the factorial of the order.
For the reciprocal function, there is a specific pattern for any order \( k \).
Examples:
- 1st Order: \( f[x_0, x_1] = \frac{-1}{x_0 x_1} \)
- 2nd Order: \( f[x_0, x_1, x_2] = \frac{1}{x_0 x_1 x_2} \)
- 3rd Order: \( f[x_0, x_1, x_2, x_3] = \frac{-1}{x_0 x_1 x_2 x_3} \)
