What are Geometric Patterns?
A geometric pattern (or geometric sequence) is a sequence where each term is found by multiplying the previous term by a constant. This constant is called the common ratio (\(r\)).
Formula for Geometric Sequence:
\(a_n = a_1 \times r^{(n-1)}\)
Where:
- \(a_n\) = the \(n\)th term
- \(a_1\) = first term
- \(r\) = common ratio
- \(n\) = position of the term
Examples of Geometric Sequences:
| Sequence | First Term (\(a_1\)) | Common Ratio (\(r\)) | Next Term |
|---|---|---|---|
| 2, 6, 18, 54, ... | 2 | ×3 | 162 |
| 100, 50, 25, 12.5, ... | 100 | ×0.5 or ÷2 | 6.25 |
| 4, -12, 36, -108, ... | 4 | ×(-3) | 324 |
| 5, 5, 5, 5, ... | 5 | ×1 | 5 |
What are Recursive Patterns?
A recursive pattern defines each term based on the previous term(s) using a fixed rule. Instead of giving a direct formula (like \(a_n = 2n+3\)), recursive patterns tell you how to get from one term to the next.
Recursive Formula Format:
- \(a_1 =\) [first term]
- \(a_n =\) [rule involving \(a_{n-1}\)]
Examples of Recursive Patterns:
| Type | Recursive Rule | First Term | Generated Sequence |
|---|---|---|---|
| Arithmetic | \(a_n = a_{n-1} + 5\) | \(a_1 = 2\) | 2, 7, 12, 17, ... |
| Geometric | \(a_n = 3 \times a_{n-1}\) | \(a_1 = 4\) | 4, 12, 36, 108, ... |
| Fibonacci | \(a_n = a_{n-1} + a_{n-2}\) | \(a_1 = 1, a_2 = 1\) | 1, 1, 2, 3, 5, 8, ... |
Comparison: Arithmetic vs Geometric Sequences
| Feature | Arithmetic Sequence | Geometric Sequence |
|---|---|---|
| Operation | Addition/Subtraction | Multiplication/Division |
| Common Element | Difference (\(d\)) | Ratio (\(r\)) |
| Formula | \(a_n = a_1 + (n-1)d\) | \(a_n = a_1 \times r^{(n-1)}\) |
| Graph Shape | Straight line | Curve (exponential) |