Chapter 5 - Sequences, mathematical induction, and recursion

0.0(0)
studied byStudied by 0 people
full-widthCall with Kai
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/26

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

27 Terms

1
New cards
Sequence

A function whose domain is either all the integers between two given integers or all the integers greater than or equal to a given integer. Represented as a set of elements written in a row (am, am+1, am+2, ..., an).

2
New cards

each individual element ak

Term ("a sub k")
3
New cards

The k in ak

Subscript or index
4
New cards
Infinite sequence
A sequence that continues indefinitely, without a final term or limit.
5
New cards
Explicit formula (or general formula)

A rule that shows how the values of ak depend on k.

6
New cards
term image
The summation from k equals m to n of a-sub-k
7
New cards
The summation from k equals m to n of a-sub-k

The sum of all the terms am, am+1, am+2, ..., an.

8
New cards
The expanded form of a sum

am + am+1 + am+2, ... + an.

9
New cards
<p>What are k, m, and n?</p>

What are k, m, and n?

k is the index, m is the lower limit, n is the upper limit.
10
New cards
term image

the product from k equals m to n of a-sub-k (if m and n are integers and m ≤ n).

11
New cards

The product from k equals m to n of a-sub-k

The product of all the terms am, am+1, am+2, ... , an.

12
New cards
<p>We write </p>

We write

am * am+1 * am+2 * ...* an

13
New cards

Recursive definition for the product notation

knowt flashcard image
14
New cards
n factorial
n! (n is a positive integer)
15
New cards
0!
1
16
New cards
“n choose r” and represents the number of subsets of size r that can be chosen from a set with n elements (let n and r be integers with 0 ≤ r ≤ n).
17
New cards
Formula for computing
18
New cards
Principle of Mathematical Induction
Suppose the following two statements are true: P(a) is true and for every integer k ≥ a, if P(k) is true then P(k + 1) is true. Then the statement for every integer n ≥ a, P(n) is true.
19
New cards
Closed form
If a sum with a variable number of terms is shown to equal an expression that does not contain either an ellipsis or a summation symbol.
20
New cards
Geometric sequence
An ordered set of numbers where each term after the first is found by multiplying the previous term by a fixed, non-zero number called the common ratio.
21
New cards
A recurrence relation for a sequence a0, a1, a2, ...
A formula that relates each
22
New cards
term ak to certain of its predecessors ak−1, ak−2, ... , ak−i, where i is an integer with k - i ≥ 0.
23
New cards
Initial conditions
The starting value(s) for a sequence.
24
New cards

The summation from i = 1 to n of the ai

knowt flashcard image
25
New cards

The product from i = 1 to n of the ai

knowt flashcard image
26
New cards
Iteration
The process of repeatedly applying a function or algorithm, where the output of one step becomes the input for the next, until a specific condition is met.
27
New cards
Arithmetic sequence
A sequence of numbers where each term is formed by adding a constant value, called the common difference, to the preceding term.