Static Wikipedia February 2008 (no images)

aa - ab - af - ak - als - am - an - ang - ar - arc - as - ast - av - ay - az - ba - bar - bat_smg - bcl - be - be_x_old - bg - bh - bi - bm - bn - bo - bpy - br - bs - bug - bxr - ca - cbk_zam - cdo - ce - ceb - ch - cho - chr - chy - co - cr - crh - cs - csb - cu - cv - cy - da - de - diq - dsb - dv - dz - ee - el - eml - en - eo - es - et - eu - ext - fa - ff - fi - fiu_vro - fj - fo - fr - frp - fur - fy - ga - gan - gd - gl - glk - gn - got - gu - gv - ha - hak - haw - he - hi - hif - ho - hr - hsb - ht - hu - hy - hz - ia - id - ie - ig - ii - ik - ilo - io - is - it - iu - ja - jbo - jv - ka - kaa - kab - kg - ki - kj - kk - kl - km - kn - ko - kr - ks - ksh - ku - kv - kw - ky - la - lad - lb - lbe - lg - li - lij - lmo - ln - lo - lt - lv - map_bms - mdf - mg - mh - mi - mk - ml - mn - mo - mr - mt - mus - my - myv - mzn - na - nah - nap - nds - nds_nl - ne - new - ng - nl - nn - no - nov - nrm - nv - ny - oc - om - or - os - pa - pag - pam - pap - pdc - pi - pih - pl - pms - ps - pt - qu - quality - rm - rmy - rn - ro - roa_rup - roa_tara - ru - rw - sa - sah - sc - scn - sco - sd - se - sg - sh - si - simple - sk - sl - sm - sn - so - sr - srn - ss - st - stq - su - sv - sw - szl - ta - te - tet - tg - th - ti - tk - tl - tlh - tn - to - tpi - tr - ts - tt - tum - tw - ty - udm - ug - uk - ur - uz - ve - vec - vi - vls - vo - wa - war - wo - wuu - xal - xh - yi - yo - za - zea - zh - zh_classical - zh_min_nan - zh_yue - zu

Web Analytics
Cookie Policy Terms and Conditions Recurrence relation - Wikipedia, the free encyclopedia

Recurrence relation

From Wikipedia, the free encyclopedia

In mathematics, a recurrence relation is an equation that defines a sequence recursively: each term of the sequence is defined as a function of the preceding terms. A difference equation is a specific type of recurrence relation.

An example of a recurrence relation is the logistic map:

x_{n+1} = r x_n (1 - x_n). \,

Some simply defined recurrence relations can have very complex (chaotic) behaviours and are sometimes studied by physicists and mathematicians in a field of mathematics known as nonlinear analysis.

Solving a recurrence relation means obtaining a closed-form solution: a non-recursive function of n.

Contents

[edit] Linear homogeneous recurrence relations with constant coefficients

The term linear means that each term of the sequence is defined as a linear function of the preceding terms.

The general form of a linear recurrence relation of order d \, is as follows:

a_n = c_1a_{n-1} + c_2a_{n-2}+\cdots+c_da_{n-d} + c \,

where c \, and c_i \, (for all i \,) are allowed to depend on n \,, but a_i \, (for all i \,) is not. If c_i \, is a constant (for all i \,) then the recurrence relation has constant coefficients. Additionally, if c = 0 \, then the recurrence relation is homogeneous; such a sequence is also called a linear recursive sequence or LRS.

The linear recurrence, together with seed values (initial conditions) for a_0,\dots,a_{d-1}, determines the sequence uniquely.

[edit] Example: Fibonacci numbers

The Fibonacci numbers are defined using the linear recurrence relation

F_{n} = F_{n-1}+F_{n-2} \,

with seed values:

F_1 = 1 \,
F_2 = 1. \,

The sequence of Fibonacci numbers begins:

1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89 ...

It can be solved via the matrix solution described below, yielding the closed form expression.

[edit] Solving via linear algebra

Given an LRS, one can write down its companion matrix, then put it in Jordan normal form (which is diagonal if the eigenvalues are distinct). Expressing the seed in terms of the eigenbasis, say

\begin{bmatrix}a_0\\ \vdots\\ a_{d-1}\end{bmatrix} = b_1v_1 + \cdots + b_dv_d

yields

\begin{bmatrix}a_n\\ \vdots\\ a_{n+(d-1)}\end{bmatrix} = C^n\begin{bmatrix}a_0\\ \vdots\\ a_{d-1}\end{bmatrix} = C^n(b_1v_1 + \cdots + b_dv_d) = \lambda_1^nb_1v_1 + \cdots + \lambda_d^n b_dv_d

which is a closed form expression (expand on the first coordinate to obtain a closed form expression for an).

If the companion matrix is not diagonalizable, then the resulting expression is more complicated, but conceptually the same.

[edit] Solving generally

Solutions to recurrence relations are found by systematic means, often by using generating functions (formal power series) or by noticing the fact that rn is a solution for particular values of r.

Consider, for example, a recurrence relation of the form

a_{n}=Aa_{n-1}+Ba_{n-2}. \,

Suppose that it has a solution of the form an = rn. Substituting this guess in the recurrence relation, we find:

r^{n}=Ar^{n-1}+Br^{n-2}. \,

Dividing through by rn − 2, we get

r^2=Ar+B, \,
r^2-Ar-B=0. \,

This is known as the characteristic equation of the recurrence relation. Solve for r to obtain the two roots λ1, λ2, and if these roots are distinct, we have the solution

a_n = C\lambda_1^n+D\lambda_2^n \,

while if they are identical (when A2 + 4B = 0), we have

a_n = C\lambda^n+Dn\lambda^n \,

where constants C and D can be found from the "side conditions" that are often given as a0 = a, a1 = b.

Different solutions are obtained depending on the nature of the roots of the characteristic equation.

Certain difference equations can be solved using z-transforms. The z-transforms are a class of integral transforms that lead to more convenient algebraic manipulations and more straightforward solutions. There are cases in which obtaining a direct solution would be all but impossible, yet solving the problem via a thoughtfully chosen integral transform is straightforward.

[edit] Theorem

Given a linear homogeneous recurrence relation with constant coefficients of order d \,, let p(t) \, be the characteristic polynomial

t^d - c_1t^{d-1} - c_2t^{d-2}-\cdots-c_{d} = 0 \,

such that each c_i \, corresponds to each c_i \, in the original recurrence relation (see the general form above). Suppose \lambda \, is a root of p(t) \, having multiplicity r \,. This is to say that (t-\lambda)^r \, divides p(t) \,. The following two properties hold:

  1. Each of the r \, sequences \lambda^n, n\lambda^n, n^2\lambda^n,\dots,n^{r-1}\lambda^n \, satisfies the recurrence relation.
  2. Any sequence satisfying the recurrence relation can be written uniquely as a linear combination of solutions constructed in part 1 as λ varies over all distinct roots of p(t).

As a result of this theorem a linear homogeneous recurrence relation with constant coefficients can be solved in the following manner:

  1. Find the characteristic polynomial p(t) \,.
  2. Find the roots of p(t) \, counting multiplicity.
  3. Write a_n \, as a linear combination of all the roots (counting multiplicity as shown in the theorem above) with unknown coefficients.

a_n = (c_1\lambda_1^n + c_2n\lambda_1^n + c_3n^2\lambda_1^n+\cdots+c_{r}n^{r-1}\lambda_1^n)+\cdots+(c_{d-q+1}\lambda_{*}^n + \cdots + c_{d}n^{q-1}\lambda_{*}^n) \,

This is the general solution to the original recurrence relation.

(Note: q \, is the multiplicty of \lambda_{*} \,)

4. Equate each a_0, a_1, a_2,\dots,a_d \, from part 3 (plugging in n = 0,\dots,d \, into the general solution of the recurrence relation) with the known values a_0, a_1, a_2,\dots,a_d \, from the original recurrence relation. Note, however, that the values a_n \, from the original recurrence relation used do not have to be contiguous, just d \, of them are needed (i.e. for an original linear homogeneous recurrence relation of order 3 one could use the values a_0, a_1, a_4 \,). This process will produce a linear system of d \, equations with d\, unknowns. Solving these equations for the c_1, c_2, c_3,\dots,c_d \, coefficients of the general solution and plugging these values back into the general solution will produce the particular solution to the original recurrence relation that fits the original recurrence relation's initial conditions (as well as all subsequent values a_0,a_1,a_2,a_3,\dots \, of the original recurrence relation).

Interestingly, the method for solving linear differential equations is similar to the method above — the "intelligent guess" for linear differential equations with constant coefficients is eλx where λ is a complex number that is determined by substituting the guess into the differential equation.

This is not a coincidence. If you consider the Taylor series of the solution to a linear differential equation:

\sum_{n=0}^{\infin} \frac{f^{(n)}(a)}{n!} (x-a)^{n}

you see that the coefficients of the series are given by the n-th derivative of f(x) evaluated at the point a. The differential equation provides a linear difference equation relating these coefficients.

This equivalence can be used to quickly solve for the recurrence relationship for the coefficients in the power series solution of a linear differential equation.

The rule of thumb (for equations in which the polynomial multiplying the first term is non-zero at zero) is that:

y^{[k]} \to  f[n+k]

and more generally

x^m*y^{[k]} \to n(n-1)(n-m+1)f[n+k-m]

Example: The recurrence relationship for the Taylor series coefficients of the equation:

(x^2 + 3x -4)y^{[3]} -(3x+1)y^{[2]} + 2y = 0\,

is given by

n(n-1)f[n+1] + 3nf[n+2] -4f[n+3] -3nf[n+1] -f[n+2]+ 2f[n] = 0\,

or

-4f[n+3] +2nf[n+2] + n(n-4)f[n+1] +2f[n] = 0.\,

This example shows how problems generally solved using the power series solution method taught in normal differential equation classes can be solved in a much easier way.

Example: The differential equation

ay'' + by' +cy = 0\,

has solution

y=e^{ax}.\,

The conversion of the differential equation to a difference equation of the Taylor coefficients is

af[n + 2] + bf[n + 1] + cf[n] = 0.

It is easy to see that the nth derivative of eax evaluated at 0 is an

[edit] General linear homogeneous recurrence relations

Many linear homogeneous recurrence relations may be solved by means of the hypergeometric series. Special cases of these lead to recurrence relations for the orthogonal polynomials, and many special functions. For example, the solution to

J_{n+1}=\frac{2n}{z}J_n-J_{n-1}

is given by the Jn = Jn(z), the Bessel function, while

(bn)Mn − 1 + (2nbz)MnnMn + 1 = 0

is solved by Mn = M(n,b;z) the confluent hypergeometric series.

[edit] Solving inhomogeneous recurrence relations

If the recurrence is inhomogeneous, a particular solution can be found by the method of undetermined coefficients and the solution is the sum of the solution of the homogeneous and the particular solutions. Another method to solve an inhomogeneous recurrence is the method of symbolic differentiation. For example, consider the following recurrence:

a_{n+1} = a_{n} + 1\,

This is an inhomogeneous recurrence. If we substitute n \mapsto n + 1, we obtain the recurrence

a_{n+2} = a_{n+1} + 1\,

Subtracting the original recurrence from this equation yields

a_{n+2} - a_{n+1} = a_{n+1} - a_{n}\,

or equivalently

a_{n+2} = 2 a_{n+1} - a_{n}\,

This is a homogeneous recurrence which can be solved by the methods explained above. In general, if a linear recurrence has the form

a_{n+k} = \lambda_{k-1} a_{n+k-1} + \lambda_{k-2} a_{n+k-2} + \cdots + \lambda_1 a_{n+1} + \lambda_0 a_{n} + p(n)

where \lambda_0, \lambda_1, \dots, \lambda_{k-1} are constant coefficients and p(n) is the inhomogeneity, then if p(n) is a polynomial with degree r, then this inhomogeneous recurrence can be reduced to a homogeneous recurrence by applying the method of symbolic differentiation r times.

[edit] Example

Let's solve the following inhomogeneous recurrence relation using the method of undetermined coefficients:

a_{n+1} = 2a_n + 3^n + 5n\,

The general solution for the analogous homogeneous relation

b_{n+1} = 2b_n\,

is

b_n = c_1 2^n\,

The inhomogeneous part (3n + 5n) leads us to guess the particular solution

c_n = c_2 3^n + c_3 n + c_4\,

(the guess for ax is ax, and the guess for a degree-n polynomial is a degree-n polynomial)

Substituting back into the recurrence relation, we get:

c_2 3^{n+1} + c_3 (n+1) + c_4 = 2(c_2 3^n + c_3 n + c_4) + 3^n + 5n\,

Looking only at the coefficients of 3n:

3c_2 = 2c_2 + 1\,
c_2 = 1\,

Looking only at the coefficients of n:

c_3 = 2c_3 + 5\,
c_3 = -5\,

Looking only at the coefficients of 1 (constants):

c_3 + c_4 = 2c_4\,
c_4 = c_3 = -5\,

So the general solution is

a_n = c_1 2^n + 3^n - 5n - 5\,


One may check an example at http://www.sosmath.com/CBB/viewtopic.php?p=132909#132909

[edit] Relationship to differential equations

When solving an ordinary differential equation numerically, one typically encounters a recurrence relation. For example, when solving the initial value problem

y'(t) = f(t,y(t)), \qquad y(t_0)=y_0, \qquad\qquad

with Euler's method and a step size h, one calculates the values y0 = y(t0), y1 = y(t0 + h), y_2=y(t_0+2h),\dots by the recurrence

yn + 1 = yn + hf(tn,yn).

Systems of linear first order differential equations can be discretized exactly analytically using the methods shown in the discretization article.

[edit] Application to biology

Some of the best-known difference equations have their origins in the attempt to model population dynamics. For example, the Fibonacci numbers were once used as a model for the growth of a rabbit population.

The logistic map is used either directly to model population growth, or as a starting point for more detailed models. In this context, coupled difference equations are often used to model the interaction of two or more populations. For example, the Nicholson-Bailey model for a host-parasite interaction is given by

N_{t+1} = \lambda N_t e^{-aP_t} \,
P_{t+1} = (1-e^{-aP_t}) \,,

with Nt representing the hosts, and Pt the parasites, at time t.

Integrodifference equations are a form of recurrence relation important to spatial ecology. These and other difference equations are particularly suited to modeling univoltine populations.

[edit] See also

[edit] References

[edit] External links

Static Wikipedia 2008 (no images)

aa - ab - af - ak - als - am - an - ang - ar - arc - as - ast - av - ay - az - ba - bar - bat_smg - bcl - be - be_x_old - bg - bh - bi - bm - bn - bo - bpy - br - bs - bug - bxr - ca - cbk_zam - cdo - ce - ceb - ch - cho - chr - chy - co - cr - crh - cs - csb - cu - cv - cy - da - de - diq - dsb - dv - dz - ee - el - eml - en - eo - es - et - eu - ext - fa - ff - fi - fiu_vro - fj - fo - fr - frp - fur - fy - ga - gan - gd - gl - glk - gn - got - gu - gv - ha - hak - haw - he - hi - hif - ho - hr - hsb - ht - hu - hy - hz - ia - id - ie - ig - ii - ik - ilo - io - is - it - iu - ja - jbo - jv - ka - kaa - kab - kg - ki - kj - kk - kl - km - kn - ko - kr - ks - ksh - ku - kv - kw - ky - la - lad - lb - lbe - lg - li - lij - lmo - ln - lo - lt - lv - map_bms - mdf - mg - mh - mi - mk - ml - mn - mo - mr - mt - mus - my - myv - mzn - na - nah - nap - nds - nds_nl - ne - new - ng - nl - nn - no - nov - nrm - nv - ny - oc - om - or - os - pa - pag - pam - pap - pdc - pi - pih - pl - pms - ps - pt - qu - quality - rm - rmy - rn - ro - roa_rup - roa_tara - ru - rw - sa - sah - sc - scn - sco - sd - se - sg - sh - si - simple - sk - sl - sm - sn - so - sr - srn - ss - st - stq - su - sv - sw - szl - ta - te - tet - tg - th - ti - tk - tl - tlh - tn - to - tpi - tr - ts - tt - tum - tw - ty - udm - ug - uk - ur - uz - ve - vec - vi - vls - vo - wa - war - wo - wuu - xal - xh - yi - yo - za - zea - zh - zh_classical - zh_min_nan - zh_yue - zu -

Static Wikipedia 2007 (no images)

aa - ab - af - ak - als - am - an - ang - ar - arc - as - ast - av - ay - az - ba - bar - bat_smg - bcl - be - be_x_old - bg - bh - bi - bm - bn - bo - bpy - br - bs - bug - bxr - ca - cbk_zam - cdo - ce - ceb - ch - cho - chr - chy - co - cr - crh - cs - csb - cu - cv - cy - da - de - diq - dsb - dv - dz - ee - el - eml - en - eo - es - et - eu - ext - fa - ff - fi - fiu_vro - fj - fo - fr - frp - fur - fy - ga - gan - gd - gl - glk - gn - got - gu - gv - ha - hak - haw - he - hi - hif - ho - hr - hsb - ht - hu - hy - hz - ia - id - ie - ig - ii - ik - ilo - io - is - it - iu - ja - jbo - jv - ka - kaa - kab - kg - ki - kj - kk - kl - km - kn - ko - kr - ks - ksh - ku - kv - kw - ky - la - lad - lb - lbe - lg - li - lij - lmo - ln - lo - lt - lv - map_bms - mdf - mg - mh - mi - mk - ml - mn - mo - mr - mt - mus - my - myv - mzn - na - nah - nap - nds - nds_nl - ne - new - ng - nl - nn - no - nov - nrm - nv - ny - oc - om - or - os - pa - pag - pam - pap - pdc - pi - pih - pl - pms - ps - pt - qu - quality - rm - rmy - rn - ro - roa_rup - roa_tara - ru - rw - sa - sah - sc - scn - sco - sd - se - sg - sh - si - simple - sk - sl - sm - sn - so - sr - srn - ss - st - stq - su - sv - sw - szl - ta - te - tet - tg - th - ti - tk - tl - tlh - tn - to - tpi - tr - ts - tt - tum - tw - ty - udm - ug - uk - ur - uz - ve - vec - vi - vls - vo - wa - war - wo - wuu - xal - xh - yi - yo - za - zea - zh - zh_classical - zh_min_nan - zh_yue - zu -

Static Wikipedia 2006 (no images)

aa - ab - af - ak - als - am - an - ang - ar - arc - as - ast - av - ay - az - ba - bar - bat_smg - bcl - be - be_x_old - bg - bh - bi - bm - bn - bo - bpy - br - bs - bug - bxr - ca - cbk_zam - cdo - ce - ceb - ch - cho - chr - chy - co - cr - crh - cs - csb - cu - cv - cy - da - de - diq - dsb - dv - dz - ee - el - eml - eo - es - et - eu - ext - fa - ff - fi - fiu_vro - fj - fo - fr - frp - fur - fy - ga - gan - gd - gl - glk - gn - got - gu - gv - ha - hak - haw - he - hi - hif - ho - hr - hsb - ht - hu - hy - hz - ia - id - ie - ig - ii - ik - ilo - io - is - it - iu - ja - jbo - jv - ka - kaa - kab - kg - ki - kj - kk - kl - km - kn - ko - kr - ks - ksh - ku - kv - kw - ky - la - lad - lb - lbe - lg - li - lij - lmo - ln - lo - lt - lv - map_bms - mdf - mg - mh - mi - mk - ml - mn - mo - mr - mt - mus - my - myv - mzn - na - nah - nap - nds - nds_nl - ne - new - ng - nl - nn - no - nov - nrm - nv - ny - oc - om - or - os - pa - pag - pam - pap - pdc - pi - pih - pl - pms - ps - pt - qu - quality - rm - rmy - rn - ro - roa_rup - roa_tara - ru - rw - sa - sah - sc - scn - sco - sd - se - sg - sh - si - simple - sk - sl - sm - sn - so - sr - srn - ss - st - stq - su - sv - sw - szl - ta - te - tet - tg - th - ti - tk - tl - tlh - tn - to - tpi - tr - ts - tt - tum - tw - ty - udm - ug - uk - ur - uz - ve - vec - vi - vls - vo - wa - war - wo - wuu - xal - xh - yi - yo - za - zea - zh - zh_classical - zh_min_nan - zh_yue - zu