Recursive vs Explicit Formulas Math Example 5

Follow the full solution, then compare it with the other examples linked below.

Example 5

medium
Convert an=4nโˆ’1a_n = 4n - 1 to a recursive formula.

Solution

  1. 1
    a1=3a_1 = 3.
  2. 2
    anโˆ’anโˆ’1=(4nโˆ’1)โˆ’(4(nโˆ’1)โˆ’1)=4a_n - a_{n-1} = (4n-1)-(4(n-1)-1) = 4, so d=4d = 4.
  3. 3
    Recursive: a1=3a_1 = 3, an=anโˆ’1+4a_n = a_{n-1} + 4.

Answer

a1=3a_1 = 3; an=anโˆ’1+4a_n = a_{n-1} + 4
Find the first term and the constant difference between consecutive terms. A linear explicit formula always converts to a constant-difference (arithmetic) recursion.

About Recursive vs Explicit Formulas

Two ways to define a sequence: recursive uses the previous term(s), explicit gives the nnth term directly as a function of nn.

Learn more about Recursive vs Explicit Formulas โ†’

More Recursive vs Explicit Formulas Examples