Texas A&M University-Corpus Christi / Dept. of Computing and
Mathematical Sciences
MATH 2305 §002 -- Discrete Mathematics I -- Spring
2003
Chapter 2 Study Questions
Section 2.1 Proof Techniques -- Name:
- Theorems about subject XXX are always tautologies and never include facts
about XXX as hypotheses.
- A counterexample to a conjecture P -> Q is a case where P is true and
Q is false.
- It is possible to write out all possible ways to trace out the lines in
a figure.
- Direct proofs are always written as formal proofs in predicate logic.
- ‘If and only if’ requires two proofs.
- In a proof by contradiction, you may assume both the original hypothesis
and the negation of the conclusion.
Section 2.2 Induction -- Name:
- Anyone who reaches the first rung of a ladder can reach rungs that are arbitrarily
high.
- Induction can be used to prove something true for all integers greater than
or equal to some given value.
- There are four steps necessary for a proof using the first principle of
induction.
- In an induction proof, you must prove P(k+1) is true.
- The integer 2^240 –1 is divisible by 3.
- The inequality n^2 > 3n is true for all positive integers, n.
- The second principle of induction applies when the k+1 case depends on cases
further back than k.
Section 2.4 Recursion-Sequences and Objects -- Name:
- A sequence is a list of objects in some order.
- The Fibonacci sequence was introduced by a 14th century Spanish merchant.
- The set of ancestors of James can be defined recursively.
- An alphabet can have two letters.
- "Palindrome" is a palindrome.
- Exponentiation, but not multiplication of integers, can be defined recursively.
Section 2.4 Recursion-Algorithms and Solution of Relations -- Name:
- (See page 11) Implementing an algorithm requires skill and can go on forever.
- A recursive algorithm invokes itself with the same or larger input values.
- Recursive versions of algorithms are generally shorter than iterative versions
of the same algorithm.
- Using a closed form solution to an recurrence relation still requires using
the recurrence relation.
- Expand, guess and verify is the only approach to solving recurrence relations.