SeriesExpected Educational ResultsBloom’s TaxonomySeriesDefinition: Infinite Series (or Series)Partial Sums of a SeriesDefinition: Partial Sum of a Series,
Author: John J Weber III, PhD Corresponding Textbook Sections:
Section 11.2 – Series
Objective 19–01: I can explain the difference between a series and a sequence.
Objective 19–02: I can classify a series as geometric,
Objective 19–03: I can explain what it means for a series to converge and diverge.
Objective 19–04: I can explain why
Objective 19–05: I can use the appropriate Series Convergence Test to determine if a series converges or diverges.
Objective 19–06: I can compute the interval on which a power series converges.
Objective 19–07: I can compute the sum of a convergent geometric series.
Objective 19–08: I can compute the sum of a telescoping series.
Objective 19–09: I can use a geometric series to rewrite a repeating decimal as a rational number.
A modern version of Bloom’s Taxonomy is included here to recognize various different levels of understanding and to encourage you to work towards higher-order understanding (those at the top of the pyramid). All Objectives, Investigations, Activities, etc. are color-coded with the level of understanding.

The sum of all the terms of an infinite sequence, denoted
In other words,
Compute the first three partial sums, i.e.,
DESMOS
Mathematica
NOTE: The use of technology in this activity is to compute partial sums. On Assessments, you may use technology to compute partial sums without showing work.
x1(* Investigation 03-1 *)2(* Find first three partial sums of 1/(n+1), N>=0 *)3
4(* First partial sum *)5Sum[1/(n+1),{n,0,0}]6
7(* Second partial sum *)8Sum[1/(n+1),{n,0,1}]9
10(* Third partial sum *)11Sum[1/(n+1),{n,0,2}]12
13(* For a decimal approximation of partial sum *)14Sum[1/(n+1),{n,0,2}]//NWarnings:
Be very careful with the syntax. Syntax is the set of rules on how to write computer code. Every software program has its own unique syntax. Some basic Mathematica syntax is located at: http://www.jjw3.com/TECH_Common_Functions.pdf.
Sum[ ] has two arguments:
The general
For help on using the Sum[ ] function:
In Mathematica, execute the code:
Click on
Click on local
Read how to use the Sum[ ] function – you will be able to copy-paste code.
You may need parens,
Remember, correct Mathematica code will be all black except for variables.
To execute code (including comment codes), press and hold the SHIFT key and press the ENTER key.
A series is convergent if the sequence of partial sums,
NOTE: Using partial sums to determine if a series is convergent is algebraically-intense and time-consuming. Thus, we will use generalized rules, called convergence tests, to determine convergence of series.
A series is divergent if the sequence of partial sums,
At this time, you should be able to complete the following assignments:
Section 11.2: # 11, 15.
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License [http://creativecommons.org/licenses/by-nc-sa/4.0/].
Created: Wednesday, 27 October 2021 - 06:14 (EDT)