SequencesExpected Educational ResultsBloom’s TaxonomySequencesIncreasing, Decreasing, and Monotonic SequencesDefinition: Increasing SequenceDefinition: Decreasing SequenceDefinition: Monotonic SequenceInvestigation 08Activity 09Check Your WorkUse Technology to Verify if Sequences are Increasing or DecreasingCC BY-NC-SA 4.0
Author: John J Weber III, PhD Corresponding Textbook Sections:
Section 11.1 – Sequences
Objective 18–01: I can classify a sequence as arithmetic, geometric, or fibonacci.
Objective 18–02: I can explain what it mean for a sequence to converge and diverge.
Objective 18–03: I can analytically (i.e., non-graphically and non-numerically) determine if a sequence converges or diverges.
Objective 18–04: I can analytically (i.e., non-graphically and non-numerically) determine if a sequence is increasing or decreasing.
Objective 18–05: I can analytically (i.e., non-graphically and non-numerically) determine if a sequence is bounded.
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.

A sequence increases if
A sequence decreases if
A sequence is monotonic if the sequence is increasing or decreasing for all
Determine if the following sequences increasing, decreasing, or not monotonic. Explain.
Graphically verify your answers to Investigation 08 using the embedded DESMOS graph below:
NOTE: The use of technology in this activity is to verify intervals of increase or decrease of sequences. On Assessments, you must show work on assessments to receive credit for all Calculus II work.
Mathematica
x1(* Example: a_n = (n+1)/(3+2n), n>=0 *)2(* Determine if a_n increases or decreases *)3
4D[(n+1)/(3+2n), n]5
6(* To determine the interval on which a_n increases, *)7(* i.e., when the derivative is positive and n>=0 *)8
9Reduce[{D[(n + 1)/(3 + 2 n), n] >= 0, n >= 0}, n]10
11(* To determine the interval on which a_n decreases, *)12(* i.e., when the derivative is negative and n>=0 *)13
14Reduce[{D[(n + 1)/(3 + 2 n), n] <= 0, n >= 0}, n]Warnings:
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.
Reduce[ ] has two arguments:
The derivative of the general
The independent variable,
For help on using the Reduce[ ] function:
In Mathematica, execute the code:
Click on
Click on local
Read how to use the Reduce[ ] 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.
Since Mathematica returns FALSE for the last line of code, then the sequence never decreases.
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: Tuesday, 10 November 2020 6:38 EDT Last Modified: Wednesday, 27 October 2021 - 07:46 (EDT)