Recursive vs Explicit Formulas Math Example 3

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

Example 3

medium
A sequence is defined by a1=5a_1 = 5, an=anโˆ’1+3a_n = a_{n-1} + 3. Write the explicit formula and find a20a_{20}.

Solution

  1. 1
    Identify the pattern: each term increases by 3, so this is an arithmetic sequence with first term a1=5a_1 = 5 and common difference d=3d = 3.
  2. 2
    Write the explicit formula: an=a1+(nโˆ’1)d=5+(nโˆ’1)(3)=5+3nโˆ’3=3n+2a_n = a_1 + (n-1)d = 5 + (n-1)(3) = 5 + 3n - 3 = 3n + 2.
  3. 3
    Find a20a_{20}: a20=3(20)+2=60+2=62a_{20} = 3(20) + 2 = 60 + 2 = 62. Verify: a1=3(1)+2=5a_1 = 3(1)+2 = 5 โœ“, a2=3(2)+2=8=5+3a_2 = 3(2)+2 = 8 = 5+3 โœ“.

Answer

Explicit formula: an=3n+2a_n = 3n + 2; a20=62a_{20} = 62
A recursive formula with a constant addend defines an arithmetic sequence. The explicit formula an=a1+(nโˆ’1)da_n = a_1 + (n-1)d lets you jump directly to any term without computing all previous terms โ€” far more efficient for large nn.

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