๐Ÿ“Honors Pre-Calculus

Sequences Formulas

Study smarter with Fiveable

Get study guides, practice questions, and cheatsheets for all your subjects. Join 500,000+ students with a 96% pass rate.

Get Started

Why This Matters

Sequences and series are the backbone of pattern recognition in mathematics, and they show up constantly on Pre-Calc exams. Whether you're calculating compound interest, analyzing population growth, or building toward calculus concepts like limits and convergence, these formulas let you predict the nnth term or find the sum of hundreds of terms in seconds.

Every sequence formula encodes a specific type of growth pattern. Arithmetic sequences grow by constant addition, geometric sequences grow by constant multiplication, and recursive sequences build each term from previous ones. Don't just memorize formulas. Know what type of pattern each formula captures and when to use it.


Defining Individual Terms

Before you can sum a sequence, you need to find specific terms. These formulas let you calculate any term directly or build terms step-by-step.

Arithmetic Sequence Formula

  • an=a1+(nโˆ’1)da_n = a_1 + (n-1)d calculates the nnth term using the first term a1a_1 and the common difference dd
  • This is a linear growth pattern: each term increases (or decreases) by the same constant amount
  • How to identify one: subtract consecutive terms. If anโˆ’anโˆ’1a_{n} - a_{n-1} gives the same value for every pair, it's arithmetic

Geometric Sequence Formula

  • an=a1โ‹…r(nโˆ’1)a_n = a_1 \cdot r^{(n-1)} calculates the nnth term using the first term a1a_1 and the common ratio rr
  • This is an exponential growth pattern: each term is multiplied by the same factor
  • How to identify one: divide consecutive terms. If ananโˆ’1\frac{a_n}{a_{n-1}} gives the same value for every pair, it's geometric

Compare: Arithmetic vs. Geometric both have "common" values, but arithmetic uses addition (dd) while geometric uses multiplication (rr). On FRQs, always check: is the pattern additive or multiplicative? That determines your formula choice.

Explicit Sequence Formula

  • an=f(n)a_n = f(n) provides a direct calculation for any term using only the term number nn
  • No previous terms needed. You can jump straight to the 100th term without calculating terms 1 through 99.
  • When possible, convert recursive definitions to explicit form for faster computation

Recursive Sequence Formula

  • an=f(anโˆ’1,anโˆ’2,โ€ฆ)a_n = f(a_{n-1}, a_{n-2}, \ldots) defines each term based on one or more previous terms, plus initial conditions
  • You must know a1a_1 (and sometimes a2a_2) to generate the sequence
  • Some sequences, like Fibonacci, are most naturally defined recursively, even though explicit formulas exist

Compare: Explicit vs. Recursive. Explicit formulas are faster for finding single terms; recursive formulas better capture how a sequence builds. Exams often ask you to convert between them.


Summing Finite Sequences

When you need the total of multiple terms, series formulas save you from adding everything by hand. Each formula matches its sequence type.

Arithmetic Series Sum Formula

  • Sn=n2(a1+an)S_n = \frac{n}{2}(a_1 + a_n) sums nn terms by averaging the first and last terms, then multiplying by the count
  • Alternative form: Sn=n2(2a1+(nโˆ’1)d)S_n = \frac{n}{2}(2a_1 + (n-1)d), which is useful when you know dd but haven't calculated ana_n yet
  • The logic behind this (Gauss's insight): pairing terms from opposite ends of the sequence always gives equal sums, so you only need one pair times the number of pairs

Geometric Series Sum Formula

  • Sn=a1โ‹…1โˆ’rn1โˆ’rS_n = a_1 \cdot \frac{1 - r^n}{1 - r} for rโ‰ 1r \neq 1 sums nn terms of a geometric sequence
  • This formula comes from multiplying the series by rr and subtracting, which causes most terms to cancel (telescoping)
  • Watch for r=1r = 1: that special case means all terms equal a1a_1, so Sn=nโ‹…a1S_n = n \cdot a_1

Compare: Arithmetic vs. Geometric Series. Arithmetic sums use averaging (addition-based), geometric sums use the ratio formula (multiplication-based). If an FRQ gives you a sum and asks for the sequence type, check which formula produces the correct result.


Infinite Series and Convergence

Infinite series introduce the critical concept of convergence: does adding terms forever actually give a finite answer?

Infinite Geometric Series Sum Formula

  • S=a11โˆ’rS = \frac{a_1}{1 - r} when โˆฃrโˆฃ<1|r| < 1. The series converges to this finite value.
  • The convergence condition is non-negotiable. If โˆฃrโˆฃโ‰ฅ1|r| \geq 1, the series diverges and has no finite sum. Always check this before applying the formula.
  • This formula demonstrates how an infinite process can yield a finite result, a concept that becomes central in calculus

Compare: Finite vs. Infinite Geometric Series. A finite geometric series always has a sum regardless of rr (as long as rโ‰ 1r \neq 1). An infinite geometric series only converges when โˆฃrโˆฃ<1|r| < 1. Exam questions frequently test whether you verify the convergence condition before plugging in.


Notation and Special Sequences

These tools help you communicate about sequences efficiently and recognize important patterns.

Sigma Notation

  • โˆ‘i=mnf(i)\sum_{i=m}^{n} f(i) is compact notation where ii is the index variable, mm is the starting value, nn is the ending value, and f(i)f(i) defines each term
  • It translates "add up all terms from i=mi = m to i=ni = n" into a single expression
  • Useful properties: you can factor out constants (โˆ‘cโ‹…f(i)=cโ‹…โˆ‘f(i)\sum c \cdot f(i) = c \cdot \sum f(i)), split sums across addition, and shift indices

Fibonacci Sequence Formula

  • Recursive definition: Fn=Fnโˆ’1+Fnโˆ’2F_n = F_{n-1} + F_{n-2} with F0=0F_0 = 0 and F1=1F_1 = 1. Each term is the sum of the two before it.
  • The sequence: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34... Memorize the first several terms for quick recognition on exams.
  • Fibonacci is a second-order recurrence relation because it depends on two previous terms, not just one. This makes it more complex than a standard recursive sequence but creates richer patterns.

Compare: Fibonacci vs. Standard Recursive. Most recursive sequences you'll see depend on just one previous term (first-order). Fibonacci requires two, which means you need two initial conditions (F0F_0 and F1F_1) to get started.

Arithmetic-Geometric Sequence Formula

  • an=(a1+(nโˆ’1)d)โ‹…r(nโˆ’1)a_n = (a_1 + (n-1)d) \cdot r^{(n-1)} combines linear growth with exponential growth in a single term
  • The arithmetic component (a1+(nโˆ’1)d)(a_1 + (n-1)d) gets multiplied by the geometric component r(nโˆ’1)r^{(n-1)}
  • This hybrid structure models scenarios like increasing payments with interest, which comes up in annuity calculations

Quick Reference Table

ConceptBest Examples
Finding the nnth term directlyArithmetic Sequence Formula, Geometric Sequence Formula, Explicit Formula
Building terms from previous termsRecursive Formula, Fibonacci Sequence
Summing finite sequencesArithmetic Series Sum, Geometric Series Sum
Summing infinite sequencesInfinite Geometric Series (when $$
Additive (linear) growthArithmetic Sequence, Arithmetic Series
Multiplicative (exponential) growthGeometric Sequence, Geometric Series
Compact summation notationSigma Notation
Hybrid growth patternsArithmetic-Geometric Sequence

Self-Check Questions

  1. What's the key difference between identifying an arithmetic sequence versus a geometric sequence? Which operation do you perform on consecutive terms for each?

  2. You're given a geometric series and asked to find its sum. What must you check before using the infinite series formula S=a11โˆ’rS = \frac{a_1}{1-r}?

  3. Compare explicit and recursive formulas: when would you prefer each, and what information do you need to use them?

  4. If an FRQ describes a sequence where each term is the sum of the two preceding terms, which formula type applies? What initial conditions must be given?

  5. A problem gives you a1=5a_1 = 5, a10=50a_{10} = 50, and tells you the sequence is arithmetic. Which sum formula would you use, and why might you choose one version over the other?

Sequences Formulas to Know for Honors Pre-Calculus