Zum Inhalt springen

English:Sequences and Series

Aus MOOCsWiki Staging
Die Druckversion wird nicht mehr unterstützt und kann Darstellungsfehler aufweisen. Bitte aktualisiere deine Browser-Lesezeichen und verwende stattdessen die Standard-Druckfunktion des Browsers.
aiMOOC-Siegel

Sequences and Series



Introduction

Sequences and Series are central ideas in algebra, precalculus, calculus, discrete mathematics, finance, science, and computing. A sequence is an ordered list of terms, while a series is formed by adding terms of a sequence. In Grades 11–13, you use these ideas to describe patterns, model repeated change, calculate accumulated quantities, and prepare for the study of limits and calculus.

This aiMOOC helps you move from pattern recognition to general formulas and then to mathematical reasoning. You will learn to represent sequences explicitly and recursively, work with arithmetic and geometric structures, use sigma notation, calculate finite sums, interpret infinite series through partial sums, and decide when important types of sequences or series converge. You will also connect the mathematics to compound growth, installment payments, computer algorithms, and other applications.

By the end of the course, you should be able to:

  1. Describe and represent sequences: Use term notation, tables, graphs, explicit formulas, and recursive rules.
  2. Analyze arithmetic sequences and series: Identify a common difference and calculate general terms and finite sums.
  3. Analyze geometric sequences and series: Identify a common ratio, calculate finite sums, and evaluate convergent infinite geometric series.
  4. Use sigma notation: Interpret and construct compact expressions for sums.
  5. Reason about convergence: Connect an infinite series to the limit of its sequence of partial sums.
  6. Model recursive processes: Use recurrence rules such as the Fibonacci recurrence and repeated growth or decay.

The introductory Khan Academy video above provides a useful overview of arithmetic and geometric sequences and series. As you watch, pause before worked steps and try to predict the next move.


Foundations: What Is a Sequence?

A sequence is an ordered collection of terms. The position of each term matters. If the terms are a1,a2,a3,, then an denotes the term at position n. For example, the sequence

3,7,11,15,

has first term a1=3, second term a2=7, and so on.

A sequence can be finite or infinite. A finite sequence has a final term. An infinite sequence continues without a final index. The notation {an} or (an) refers to the sequence itself, while an refers to one term.

A graph of a sequence is normally discrete: you plot points only at the allowed integer indices. Connecting all points with a continuous curve may suggest values that are not actually terms of the sequence.


Explicit and Recursive Descriptions

An explicit formula gives a term directly from its index. For example,

an=5+3(n1)

lets you calculate any term without finding the earlier terms first.

A recursive definition describes one or more starting values and a rule that uses earlier terms. For example,

a1=5,an=an1+3for n2.

These two definitions describe the same sequence. Explicit rules are often efficient when you need a distant term. Recursive rules are often natural when a process evolves step by step, as in population models, algorithms, or repeated financial updates.


Arithmetic Sequences and Series

An arithmetic sequence has a constant difference d between consecutive terms. If

a1,a2,a3,

is arithmetic, then

an+1an=d.

The general term is

an=a1+(n1)d.

For the sequence 8,13,18,23,, the common difference is d=5, so

an=8+5(n1)=5n+3.

The graph above illustrates the linear structure of an arithmetic sequence: equal changes in the index produce equal changes in the term value.


Sum of a Finite Arithmetic Series

Adding the first n terms of an arithmetic sequence gives an arithmetic series. Its sum is

Sn=n2(a1+an),

or, after substituting the formula for an,

Sn=n2(2a1+(n1)d).

The formula can be understood by pairing terms from opposite ends. The first and last terms have sum a1+an, the second and second-to-last terms have the same sum, and so on.

For example, the sum

4+7+10++58

has a1=4, d=3, and an=58. Solving 58=4+3(n1) gives n=19. Therefore,

S19=192(4+58)=589.

Triangular numbers provide a visual model for the familiar arithmetic sum 1+2++n=n(n+1)2.


Geometric Sequences and Series

A geometric sequence has a constant nonzero multiplicative ratio r between consecutive nonzero terms. When the terms are nonzero,

an+1an=r.

The explicit formula is

an=a1rn1.

For example, in 6,18,54,162,, the common ratio is r=3, so

an=63n1.

If |r|>1, magnitudes grow exponentially. If 0<|r|<1, magnitudes shrink toward zero. A negative ratio makes signs alternate.

The graph above shows how geometric growth differs from the linear growth of an arithmetic sequence.


Sum of a Finite Geometric Series

For r1, the first n terms of a geometric sequence have sum

Sn=a11rn1r.

An equivalent form is

Sn=a1rn1r1.

A standard derivation starts with

Sn=a1+a1r+a1r2++a1rn1.

Multiply by r, subtract the two equations, and almost every term cancels:

SnrSn=a1a1rn.

Factoring then gives the finite-sum formula.

If r=1, every term equals a1, so the finite sum is simply Sn=na1.


Infinite Geometric Series

An infinite geometric series has the form

a1+a1r+a1r2+a1r3+.

If |r|<1, then rn0 as n. Taking the limit of the finite-sum formula gives

S=a11r.

For example,

12+6+3+32+

has a1=12 and r=12, so

S=12112=24.

If |r|1 and a10, the terms do not approach zero, so the series does not converge in the usual sense.

Datei:GeometricSquares.svg

The shrinking squares provide a geometric interpretation of a convergent geometric series: infinitely many positive areas can have a finite total.

Datei:Infinite geometric series sum.svg

The second diagram gives another visual derivation of the infinite geometric sum.

The Khan Academy video above develops the sum of an infinite geometric series. Compare the algebraic derivation with the two geometric pictures.


Sigma Notation and Partial Sums

The Greek capital letter sigma, Σ, is used to write sums compactly. For example,

k=15(2k+1)=3+5+7+9+11=35.

In

k=mnf(k),

k is the index, m is the lower bound, n is the upper bound, and f(k) is the summand.

Useful properties include linearity:

k=1n(cak+bk)=ck=1nak+k=1nbk.

You can also split a sum at an intermediate index:

k=1nak=k=1mak+k=m+1nak

for an integer m between the bounds.

The partial sum

SN=k=1Nak

is the sum of the first N terms. Partial sums are essential because an infinite series is defined through the behavior of the sequence S1,S2,S3,.


Limits and Convergence

A sequence (an) converges to a limit L if its terms can be made arbitrarily close to L by taking n sufficiently large. We write

limnan=L.

For example,

an=1n

converges to zero, while an=(1)n does not converge because it keeps alternating between two values.

Datei:Converging Sequence example.svg

The graph shows a sequence whose terms approach zero as the index increases.

The MIT OpenCourseWare lecture above gives a more formal view of sequences and convergence. For Grades 11–12, focus on the idea of approaching a limit. For Grade 13 or introductory university study, also pay attention to the precise language used to justify convergence.


Convergence of a Series

An infinite series

n=1an

converges if its sequence of partial sums

SN=n=1Nan

converges to a finite limit. If SNS, then we write

n=1an=S.

This distinction is fundamental: a sequence asks what happens to individual terms, while a series asks what happens to accumulated partial sums.

A necessary condition for a series to converge is

an0.

However, this condition is not sufficient. The harmonic series

1+12+13+14+

has terms that approach zero, but its partial sums grow without bound, so it diverges.


Convergence Tests for Infinite Series

At Grades 11–13, the exact list of required convergence tests depends on your course. The following tests provide a useful progression from basic to more advanced reasoning.

Geometric test: A geometric series converges exactly when the absolute value of its common ratio is less than one.

Term test for divergence: If limnan is not zero or does not exist, then an diverges. If the limit is zero, the test gives no conclusion.

Comparison test: For nonnegative terms, compare an unfamiliar series with a known benchmark. A series bounded above by a convergent positive series converges; a series bounded below by a divergent positive series diverges.

Ratio test: For many series involving powers or factorials, examine

L=limn|an+1an|.

If L<1, the series converges absolutely. If L>1, the series diverges. If L=1, the test is inconclusive.

Alternating series test: A series whose signs alternate converges if the magnitudes of its terms decrease eventually and approach zero. This can produce conditional convergence, where the alternating series converges but the corresponding absolute-value series does not.

The MIT OpenCourseWare lecture above extends the discussion to convergence tests and power series. It is especially suitable for Grade 13 and introductory university learners.


Recursive Sequences and the Fibonacci Example

Not every important sequence is best described by a simple arithmetic or geometric formula. A recurrence relation can define later terms from earlier ones.

The Fibonacci sequence is commonly defined by

F0=0,F1=1,Fn=Fn1+Fn2for n2,

giving

0,1,1,2,3,5,8,13,.

The ratios of consecutive positive Fibonacci numbers approach the golden ratio

φ=1+52.

This example connects recurrence, limits, algebra, geometry, and algorithm design. It also shows why a sequence may have a simple recursive rule even when its closed form is less obvious.

Datei:FB-Visual sequence of Fibonacci numbers.png

This Wikimedia Commons image visualizes ratios associated with Fibonacci numbers and their approach toward the golden ratio.


Applications and Mathematical Modelling

Sequences and series become especially useful when a process repeats.


Finance

With compound interest, a balance can grow geometrically. If an initial amount P earns a periodic rate i, then after n periods,

An=P(1+i)n.

Regular deposits or payments lead to geometric sums. For example, the future value of equal end-of-period deposits can be derived by adding terms that have earned interest for different numbers of periods. Understanding the indexing is as important as knowing the formula.


Growth, Decay, and Repeated Change

A population that changes by a fixed percentage each period can be modeled geometrically over a suitable range. Radioactive decay, depreciation, and repeated dilution are other examples. A process that changes by a fixed amount each period is modeled arithmetically instead.

When choosing a model, ask whether the change is approximately additive or multiplicative. Real data may only follow a simple sequence model over a limited time interval.


Computing and Algorithms

Recursive sequences appear naturally in algorithms. A program can generate Fibonacci numbers from earlier values, and loops often produce finite sums. Geometric series can estimate total work when the amount of data handled at each stage changes by a constant factor.

For example, if an algorithm processes n items, then n/2, then n/4, and so on, the total amount of work is related to a finite geometric series. This connection helps explain why repeated halving can remain computationally efficient.


Problem-Solving Strategy

When you meet a new sequence or series problem, use a structured process.

  1. Pattern recognition: Decide whether the terms show a constant difference, constant ratio, recurrence, or another structure.
  2. Mathematical notation: Write down the known quantities and define the index clearly.
  3. General term: Find an explicit or recursive rule when possible.
  4. Summation: If a total is required, decide whether the sum is finite or infinite and choose an appropriate formula.
  5. Convergence: For an infinite series, check whether the terms approach zero and then apply a suitable convergence test.
  6. Mathematical modelling: Interpret the result in context, including units, assumptions, and the meaning of the index.


Common Misconceptions

Sequence versus series: A sequence is a list of terms; a series is a sum of terms.

Difference versus ratio: Arithmetic patterns use repeated addition or subtraction. Geometric patterns use repeated multiplication or division.

Zero terms do not guarantee convergence: The fact that an0 is necessary for an to converge, but it is not enough by itself.

Infinite does not always mean unbounded: An infinite geometric series with |r|<1 can have a finite sum.

Indexing matters: A formula beginning at n=0 may look different from one beginning at n=1, even when the generated values are closely related.

Model formulas have assumptions: Financial, scientific, and computational models are only as appropriate as their assumptions about repeated change.


Interactive Tasks


Quiz: Test Your Knowledge

What best distinguishes a sequence from a series? (A sequence is an ordered list while a series is a sum of terms) (!A sequence must be finite while a series must be infinite) (!A sequence uses multiplication while a series uses addition) (!A sequence has no order while a series has an order)




What is the common difference of the arithmetic sequence 5, 9, 13, 17? (Four) (!Two) (!Five) (!Nine)




What is the common ratio of the geometric sequence 3, 6, 12, 24? (Two) (!Three) (!Four) (!Six)




What is the sum of the integers from 1 through 100? (Five thousand and fifty) (!Five thousand) (!Ten thousand) (!Two thousand five hundred)




What is the sum of the infinite geometric series 12 plus 6 plus 3 and so on? (Twenty four) (!Twenty one) (!Thirty six) (!The series diverges)




When does a nonzero infinite geometric series converge? (The absolute value of the common ratio is less than one) (!The common ratio is always greater than one) (!The first term is greater than the second term) (!The terms are all positive)




What can you conclude if the terms of an infinite series do not approach zero? (The series diverges) (!The series converges) (!The sum must be zero) (!The series is arithmetic)




What is a partial sum? (The sum of a finite initial block of terms) (!The difference between two consecutive terms) (!The ratio between two consecutive terms) (!The limit of the individual terms only)




How is each later Fibonacci term generated after the starting values? (By adding the two previous terms) (!By multiplying the two previous terms) (!By adding a fixed difference) (!By multiplying by a fixed ratio)




What is the main purpose of sigma notation? (To write a sum compactly) (!To prove that every series converges) (!To replace all recursive definitions) (!To show that every sequence is geometric)





Memory Game

Arithmetic sequence A pattern with a constant difference between consecutive terms
Geometric sequence A pattern with a constant ratio between consecutive nonzero terms
Partial sum The accumulated total of a finite initial block of a series
Common difference The fixed additive change in an arithmetic pattern
Common ratio The fixed multiplicative change in a geometric pattern
Convergence The property of approaching a finite limiting value
Recurrence relation A rule that defines later terms from earlier terms





Drag and Drop

Match the correct terms. Topic
Constant additive change Arithmetic sequence
Constant multiplicative change Geometric sequence
Finite accumulated total Partial sum
Approaches a finite limit Convergent behavior
Rule based on earlier terms Recursive definition




Match each description to the mathematical idea that it characterizes.


Crossword Puzzle

Sequence What ordered mathematical object lists terms by index?
Summation What process is represented compactly by capital sigma notation?
Arithmetic What type of sequence has a constant difference?
Geometric What type of sequence has a constant ratio?
Convergence What term describes approach to a finite limiting value?
Recurrence What kind of rule defines later terms from earlier terms?





LearningApps


Cloze Text

Complete the text.

A

is an ordered list of terms indexed by position. A

is formed by adding terms of a sequence. An arithmetic sequence has a constant

between consecutive terms. A geometric sequence has a constant

between consecutive nonzero terms. The finite accumulated total through a chosen index is a

. An infinite geometric series converges when the absolute value of its ratio is less than

. A necessary condition for an infinite series to converge is that its terms approach

. The Fibonacci sequence is naturally defined by a

that uses earlier terms.




Open-Ended Tasks


Easy

  1. Arithmetic pattern diary: Find an everyday situation that changes by an approximately constant amount, record at least six stages, represent the values as an arithmetic sequence, and explain the limits of your model.
  2. Geometric growth poster: Create a one-page poster that compares repeated percentage growth with repeated fixed growth using your own numerical example, formulas, and a graph.
  3. Sequence photo hunt: Photograph or draw three visual patterns that suggest sequences, label the first several terms you choose to measure, and explain whether each pattern is arithmetic, geometric, or neither.
  4. Sigma notation translation: Write five finite sums in expanded form and sigma notation, then exchange them with a partner and check whether the bounds and summands generate the intended terms.


Standard

  1. Savings plan model: Design a realistic regular-savings scenario, derive the relevant geometric sum rather than quoting a formula only, and explain how the result changes when the interest rate or number of deposits changes.
  2. Recursive coding project: Write a short program or spreadsheet that generates a recursively defined sequence, test it on at least two starting conditions, and describe how the output changes.
  3. Convergence experiment: Calculate and graph the first several partial sums of one convergent geometric series and the harmonic series, then compare what the graphs suggest about long-term behavior.
  4. Interview on repeated change: Interview someone who works with finance, computing, science, engineering, or logistics about a process involving repeated change, then translate one part of the explanation into a sequence or series model.


Advanced

  1. Convergence test investigation: Choose four infinite series of different types, justify an appropriate convergence test for each, and explain why at least one tempting but inappropriate test would fail to decide the case.
  2. Fibonacci ratio study: Compute ratios of consecutive Fibonacci numbers, graph their approach to the golden ratio, and write a mathematical explanation connecting the recurrence to the observed limiting behavior.
  3. Algorithmic series analysis: Analyze an algorithm that repeatedly halves or multiplies a problem size, express its accumulated work as a finite geometric series, and compare the exact sum with an asymptotic estimate.
  4. Mathematical explainer video: Produce a three-to-five-minute video that proves either the finite arithmetic-sum formula or the finite geometric-sum formula in two different ways, including one visual argument and one algebraic argument.



Learning Assessment

  1. Model selection assessment: Given several real or simulated data sets, decide whether an arithmetic, geometric, recursive, or other model is most appropriate, justify the choice, and identify where the model is likely to break down.
  2. Formula derivation assessment: Derive both the arithmetic and geometric finite-sum formulas from first principles and explain the key structural idea that makes each derivation work.
  3. Convergence reasoning assessment: Compare three infinite series whose terms all approach zero and determine which conclusions are justified, explicitly distinguishing the term test from tests that can establish convergence.
  4. Financial transfer assessment: Build and solve a compound-growth or regular-payment problem with clearly defined indexing, then interpret the mathematical answer in the original financial context.
  5. Representation assessment: Take one sequence and represent it as a list, table, graph, explicit rule, and recursive rule where possible; discuss what each representation makes easier or harder to see.
  6. Error analysis assessment: Diagnose a worked solution containing at least three mistakes involving indexing, common ratio, sigma bounds, or convergence, correct each mistake, and explain the mathematical reason for the correction.




Evidence of Learning

Knowledge: You can distinguish sequences from series, recognize arithmetic and geometric structure, interpret sigma notation, explain partial sums, and state the main convergence conditions introduced in this course.

Skills: You can derive and apply general-term and sum formulas, translate between representations, calculate and graph partial sums, select suitable convergence tests, and justify your reasoning with clear mathematical language.

Products: Strong evidence may include a correctly documented spreadsheet or program, a mathematical model based on real data, a visual proof, a short explainer video, a convergence investigation, or a portfolio of solved and annotated problems.

Transfer achievements: You can identify repeated additive or multiplicative change in unfamiliar contexts, choose an appropriate sequence or series model, test assumptions, interpret results, and communicate where a simplified model is useful or limited.




OERs on the Topic

The following English Wikipedia articles provide open reference material for deeper study of the two central ideas.



Linked Learning Areas

Sequences and series connect algebraic patterns with limits, discrete structures, mathematical modelling, and calculus. Arithmetic sequences link to linear functions; geometric sequences link to exponential functions; recursive sequences link to algorithms and discrete mathematics; and infinite series link directly to the concept of a limit. In applied work, these ideas support finance, population modelling, numerical methods, and analysis of repeated processes.


aiMOOC Projects