Sequence and Series Notes
Sequence and Series Notes
## Sequences
A sequence is an ordered list of numbers or objects, where each member is identified by its position or
index. Formally, a sequence can be defined as a function whose domain is the set of natural numbers or a
subset of natural numbers.
1. **Arithmetic Sequence**: A sequence in which each term is obtained by adding a constant value \(d\)
to the previous term. The general form of an arithmetic sequence is \(a_n = a_1 + (n - 1) \cdot d\), where \
(a_n\) is the \(n\)th term, \(a_1\) is the first term, and \(d\) is the common difference.
2. **Geometric Sequence**: A sequence in which each term is obtained by multiplying the previous term
by a constant ratio \(r\). The general form of a geometric sequence is \(a_n = a_1 \cdot r^{n - 1}\), where \
(a_n\) is the \(n\)th term, \(a_1\) is the first term, and \(r\) is the common ratio.
3. **Harmonic Sequence**: A sequence in which each term is the reciprocal of an arithmetic sequence.
The general form of a harmonic sequence is \(a_n = \frac{1}{a_1 + (n - 1) \cdot d}\).
4. **Fibonacci Sequence**: A sequence in which each term is the sum of the two preceding terms. It
starts with \(0\) and \(1\), and subsequent terms are generated by adding the last two terms.
## Series
A series is the sum of the terms of a sequence. It represents the accumulation of terms in a sequence, often
extending to infinity.
1. **Finite Series**: A series that consists of a finite number of terms. It can be computed by summing
the individual terms.
2. **Infinite Series**: A series that continues indefinitely, often represented using sigma notation (\(\
sum\)). The sum of an infinite series is the limit of the partial sums as the number of terms approaches
infinity.
1. **Convergent Series**: An infinite series whose partial sums approach a finite limit as the number of
terms increases. If the limit exists, the series is said to converge.
2. **Divergent Series**: An infinite series whose partial sums do not approach a finite limit as the
number of terms increases. If the limit does not exist or equals infinity, the series is said to diverge.
1. **Geometric Series Test**: Determines whether a geometric series converges or diverges based on the
common ratio \(r\). The series converges if \(|r| < 1\) and diverges otherwise.
2. **Comparison Test**: Compares the given series with a known convergent or divergent series to
determine its convergence or divergence.
3. **Integral Test**: Applies to series with positive, continuous, and decreasing terms. It relates the
convergence of a series to the convergence of an improper integral.
4. **Ratio Test**: Determines the convergence of a series by computing the limit of the ratio of
consecutive terms.
5. **Root Test**: Determines the convergence of a series by computing the limit of the \(n\)th root of the
absolute value of the \(n\)th term.
1. **Mathematical Modeling**: Sequences and series are used to model real-world phenomena, such as
population growth, compound interest, and physical processes.
2. **Engineering**: Used in signal processing, control theory, and numerical analysis for designing
systems and solving equations.
3. **Computer Science**: Applied in algorithms, data structures, and computational complexity analysis.
4. **Finance**: Utilized in calculating present and future values of investments, annuities, and loans.
5. **Physics**: Employed in kinematics, dynamics, and quantum mechanics to describe motion, forces,
and wave functions.
Understanding sequences and series is crucial for various mathematical applications, providing insights
into patterns, trends, and behaviors across different domains.