Finite difference: Difference between revisions

From Calculus
No edit summary
No edit summary
Line 7: Line 7:
The quotient of this by the value <math>b - a</math> is a difference quotient expression.
The quotient of this by the value <math>b - a</math> is a difference quotient expression.


There are three main types of finite differences parametrized by a positive real number <math>h</math>
There are three main types of finite differences parametrized by a positive real number <math>h</math> of the corresponding [[difference quotient]]


{| class="sortable" border="1"
{| class="sortable" border="1"

Revision as of 05:44, 9 May 2014

Definition

Given a function f, a finite difference for f with parameters real numbers a and b is the function:

xf(x+b)f(x+a)

The quotient of this by the value ba is a difference quotient expression.

There are three main types of finite differences parametrized by a positive real number h of the corresponding difference quotient

Name Symbol Expression Value of a Value of b Limit as h0+
forward difference Δh[f](x) f(x+h)f(x) 0 h right-hand derivative f'+(x). If f is differentiable at x, then this equals f(x).
backward difference h[f](x) f(x)f(xh) h 0 left-hand derivative f'(x). If f is differentiable at x, then this equals f(x).
central difference δh[f](x) f(x+h2)f(xh2) h2 h2 If f is differentiable at x, then this equals f(x).

See also