Grade 11 → Algebra → Sequences and Series ↓
Geometric Sequence
A geometric sequence, also known as a geometric progression, is a sequence of numbers where each term after the first term is found by multiplying the previous term by a constant, known as the common ratio. This concept is widely used in various mathematical analyses and has real-world applications in fields such as finance, computer science, and physics.
Basics of geometric sequence
The general form of a geometric sequence can be expressed as:
a, ar, ar^2, ar^3, ar^4, ..., ar^n
Here:
a
is the first term of the sequence.r
is the common ratio, which is a constant.n
is the term number.
Each term is obtained by multiplying the previous term by r
.
Example of a geometric sequence
Let us consider an example:
2, 6, 18, 54, ...
In this sequence, the first term is a
2
and the common ratio r
is 3
To get the next term you multiply the previous term by 3
.
Finding the common ratio
The common ratio can be determined by dividing any term in the sequence by its previous term. If the sequence is geometric, the common ratio must be the same for all successive pairs of terms. Formally,
r = a /a
r = a /a
For example, in the sequence 2, 6, 18, 54
:
r = 6/2 = 3
r = 18/6 = 3
r = 54/18 = 3
General term of a geometric sequence
The n-th term of a geometric sequence can be found using the following formula:
a_n = a * r^(n-1)
Where:
a_n
is the nth term.a
is the first term.r
is the common ratio.n
is the number of terms.
Working example
Suppose a geometric sequence begins with 5, and the common ratio is 2. To find the 5th term (a 5 ):
a_5 = 5 * 2^(5-1) = 5 * 16 = 80
Hence the 5th term is 80.
Sum of geometric sequence
The sum of the first n
terms of a geometric sequence can be calculated using the following:
S_n = a * (1-r^n)/(1-r)
If the common ratio r
is between -1 and 1 (except 1), or when the absolute value of r
is less than 1, the infinite sum can be calculated using:
S = a / (1-r)
Example of a finite sum
Using the previous sequence 2, 6, 18, 54
, find the sum of the first 4 terms.
S_4 = 2 * (1-3^4)/(1-3) = 2 * (1-81)/(-2) = 2 * (80/2) = 80
Example of infinite sum
Consider an infinite geometric sequence 5, 2.5, 1.25, ...
in which r = 0.5
:
S = 5 / (1-0.5) = 5 / 0.5 = 10
Graphical representation
Geometric sequences can be represented visually by plotting the terms on a graph, where the x-axis represents the term number and the y-axis represents the value of the term. A simple illustration is given below:
Challenges and considerations
When working with geometric sequences, it is important to consider the following:
- The common ratio
r
must not be zero, as this would make all subsequent terms zero. - If
r
is negative, the sequence will alternate between positive and negative values.
Example with a negative common ratio
Consider the sequence 4, -8, 16, -32, ...
with a = 4
, r = -2
. The first few terms show an alternating pattern:
a_1 = 4
a_2 = 4 * (-2) = -8
a_3 = -8 * (-2) = 16
a_4 = 16 * (-2) = -32
Applications of geometric sequences
Geometric sequences are not just theoretical concepts, but also have important applications in the real world:
- Finance: Used to model compound interest and investments.
- Computer science: Algorithms that involve exponential growth or decrease.
- Physics: Modeling of exponential decay processes.
Example in finance: compound interest
If you invest $1,000 at an annual interest rate of 5%, compounded annually, the sequence showing the balance each year is geometric:
1000, 1050, 1102.5, ...
Here, a = 1000
and r = 1.05
.
Let us calculate the balance after 5 years:
a_5 = 1000 * 1.05^4 ≈ 1215.51
The remaining amount after 5 years would be approximately $1215.51.
Exploring variations in geometric sequences
Geometric sequences can be altered to represent more complex phenomena. Consider sequences with variable growth rates or target sequences that show specific growth patterns. By adjusting common ratios or initial positions, fascinating new patterns emerge, further expanding their applicability in modeling complex systems.
Conclusion
Understanding geometric sequences is an essential part of algebra that connects to many other mathematical fields and real-world applications. With a firm grasp on geometric sequences, one can tackle problems ranging from simple pattern recognition to complex financial modeling and beyond.