Recurrence relations

Subdecks (1)

Cards (18)

  • A recurrence relation applies a function to the previous term to find the next term
  • A sequence is converging if it moves towards a single value
  • A sequence is diverging if it does not move towards a single value
  • A sequence oscillates if the terms alternate between larger and smaller
  • A sequence alternates if it switches between positive and negative terms
  • A sequence is monotone if it only increases or decreases
  • A sequence is strictly increasing/decreasing if each value is greater/less than (not equal to) the last
  • A sequence is periodic if it has repeating sequences of numbers - the period is the number of terms in the repeating pattern
  • To find the limit of a converging sequence, set unu_{n} = un+1u_{n+1} = L and solve the resulting equation
  • A fibonacci type sequence is generated by adding together the two previous terms (xn+2=x_{n+2} =xn+1+ x_{n+1} +xn x_{n})
  • The golden ratio (ϕ\phi) is equal to 1+52\frac{1+\sqrt5}{2}, and is the positive solution to x2x1x^2 -x-1. The negative solution is represented by ϕ2\phi_2
  • In general, the solution to un+1=u_{n+1} =kun ku_{n} is un=u_n =A×kn A \times k^n, where A is a constant
  • If un+1=u_{n+1} =kun+ ku_n +f(n) f(n), the complementary solution is the solution to the relation ignoring f(n)f(n), and the particular solution is found by guessing the an algebraic solution with a similar format to f(n)f(n) and substituting into the relation to find the exact version
  • If the guess for the particular solution is in the same form as the complementary solution, multiply the guess by n