Unit 3 Flashcards
Blank is a method that finds new values using previous values.
Recursion
To denote the nth term you write blank.
a base n
A blank is an equation that expresses a new term using previous terms. To write the equation you need two pieces of information: the initial terms and a rule defining the new term based on the previous term.
recurrence relation
The initial terms of the sequence are often notated blank or blank.
a base 0 or a base 1
Recursion is a method that finds new values using blank.
previous values
A blank is an equation that expresses a new term using previous terms. It includes the intitial terms and the rule to get a new term using only the previous term. For example, a base n = a base n-1 + 3
is the equation for the sequence {7, 10, 13, 16, 19, 22, 25, …}.
recurrence relation
Recurrence relation defining an blank
a0 = a (initial value)
an = d + an-1 for n ≥ 1 (recurrence relation)
Initial value = a. Common difference = d.
arithmetic sequence
In a blank, each number is obtained by multiplying the previous number by a fixed constant.
geometric sequence
Recurrence relation defining an blank
a0 = a (initial value)
an = r⋅ an-1 for n ≥ 1 (recurrence relation)
Initial value = a. Common ratio = r.
geometric sequence
To determine if it is a geometric sequence, blank each term by the previous term and compare the quotients. If the quotients of any two consecutive terms are the same, a common ratio exists and the sequence is geometric.
divide
Terms in an arithmetic sequence change by a constant amount called the blank. To determine if it is an arithmetic sequence find the differences between each term; if the difference is constant it is an arithmetic sequence.
“common difference.”
Blank is used to express the sum of terms in a numerical sequence
Summation notation
In the summation, the variable k
is called the blank of the summation.
index
In the summation, the variable n
is the blank of the summation.
upper limit
In the summation, The variable s
is the blank
lower limit
A blank for a sum is a mathematical expression that expresses the value of the sum without summation notation.
closed form
You can use a variable to denote the lower or upper limit of a sum; however, the blank of the variable must be provided in order to evaluate the sum.
value
To change the variables in a summation:
Find the new initial index by substituting the old initial index into the substitution.
Find the new final index by substituting the old final index into the substitution.
Find the new term by solving substitution for the old variable, and substituting the result into the old term.
A blank for a sum is a mathematical expression that expresses the value of the sum without summation notation.
closed form
The two components of an inductive proof.
The blank establishes that the theorem is true for the first value in the sequence.
The blank establishes that if the theorem is true for k, then the theorem also holds for k + 1.
base case
inductive step
The principle of blank states that if the base case (for n = 1) is true and inductive step is true, then the theorem holds for all positive integers.
mathematical induction
Principle of blank
Let S(n) be a statement parameterized by a positive integer n. Then S(n) is true for all positive integers n, if:
S(1) is true (the base case).
For all k ∈ Z+, S(k) implies S(k+1) (the inductive step).
mathematical induction
The blank is a compact way to state that an infinite sequence of implications are true:
For all k ∈ Z+, S(k) implies S(k+1)
if and only if
[S(1) implies S(2)] and [S(2) implies S(3)] and [S(3) implies S(4)] and …
inductive step
In the statement “S(k) implies S(k+1)” of the inductive step, the supposition that S(k) is true is called the blank.
inductive hypothesis