Sequences & Series – Comprehensive Study Notes
Basics of Sequences
Sequence = ordered list of numbers separated by commas.
• Each individual entry is a term.Symbol/Rule: (read “a–sub–n”) denotes the n-th term or a formula that produces term n.
Example: .Representations
• Raw list:
• Set/brace notation: where braces indicate “this is a sequence, not a single number.”
• Explicit formula inside braces signals a sequence (e.g. ).Term Indexing Trick: Write the indices 1,2,3,… above/below the values to spot relations (e.g. see that 1→2, 2→5, 3→10 all match ).
Strategies for Detecting Patterns
Label indices to expose potential formulas.
“Feel it” approach: guess → check → revise. There is no guaranteed hack beyond observation.
Ask: Is there a constant difference (arithmetic)? constant ratio (geometric)? alternating sign? factorial? powers? etc.
Recursive Sequences
Definition: Each term depends on one or more previous terms.
General form: plus starting values.Mandatory components for a proper recursive definition:
At least one initial term (often ).
A rule containing an earlier term, e.g. or .
Example 1
• Compute first five terms: – (given)
– –
– –
• Far-out terms (e.g. ) require stepping through all predecessors.Example 2 (two-term recursion)
(paraphrased from board).
Calculated sequence:
Explicit (Nth-Term) Sequences
Definition: Term expressed directly from index n; no earlier terms in the formula.
Advantages: Jump straight to
Examples
• → first three terms . • Oscillating sign: → pattern ±, ±, ± … (the $(-1)^{n-1}$ piece forces the sign flips).
• Alternate choices for sign-flippers: $(-1)^n,\ (-1)^{n+1},\ (-1)^{n+2}$ all yield ± sequence but start with opposite sign depending on exponent.
Comparing Recursive vs Explicit
Feature | Recursive | Explicit |
|---|---|---|
Needs initial term(s)? | Yes | No |
Uses previous terms? | Yes | No |
Easy to reach far terms? | No (must iterate) | Yes (direct plug) |
Coding analogy | loop accumulation | closed-form function |
Arithmetic Sequences
Definition: Constant difference : .
Explicit form: .
Identify by checking successive differences.
• Example: → .Determine d quickly with two known terms:
.
Geometric Sequences
Definition: Constant ratio : .
Explicit form: .
Tests
• Multiply check: Does same factor carry you term-to-term?
• Fraction/negative ratios allowed.Examples
• → .
• → (simplify powers when exponents hide pattern).
• and are equivalent ways to write base·ratio forms.
Recursive vs Explicit in Practice
Geometric recursive sample
Geometric explicit version
.
Sigma (Summation) Notation
General: .
• Bottom value = first index.
• Top value = last index.
• supplies the explicit term rule.Reading tips
Plug successive k values: start, start+1, …, end.
Write first three terms + last term to reveal pattern.
Example 1 (not arithmetic/geometric)
→ terms: .Example 2 (alternating geometric)
→ after cleaning: .Shifting Indices
• Starting at 1 vs 0 changes exponent offsets.
• Example: vs are equivalent.
Writing a Series into Sigma Form
Decide whether first listed term is or (or other).
Identify explicit rule from last unsimplified term if shown.
Verify by back-substitution for first few k’s.
Adjust upper limit so final k reproduces final term.
Arithmetic Series (Sum of an Arithmetic Sequence)
Historical story: Young Carl Gauss (late 1700s) summed instantly (answer ) by pairing terms.
Gauss pairing insight: first + last, second + second-last, … each pair gives same subtotal.
Formula:
where • = number of terms, • = first term,
• = last (n-th) term.Derivation mini-model using 1–10
Pairs give . There are pairs ⇒ .Usage examples
• Sum : . • Any arithmetic series follows same template once are known.
Key Insights & Tips
Label indices; pattern often sits in “index → value” relationship.
Recursive = dependent; explicit = independent of prior terms.
Sign oscillations: multiply by $(-1)^n$‐style factor; shift exponent to set starting sign.
Arithmetic → constant difference; geometric → constant ratio.
Sigma notation: bottom = start index; top = stop index. Write ≥3 terms to check.
In sigma, you may start at 0 or 1—adjust exponent or accordingly.
When converting a raw series to sigma, copy the unsimplified last term; it usually reveals the rule.
Gauss formula only works for arithmetic series; use geometric-series formulas (not covered here) for geometric sums.
Common Pitfalls
Forgetting initial term in recursive definition → incomplete sequence.
Mixing up (index) with (value).
Using arithmetic formula on a geometric or non-linear sequence.
Misplacing start/stop numbers in sigma notation.
Wrong exponent shift when starting sigma at 0 vs 1.
Vocabulary & Symbols
– nth term
– common difference (arithmetic)
– common ratio (geometric)
– sum of first n terms (series)
– summation symbol (sigma)
Recursive keyword cues: “previous term,” “depends on,” .
Explicit cues: “nth term,” formula in n only.