Arithmetic, Geometric, Fibonacci Sequences • 2026
| Term (n) | Value (aₙ) | Difference | Ratio |
|---|
A number sequence is an ordered list of numbers that follow a specific pattern or rule. Each number in the sequence is called a term, and sequences can be finite (ending after a certain number of terms) or infinite (continuing indefinitely).
There are several important types of number sequences:
For arithmetic and geometric sequences, we can calculate the sum of the first n terms:
What is the 10th term of the arithmetic sequence: 3, 7, 11, 15, ...?
The answer is A) 39. For an arithmetic sequence, we use the formula: \(a_n = a_1 + (n-1)d\)
Here: \(a_1 = 3\), \(d = 4\) (since 7-3=4, 11-7=4, etc.)
\(a_{10} = 3 + (10-1) \times 4 = 3 + 36 = 39\)
Arithmetic sequences have a constant difference between consecutive terms. To find any term, we start with the first term and add the common difference repeatedly. The formula \(a_n = a_1 + (n-1)d\) captures this pattern efficiently.
Arithmetic Sequence: Sequence with constant difference between terms
Common Difference (d): The constant value added to get the next term
nth Term Formula: Formula to find any term in the sequence
• \(d = a_2 - a_1 = a_3 - a_2 =\) constant
• \(a_n = a_1 + (n-1)d\)
• The sequence increases/decreases linearly
• Find the common difference by subtracting consecutive terms
• Use the formula instead of counting manually for large n
• Check your answer by plugging back into the sequence
• Forgetting to subtract 1 in the formula (n-1)
• Confusing the first term with the common difference
• Not identifying the correct common difference
Find the 6th term of the geometric sequence: 2, 6, 18, 54, ... Show your work.
For a geometric sequence, we use the formula: \(a_n = a_1 \cdot r^{n-1}\)
Step 1: Find the common ratio: \(r = \frac{a_2}{a_1} = \frac{6}{2} = 3\)
Step 2: Verify with next pair: \(\frac{18}{6} = 3\) ✓
Step 3: Apply the formula: \(a_6 = 2 \cdot 3^{6-1} = 2 \cdot 3^5 = 2 \cdot 243 = 486\)
The 6th term is 486.
Geometric sequences have a constant ratio between consecutive terms. Each term is found by multiplying the previous term by the common ratio. The formula \(a_n = a_1 \cdot r^{n-1}\) reflects this multiplicative pattern.
Geometric Sequence: Sequence with constant ratio between terms
Common Ratio (r): The constant value multiplied to get the next term
Exponential Growth: Terms grow exponentially in geometric sequences
• \(r = \frac{a_2}{a_1} = \frac{a_3}{a_2} =\) constant
• \(a_n = a_1 \cdot r^{n-1}\)
• If |r| > 1, sequence grows exponentially
• Find the common ratio by dividing consecutive terms
• Use the formula for efficiency with large n
• Remember: ratios involve division, not subtraction
• Confusing geometric with arithmetic sequences
• Using addition instead of multiplication
• Incorrectly calculating the common ratio
A company's sales double every year. If they sold 100 units in the first year, how many units will they sell in the 8th year? What type of sequence does this represent?
This is a geometric sequence since sales double each year (multiply by 2).
Given: \(a_1 = 100\), \(r = 2\)
Using the geometric formula: \(a_n = a_1 \cdot r^{n-1}\)
\(a_8 = 100 \cdot 2^{8-1} = 100 \cdot 2^7 = 100 \cdot 128 = 12,800\)
In the 8th year, they will sell 12,800 units. This represents a geometric sequence with a common ratio of 2.
This problem shows how geometric sequences model exponential growth situations like population growth, compound interest, or doubling quantities. The key indicator is when a quantity is multiplied by the same factor repeatedly.
Exponential Growth: Growth where a quantity multiplies by a constant factor
Real-world Applications: Population growth, compound interest, viral spread
Modeling: Using mathematics to represent real situations
• Look for "doubles", "triples", "percent increase" for geometric
• Look for "adds", "increases by", "constant difference" for arithmetic
• Geometric growth is much faster than arithmetic growth
• Keywords like "double", "triple", "percent growth" suggest geometric
• Keywords like "add", "increase by", "constant" suggest arithmetic
• Sketch a few terms to visualize the pattern
• Confusing additive with multiplicative growth
• Using arithmetic instead of geometric for doubling problems
• Not recognizing the sequence type from the problem description
The Fibonacci sequence starts with 1, 1, and each subsequent term is the sum of the two preceding terms. Find the first 8 terms of the Fibonacci sequence. Where might you encounter this sequence in nature?
The Fibonacci sequence is defined as: \(F_n = F_{n-1} + F_{n-2}\), with \(F_1 = 1\) and \(F_2 = 1\)
Calculating the first 8 terms:
\(F_1 = 1\)
\(F_2 = 1\)
\(F_3 = F_2 + F_1 = 1 + 1 = 2\)
\(F_4 = F_3 + F_2 = 2 + 1 = 3\)
\(F_5 = F_4 + F_3 = 3 + 2 = 5\)
\(F_6 = F_5 + F_4 = 5 + 3 = 8\)
\(F_7 = F_6 + F_5 = 8 + 5 = 13\)
\(F_8 = F_7 + F_6 = 13 + 8 = 21\)
The first 8 terms are: 1, 1, 2, 3, 5, 8, 13, 21
In nature, Fibonacci sequences appear in flower petals, leaf arrangements, shell spirals, and tree branches.
The Fibonacci sequence is a recursive sequence where each term depends on the previous two terms. This is different from arithmetic and geometric sequences where the pattern is based on addition or multiplication by constants. Fibonacci numbers appear frequently in nature due to optimal packing and growth patterns.
Recursive Sequence: Each term is defined based on previous terms
Fibonacci Sequence: Each term is the sum of the two preceding terms
Nature's Patterns: Mathematical sequences found in natural phenomena
• Recursive sequences need initial terms to start
• Fibonacci: \(F_n = F_{n-1} + F_{n-2}\)
• The golden ratio appears as terms increase
• Always write down the recursive formula first
• Calculate terms step by step to avoid errors
• Look for patterns in ratios of consecutive terms
• Forgetting the initial terms in recursive sequences
• Adding the wrong previous terms
• Confusing with other sequence types
Which sequence type does the pattern 4, 12, 36, 108, ... represent?
The answer is C) Geometric with r = 3. Let's test both possibilities:
Arithmetic check: 12 - 4 = 8, 36 - 12 = 24. Since 8 ≠ 24, it's not arithmetic.
Geometric check: 12 ÷ 4 = 3, 36 ÷ 12 = 3, 108 ÷ 36 = 3. Since all ratios equal 3, it's geometric with r = 3.
To identify sequence types, calculate differences (for arithmetic) or ratios (for geometric). If differences are constant, it's arithmetic. If ratios are constant, it's geometric. This systematic approach helps distinguish between sequence types.
Pattern Recognition: Identifying the rule governing a sequence
Difference Method: Checking constant differences between terms
Ratio Method: Checking constant ratios between terms
• Arithmetic: \(a_2 - a_1 = a_3 - a_2 = d\) (constant)
• Geometric: \(\frac{a_2}{a_1} = \frac{a_3}{a_2} = r\) (constant)
• Always verify with multiple pairs
• Calculate differences first for quick identification
• If differences aren't constant, try ratios
• Always check at least 2-3 pairs to confirm the pattern
• Only checking one pair of terms instead of multiple pairs
• Confusing addition with multiplication patterns
• Not systematically testing both difference and ratio methods
Ordered list of numbers following a specific pattern.
Arithmetic: \(a_n = a_1 + (n-1)d\)
Geometric: \(a_n = a_1 \cdot r^{n-1}\)
Arithmetic, geometric, Fibonacci, square, triangular numbers.
Q: How do I know if a sequence is arithmetic or geometric?
A: Calculate the difference between consecutive terms. If constant, it's arithmetic. If not, calculate the ratio between consecutive terms. If constant, it's geometric. Example: 2, 5, 8... (differences: 3, 3 - arithmetic). Example: 2, 6, 18... (ratios: 3, 3 - geometric).
Q: Where are sequences used in real life?
A: Sequences appear in compound interest calculations (geometric), population growth, depreciation, Fibonacci in nature (flower petals, pinecones), arithmetic in straight-line depreciation, and harmonic sequences in music and physics.