Health Articles

View All

Complete Summary of Numerical Sequences – Definitions, Theorems and Formulas

Master numerical sequences with this complete mathematics guide. Learn arithmetic, geometric, recursive, and explicit sequences with theorems,..
Complete Summary of Numerical Sequences – Definitions, Theorems and Formulas
Table of Contents

Numerical sequences are one of the most important topics in algebra and calculus. They are used to model population growth, financial investments, computer algorithms, engineering systems, physics, and many real-life phenomena. Every mathematics student should master the different types of sequences and the theorems associated with them.

Definition
A numerical sequence is a function defined on the set of natural numbers. Each natural number n corresponds to exactly one real number denoted by un.

1. Definition of a Numerical Sequence

A sequence is an ordered list of numbers:

u0 , u1 , u2 , u3 ,
Vocabulary
  • u₀ : First term
  • u₁ : Second term
  • uₙ : General term
  • n : Index (Rank)

2. Main Types of Numerical Sequences

Sequence Type Description
Explicit Sequence The nth term is given directly as a function of n.
Recursive Sequence Each term depends on one or more previous terms.
Arithmetic Sequence The difference between consecutive terms is constant.
Geometric Sequence The ratio between consecutive terms is constant.

3. Explicit Sequence

Definition un = f ( n ) Each term can be calculated directly without knowing the previous terms.

Example

un = 4 n + 3
To calculate u5 simply substitute n = 5.

4. Recursive Sequence

Definition A recursive sequence is defined using one or more previous terms.
u n + 1 = f ( un )

Example

u0 = 2 u n + 1 = un + 5
Important Rule
To calculate a term, you must know the previous term(s).

5. Arithmetic Sequence

Definition An arithmetic sequence has a constant difference between consecutive terms.

Recurrence Formula

u n + 1 = un + r
r is called the common difference.

General Formula

un = u0 + n r
Theorem 1 An arithmetic sequence satisfies u n + 1 - un = r where r is a constant.
Property If r > 0 the sequence is increasing.

If r < 0 the sequence is decreasing.

6. Geometric Sequence

Definition
A sequence is called a geometric sequence when each term is obtained by multiplying the previous term by the same constant number called the common ratio.

Recursive Formula

u n + 1 = q un
Important Rule
q is called the common ratio.

Explicit Formula

un = u0 q n
Theorem 2 A sequence is geometric if and only if u n + 1 un = q where q is constant.
Property
  • If q > 1, the sequence is increasing (provided the terms are positive).
  • If 0 < q < 1, the sequence is decreasing.
  • If q = 1, the sequence is constant.
  • If q < 0, the signs alternate.

7. Sum of the First n Terms of an Arithmetic Sequence

Main Formula S n = n ( u1 + un ) 2
Equivalent Formula Sn = n 2 ( 2 u1 + ( n - 1 ) r )

8. Sum of the First n Terms of a Geometric Sequence

Main Formula Sn = u1 ( 1 - qn ) 1 - q
Special Case If q = 1 then Sn = n u1

9. Box of Essential Formulas

Every Student Should Memorize
  • Arithmetic recurrence: un+1 = un + r
  • Arithmetic explicit formula: un = u0 + n r
  • Geometric recurrence: un+1 = q un
  • Geometric explicit formula: un = u0 qn

10. Monotonicity of a Sequence

Definition
The monotonicity of a sequence describes how its terms evolve as the index increases.
Type of Sequence Condition Conclusion
Increasing un+1 > un The terms increase.
Decreasing un+1 < un The terms decrease.
Constant un+1 = un All terms are equal.
Theorem 3
If un+1 - un > 0 then the sequence is increasing.

If un+1 - un < 0 then the sequence is decreasing.

11. Bounded Sequences

Definition
A sequence is bounded if all its terms remain between two fixed real numbers.
m un M
Theorem 4
Every convergent sequence is bounded.
Important Remark
A bounded sequence is not necessarily convergent.

12. Convergent and Divergent Sequences

Definition
A sequence converges if its terms approach a fixed real number as the index tends to infinity.
lim n un = L
Theorem 5
A convergent sequence has a unique limit.
Examples
  • un = 1 n converges to 0.
  • un = n diverges toward infinity.

13. Fundamental Theorems

Theorem 6 – Comparison Theorem un vn If both sequences converge, then their limits preserve the inequality.
Theorem 7 – Squeeze Theorem If un vn wn and limn un = limn wn then limn vn has the same limit.

14. Summary Sheet

Essential Formulas Every Student Should Know
  • Arithmetic recurrence: un+1=un+r
  • Arithmetic explicit: un=u0+nr
  • Geometric recurrence: un+1=qun
  • Geometric explicit: un=u0qn
  • Arithmetic sum: Sn=n(u1+un)2
  • Geometric sum: Sn=u1(1-qn)1-q
Final Advice
To solve sequence problems successfully, always identify the type of sequence first (arithmetic, geometric, explicit, or recursive). Then apply the corresponding theorem and formula. Understanding the properties of monotonicity, boundedness, and convergence will make advanced topics in calculus and mathematical analysis much easier.

15. Sequence Limits

Definition
The limit of a sequence is the value approached by its terms as the index becomes infinitely large.
lim n u n = L
Interpretation
As n becomes larger and larger, the terms of the sequence get arbitrarily close to the real number L.

16. Important Limits Every Student Should Know

Fundamental Limits lim n 1 n = 0 lim n n = + lim n 1 n 2 = 0

17. Sequence Classification

Sequence Behavior Limit
1n Decreasing 0
n Increasing +∞
2 n Very fast increasing +∞
1 2 n Very fast decreasing 0

18. Mathematical Proof by Induction

Principle of Mathematical Induction To prove that a property is true for every natural number, follow these three steps.
Step Description
1 Verify the property for the first value.
2 Assume the property is true for n.
3 Prove it remains true for n+1.
Notation P ( n ) represents the mathematical property to be proved.

19. Common Mistakes

  • Confusing the common difference with the common ratio.
  • Using the arithmetic formula for a geometric sequence.
  • Forgetting the initial term.
  • Ignoring the index where the sequence begins.
  • Using the wrong summation formula.
  • Assuming every bounded sequence converges.
  • Applying induction incorrectly.

20. Complete Formula Sheet

Arithmetic Sequence un = u0 + n r
Geometric Sequence un = u0 q n
Arithmetic Sum Sn = n ( u1 + un ) 2
Geometric Sum Sn = u1 ( 1 - q n ) 1 - q
Final Summary
To solve any sequence problem efficiently:
  1. Identify the type of sequence.
  2. Determine whether it is explicit or recursive.
  3. Apply the correct theorem.
  4. Choose the appropriate formula.
  5. Simplify carefully.
  6. Verify monotonicity and convergence when required.
Students who master these concepts will be well prepared for algebra, calculus, mathematical analysis, engineering, economics, and university entrance examinations.
```html id="seq-summary-05"

21. Solved Exercises

Exercise 1 – Arithmetic Sequence

Given the arithmetic sequence:

u0 = 5 , r = 3

Find u₁₀.

Solution un = u0 + n r u10 = 5 + 10 × 3 = 35

Exercise 2 – Geometric Sequence

Given

u0 = 2 , q = 4

Calculate u₅.

un = u0 qn u5 = 2 45 = 2048

22. Theorems Every Student Must Know

Theorem 8 A sequence that is both increasing and bounded above is convergent.
Theorem 9 A sequence that is decreasing and bounded below is convergent.
Theorem 10 Every geometric sequence satisfies un = up q n - p for every pair of integers p and n.
Theorem 11 Every arithmetic sequence satisfies un = up + ( n - p ) r

23. Comparison Between Arithmetic and Geometric Sequences

Property Arithmetic Geometric
Operation Addition Multiplication
Constant Difference (r) Ratio (q)
Explicit Formula u₀ + nr u₀qⁿ
Growth Linear Exponential
Applications Salary increase, temperature Population, finance, bacteria
Memory Rule
  • Arithmetic → Add the same number.
  • Geometric → Multiply by the same number.

24. Formula Box

Arithmetic Sequence un+1 = un + r
un = u0 + n r
Geometric Sequence un+1 = q un
un = u0 qn
Exam Tips
  1. Identify the sequence type first.
  2. Never confuse the common difference with the common ratio.
  3. Memorize the explicit formulas.
  4. Know the sum formulas by heart.
  5. Always verify whether the sequence is increasing, decreasing, bounded, or convergent.
  6. Read the question carefully before choosing the theorem.
Conclusion Mastering numerical sequences is essential for success in algebra, calculus, mathematical analysis, probability, economics, engineering, physics, and computer science. Understanding the definitions, recognizing the sequence type, and applying the correct theorem systematically will allow students to solve nearly every sequence problem encountered in secondary school and university mathematics.
Related Posts
Receive the latest updates!