Finite difference method
From Wikipedia, the free encyclopedia
In mathematics, more precisely in numerical analysis, finite differences play an important role: they are one of the simplest ways of approximating a differential operator, and are extensively used in solving differential equations.
For example, consider the ordinary differential equation
The Euler method for solving this equation uses the finite difference quotient
to approximate the differential equation by
The last equation is called a finite-difference equation. Solving this equation gives an approximate solution to the differential equation.
The error between the approximate solution and the true solution is determined by the error that is made by going from a differential operator to a difference operator. This error is called the discretization error or truncation error (the term truncation error reflects the fact that a difference operator can be viewed as a finite part of the infinite Taylor series of the differential operator).
Contents |
[edit] Example: the heat equation
Consider the normalized heat equation in one dimension, with homogeneous Dirichlet boundary conditions
- (boundary condition)
- (initial condition)
One way to numerically solve this equation is to approximate all the derivatives by finite differences. We partition the domain in space using a mesh x0,...,xJ and in time using a mesh t0,....,tN. We assume a uniform partition both in space and in time, so the difference between two consecutive space points will be h and between two consecutive time points will be k. The points
will represent the numerical approximation of U(xj,tn).
[edit] Explicit method
Using a forward difference at time tn and a second-order central difference for the space derivative at position xj ("FTCS") we get the recurrence equation:
This is an explicit method for solving the one-dimensional heat equation.
We can obtain from the other values this way:
where r = k / h2.
So, knowing the values at time n you can obtain the corresponding ones at time n+1 using this recurrence relation. and must be replaced by the boundary conditions, in this example they are both 0.
This explicit method is known to be numerically stable and convergent whenever . The numerical errors are proportional to the time step and the square of the space step:
[edit] Implicit method
If we use the backward difference at time tn + 1 and a second-order central difference for the space derivative at position xj ("BTCS") we get the recurrence equation:
This is an implicit method for solving the one-dimensional heat equation.
We can obtain from solving a system of linear equations:
The scheme is always numerically stable and convergent but usually more numerically intensive than the explicit method as it requires solving a system of numerical equations on each time step. The errors are linear over the time step and quadratic over the space step.
[edit] Crank-Nicolson method
Finally if we use the central difference at time tn + 1 / 2 and a second-order central difference for the space derivative at position xj ("CTCS") we get the recurrence equation:
This formula is known as the Crank-Nicolson method.
We can obtain from solving a system of linear equations:
The scheme is always numerically stable and convergent but usually more numerically intensive as it requires solving a system of numerical equations on each time step. The errors are quadratic over the time step and formally are of the fourth degree regarding the space step:
However, near the boundaries, the error is often O(h2) instead of O(h4).
Usually the Crank-Nicolson scheme is the most accurate scheme for small time steps. The explicit scheme is the least accurate and can be unstable, but is also the easiest to implement and the least numerically intensive. The implicit scheme works the best for large time steps.
[edit] See also
[edit] References
- K.W. Morton and D.F. Mayers, Numerical Solution of Partial Differential Equations, An Introduction. Cambridge University Press, 2005.
- Oliver Rübenkönig, The Finite Difference Method (FDM) - An introduction, (2006) Albert Ludwigs University of Freiburg