Calculate arithmetic sequences, geometric sequences, and Fibonacci sequences. Find the nth term, generate sequence patterns, and compute sums with detailed step-by-step solutions.
A number sequence is an ordered list of numbers that follow a particular pattern. The individual elements in a sequence are often referred to as terms, and the number of terms in a sequence is called its length, which can be infinite. Sequences are fundamental in mathematics and have applications in various fields including computer science, physics, and finance.
Understanding different types of sequences helps in pattern recognition, mathematical modeling, and solving real-world problems involving growth, decay, and periodic phenomena.
Constant difference between consecutive terms
Constant ratio between consecutive terms
Each term is the sum of the two preceding terms
Component | Symbol | Description | Example |
---|---|---|---|
First Term | a₁ | Starting value of sequence | 2 |
Common Difference | d | Constant added to each term | 3 |
nth Term | aₙ | Value at position n | a₅ = 14 |
Sum Formula | Sₙ | Sₙ = n/2 × (2a₁ + (n-1)d) | S₅ = 40 |
Example: Sequence 2, 5, 8, 11, 14, ... has a₁ = 2 and d = 3
Finding 5th term: a₅ = 2 + (5-1) × 3 = 2 + 12 = 14
Component | Symbol | Description | Example |
---|---|---|---|
First Term | a | Starting value of sequence | 3 |
Common Ratio | r | Constant multiplied to each term | 2 |
nth Term | aₙ | Value at position n | a₄ = 24 |
Sum Formula | Sₙ | Sₙ = a(1-rⁿ)/(1-r) for r≠1 | S₄ = 45 |
Example: Sequence 3, 6, 12, 24, 48, ... has a = 3 and r = 2
Finding 4th term: a₄ = 3 × 2³ = 3 × 8 = 24
Properties of Fibonacci Numbers:
Position (n) | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
---|---|---|---|---|---|---|---|---|---|---|---|
Fibonacci Number | 0 | 1 | 1 | 2 | 3 | 5 | 8 | 13 | 21 | 34 | 55 |
Sequence Type | Application | Example | Formula Used |
---|---|---|---|
Arithmetic | Linear Growth | Salary increases, loan payments | aₙ = a₁ + (n-1)d |
Geometric | Exponential Growth/Decay | Population growth, radioactive decay | aₙ = a × rⁿ⁻¹ |
Fibonacci | Natural Patterns | Flower petals, shell spirals, algorithms | Fₙ = Fₙ₋₁ + Fₙ₋₂ |
Sequence: An ordered list of numbers (terms)
Series: The sum of the terms in a sequence
Identify the Pattern: Look for constant differences (arithmetic) or constant ratios (geometric) between consecutive terms.
Check Your Work: Verify your formula by calculating known terms in the sequence.
Use Appropriate Formulas: Choose the right formula based on the sequence type to avoid calculation errors.
Consider Convergence: For infinite sequences, determine if they converge to a limit or diverge.