Arithmetic Sequences and Series — Quick Reference
Understand Arithmetic Sequences
- An arithmetic sequence has a constant difference between consecutive terms, called the common difference d.
- General term (explicit form): a<em>n=a</em>1+(n−1)d where a1 is the first term and n∈N.
- Recursive form: a<em>n=a</em>n−1+d with initial term a1.
- Distinction: explicit gives any term directly; recursive uses the previous term.
Write a Function for an Arithmetic Sequence
- Recursive function form: f(1)=a1,f(n)=f(n−1)+d.
- Explicit function form: f(n)=a1+(n−1)d.
- Example structure: a term is defined by the previous term plus d (with an initial condition).
Examples (conceptual)
- Sequence 3, 8, 13, 18, 23, ⋯
- a<em>1=3, d=5; a</em>n=3+(n−1)⋅5
- Next term: a6=3+5⋅5=28
- Sequence 4, 7, 10, 13, 16, ⋯
- a<em>1=4, d=3a</em>n=4+(n−1)⋅3
- Next term: a6=4+5⋅3=19
- From recursive to explicit: a<em>n=a</em>1+(n−1)d
- From explicit to recursive: a<em>n=a</em>n−1+d, a<em>1=a</em>1
- Example: if a<em>2=a</em>1+0.5, then a<em>n=a</em>1+0.5(n−1)
Solve Problems With Arithmetic Sequences
- Example: Auditorium seating
- Given a<em>1=18, a</em>5=26; difference per row: d=5−1a<em>5−a</em>1=426−18=2
- Explicit: an=18+2(n−1)
- Then a12=18+2⋅11=40
- Sum of arithmetic sequence
- Finite sum: S<em>n=2n(a</em>1+a<em>n) or S</em>n=2n(2a1+(n−1)d)
- Example: Sum of 1,4,7,10,13
- a<em>1=1, d=3, a</em>5=13, n=5
- S5=25(1+13)=35
Sigma Notation
- Sum of a sequence can be written as ∑<em>i=1na</em>i where ai is the i-th term.
- Replace ai with the explicit formula when using sigma notation.
- Example: series 2+9+16+⋯+79
- a<em>1=2, d=7, a</em>n=79, n=12
- Explicit term: ai=2+7(i−1)=7i−5
- Sigma form: ∑i=112(7i−5)=486
Use a Finite Arithmetic Series
- Pyramid example: 1, 2, 3, …, 10 rows (top row 1, bottom row 10)
- a<em>1=1, a</em>10=10, d=1
- Sum: S10=210(1+10)=55
- Use explicit formula when you know a<em>1,a</em>n, or d
Concept Summary
- Arithmetic sequences: a<em>n=a</em>1+(n−1)d
- Common difference: d
- Recursive vs Explicit representations
- Arithmetic series (sums): S<em>n=2n(a</em>1+a<em>n)=2n(2a</em>1+(n−1)d)
- Sigma notation: ∑<em>i=1na</em>i
Do You Understand?
- Essential Question: What is an arithmetic sequence, and how do you represent and find its terms and their sums?
- Vocabulary: Distinguish between arithmetic sequence (terms) and arithmetic series (sum).
- Error Analysis: A claim like 0, 1, 3, 6, 10 is not arithmetic; the differences are 1, 2, 3, 4, so the pattern is not constant.
- Precision: How to calculate terms and sums accurately using the explicit or recursive forms.