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
The base of an blank is the first case: n=1 or n=0. It is usually proved by simply substituting in 1 or 0 and validating the result.
inductive proof
The blank of an inductive proof is the case that depends on the assumption that the previous steps are true for n and that it is true for n + 1…; or, for all n∈N, f(n) implies f(n+1). Try to think of proofs as a series of if-then statements, e.g., if x is true then it logically follows that y is true.
inductive step
To be valid, an inductive proof must have a blank and blank.
base case
at least one inductive step
Use induction to prove that a series is equal to a given formula.
Show the base case is true
Assume that if it is true for n then it must be true for n + 1.
Use induction to prove that blank are true.
inequalities
To determine if a blank is valid, verify that the given algebraic equation is equivalent to the given statement.
divisibility proof
Identify which statement is equivalent to the blank.
inductive hypothesis
Write the blank as an equivalent algebraic expression. For example, “for every positive integer n, 2 evenly divides 2n” as “for some integer m, 2m=2k”.
inductive hypothesis