5.3 Sequences, Series, & Factorials

Key Takeaways

  • An arithmetic sequence has a constant common difference d, n-th term a_n = a_1 + (n - 1)d, and partial sum S_n = (n/2)(a_1 + a_n).
  • A geometric sequence has a constant common ratio r, n-th term a_n = a_1 * r^(n-1), finite sum S_n = a_1(1 - r^n)/(1 - r), and infinite sum a_1/(1 - r) only when the absolute value of r is less than 1.
  • Factorial notation n! is the product of all positive integers up to n, with 0! defined as 1, and it satisfies the recursive identity n! = n * (n - 1)!.
  • Factorial quotients such as (n + 2)!/n! simplify to polynomial products like (n + 2)(n + 1) by expanding the larger factorial down to the smaller one and cancelling.
Last updated: August 2026

5.3 Sequences, Series, & Factorials

In college algebra, discrete mathematics provides essential analytical tools for modeling patterns, financial growth, and series approximations. A sequence is an ordered function mapping natural numbers to real numbers, while a series represents the sum of a sequence's terms. Mastering sequences requires distinguishing arithmetic and geometric structures and working fluently with factorial notation.


Foundations of Sequences and Series

Core Definitions

  • Sequence (ana_n): An ordered list of numbers a1,a2,a3,,an,a_1, a_2, a_3, \dots, a_n, \dots where ana_n denotes the nn-th term.
  • Explicit Formula: Expresses ana_n directly as a function of term position index nn (e.g., an=3n+1a_n = 3n + 1).
  • Recursive Formula: Expresses ana_n using preceding terms (e.g., an=an1+3a_n = a_{n-1} + 3 with seed a1=4a_1 = 4).
  • Series (SnS_n): The sum of the terms of a sequence up to position nn:

Sn=k=1nak=a1+a2++anS_n = \sum_{k=1}^n a_k = a_1 + a_2 + \dots + a_n


Arithmetic Sequences & Partial Sums

An arithmetic sequence is a sequence in which the difference between consecutive terms is a constant scalar called the common difference (dd).

d=anan1for all n2d = a_n - a_{n-1} \quad \text{for all } n \ge 2

Key Formulas for Arithmetic Sequences

  1. Explicit nn-th Term Formula: an=a1+(n1)da_n = a_1 + (n - 1)d
  2. Finite Partial Sum Formula (SnS_n): Sn=n2(a1+an)orSn=n2[2a1+(n1)d]S_n = \frac{n}{2}\left(a_1 + a_n\right) \quad \text{or} \quad S_n = \frac{n}{2}\left[ 2a_1 + (n - 1)d \right]

Intuition: Gauss's partial sum method pairs the first and last terms (a1+ana_1 + a_n), second and second-to-last terms, producing n2\frac{n}{2} pairs of equal sum.


Geometric Sequences & Infinite Series Convergence

A geometric sequence is a sequence in which each term after the first is obtained by multiplying the preceding term by a non-zero constant called the common ratio (rr).

r=anan1for all n2r = \frac{a_n}{a_{n-1}} \quad \text{for all } n \ge 2

Key Formulas for Geometric Sequences

  1. Explicit nn-th Term Formula: an=a1rn1a_n = a_1 \cdot r^{n-1}
  2. Finite Partial Sum Formula (SnS_n): Sn=a11rn1r(r1)S_n = a_1 \frac{1 - r^n}{1 - r} \quad (r \neq 1)
  3. Infinite Geometric Series Sum (SS_\infty): An infinite geometric series k=1a1rk1=a1+a1r+a1r2+\sum_{k=1}^\infty a_1 r^{k-1} = a_1 + a_1 r + a_1 r^2 + \dots converges to a finite sum if and only if r<1|r| < 1: S=a11rfor r<1S_\infty = \frac{a_1}{1 - r} \quad \text{for } |r| < 1 If r1|r| \ge 1, the infinite series diverges (the sum grows without bound or oscillates infinitely).

Summary Comparison Table

FeatureArithmetic Sequence / SeriesGeometric Sequence / Series
Core ConstantCommon Difference d=anan1d = a_n - a_{n-1}Common Ratio r=anan1r = \frac{a_n}{a_{n-1}}
Explicit nn-th Terman=a1+(n1)da_n = a_1 + (n-1)dan=a1rn1a_n = a_1 r^{n-1}
Finite Partial Sum SnS_nSn=n2(a1+an)S_n = \frac{n}{2}(a_1 + a_n)Sn=a11rn1rS_n = a_1 \frac{1-r^n}{1-r}
Infinite Sum SS_\inftyAlways diverges (unless ak=0a_k = 0)S=a11rS_\infty = \frac{a_1}{1-r} strictly when r<1\lvert r\rvert < 1

Factorial Notation & Algebraic Simplifications

For any positive integer nn, the factorial function n!n! (read "nn factorial") is defined as the product of all positive integers less than or equal to nn:

n!=n×(n1)×(n2)××2×1n! = n \times (n-1) \times (n-2) \times \dots \times 2 \times 1

Fundamental Properties & Conventions

  • Zero Factorial: By mathematical convention, 0!=10! = 1 (which preserves consistency in combinatorial formulas).
  • Recursive Identity: For n1n \ge 1, n!=n(n1)!n! = n \cdot (n - 1)!

Algebraic Factorial Simplification

When simplifying quotients of factorials containing variables, expand the larger factorial down to match the smaller factorial to cancel common factors:

(n+2)!n!=(n+2)(n+1)n!n!=(n+2)(n+1)=n2+3n+2\frac{(n + 2)!}{n!} = \frac{(n + 2)(n + 1)n!}{n!} = (n + 2)(n + 1) = n^2 + 3n + 2


Comprehensive Worked Examples

Worked Example 1: Arithmetic Sequence & Sum Application

Problem: An auditorium has 1818 seats in the first row, 2222 seats in the second row, 2626 seats in the third row, and continues to increase by 44 seats per row. How many total seats are in the auditorium if there are 2525 rows?

Step-by-Step Solution:

  1. Identify sequence parameters:
    • First term a1=18a_1 = 18.
    • Common difference d=2218=4d = 22 - 18 = 4.
    • Number of terms n=25n = 25.
  2. Find the 25th term a25a_{25} using an=a1+(n1)da_n = a_1 + (n - 1)d: a25=18+(251)(4)=18+24(4)=18+96=114a_{25} = 18 + (25 - 1)(4) = 18 + 24(4) = 18 + 96 = 114
  3. Calculate total sum S25S_{25} using Sn=n2(a1+an)S_n = \frac{n}{2}(a_1 + a_n): S25=252(18+114)=12.5×132=1650S_{25} = \frac{25}{2}(18 + 114) = 12.5 \times 132 = 1650 Conclusion: There are 16501650 total seats.

Worked Example 2: Geometric Sequence & Infinite Sum

Problem: An infinite geometric series has a first term a1=45a_1 = 45 and an infinite sum S=75S_\infty = 75. Find the common ratio rr and the third term a3a_3.

Step-by-Step Solution:

  1. Use infinite sum formula S=a11rS_\infty = \frac{a_1}{1 - r} to solve for rr: 75=451r75 = \frac{45}{1 - r}
  2. Cross-multiply and isolate rr: 75(1r)=45    1r=4575=3575(1 - r) = 45 \implies 1 - r = \frac{45}{75} = \frac{3}{5} r=135=25r = 1 - \frac{3}{5} = \frac{2}{5} (Note: r=0.4<1|r| = 0.4 < 1, verifying convergence).
  3. Calculate third term a3=a1r2a_3 = a_1 r^2: a3=45(25)2=45425=18025=365=7.2a_3 = 45 \left(\frac{2}{5}\right)^2 = 45 \cdot \frac{4}{25} = \frac{180}{25} = \frac{36}{5} = 7.2

Worked Example 3: Simplifying Algebraic Factorials

Problem: Simplify the algebraic expression for any integer n2n \ge 2: E=(n+2)!n!(n+1)!(n1)!E = \frac{(n + 2)!}{n!} - \frac{(n + 1)!}{(n - 1)!}

Step-by-Step Solution:

  1. Expand first quotient: (n+2)!n!=(n+2)(n+1)n!n!=(n+2)(n+1)=n2+3n+2\frac{(n + 2)!}{n!} = \frac{(n + 2)(n + 1)n!}{n!} = (n + 2)(n + 1) = n^2 + 3n + 2
  2. Expand second quotient: (n+1)!(n1)!=(n+1)(n)(n1)!(n1)!=(n+1)n=n2+n\frac{(n + 1)!}{(n - 1)!} = \frac{(n + 1)(n)(n - 1)!}{(n - 1)!} = (n + 1)n = n^2 + n
  3. Subtract the expanded expressions: E=(n2+3n+2)(n2+n)=n2n2+3nn+2=2n+2E = (n^2 + 3n + 2) - (n^2 + n) = n^2 - n^2 + 3n - n + 2 = 2n + 2
Loading diagram...
Taxonomy of Discrete Sequences, Series, and Factorial Properties
Test Your Knowledge

An auditorium has 18 seats in the first row, 22 seats in the second row, 26 seats in the third row, and continues to increase by 4 seats per row. How many total seats are in the auditorium if there are 25 rows?

A
B
C
D
Test Your Knowledge

An infinite geometric series has a first term a_1 = 45 and an infinite sum S_infinity = 75. What is the common ratio r and the third term a_3 of this geometric sequence?

A
B
C
D
Test Your Knowledge

For any integer n >= 2, which of the following expressions is equivalent to ((n + 2)!) / (n!) - ((n + 1)!) / ((n - 1)!)?

A
B
C
D
Test Your Knowledge

What is the sum of the infinite geometric series: 12 - 4 + 4/3 - 4/9 + ...?

A
B
C
D