Recursive vs Explicit Formulas Math Example 2

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

Example 2

medium
A sequence satisfies a1=2a_1 = 2, an=3anโˆ’1a_n = 3a_{n-1}. Find the explicit formula and identify the growth type.

Solution

  1. 1
    Terms: 2,6,18,54,โ€ฆ2, 6, 18, 54, \ldots โ€” each multiplied by 3.
  2. 2
    Geometric with r=3r=3: explicit formula an=2โ‹…3nโˆ’1a_n = 2 \cdot 3^{n-1}.
  3. 3
    Check: a1=2โ‹…1=2a_1 = 2 \cdot 1 = 2 โœ“; a2=2โ‹…3=6a_2 = 2 \cdot 3 = 6 โœ“.
  4. 4
    This represents exponential growth.

Answer

an=2โ‹…3nโˆ’1a_n = 2 \cdot 3^{n-1} (exponential growth)
A constant-ratio recursion defines a geometric sequence. The explicit formula is exponential in nn, far more efficient to evaluate than iterating the 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