Problem_Set_5
Problem_Set_5
Problem Set 5
Jane Marple
Due Monday, October 28th, 2024
Assignment Instructions
• These are to be written up in LATEX and turned in on Gradescope.
• Click here to duplicate this .tex file in Overleaf .
• Write your solutions inside the solution environment.
• You are always encouraged to talk problems through with your peers and your instructor, but your
write up should be done independently.
Statement on generative AI
In this and other mathematics courses, you are expected to construct clear and concise mathematical argu-
ments based on statements proven in our text and class notes. Large language models such as ChatGPT
are unable to produce this kind of solution. They also frequently generate circular logic and outright false
results.
You may use AI to summarise content, generate study plans, create problems, or do other study-related
activities. You may not ask a chatbot to solve your quiz or homework problems, or do any assessment-related
activities.
You may use AI tools to edit your grammar and punctuation, but remember that mathematical English
is not the same as academic English in other disciplines.
1
Problem 1
Prove the following statement by contrapositive: For all n ∈ N, if 2n < n!, then n > 3.
The proposition to be proved in the question is ∀n ∈ N2n < n! → n > 3. We prove the contrapositive
of the statement. ∀n ∈ Nn ≤ 3 → 2n ≥ n!. This is simple. If n = 0 then 20 = 1 ≥ 0! = 1. If n = 1,
then 21 = 2 ≥ 1! = 1. If n = 2, then 22 = 4 ≥ 2! = 2.If n = 3, then 23 = 8 ≥ 3! = 6. Therefore
∀n ∈ Nn ≤ 3 → 2n ≥ n!.
2
Problem 2
Prove the following statement by contrapositive: For all a, b ∈ Z, if a2 b2 − 2b is odd, then a and b are odd.
We prove the contrapositive of the statement, (a is even) ∨ (b is even) → a2 (b2 − 2b) is even.
There are 3 situations.
1. Suppose that a is even and b is odd. Then there exist an integer x such that a = 2x. Then
3
Problem 3
Prove the following statement by contradiction: Let A, B and C be sets. If A ⊆ B and B ∩ C = ∅, then
A ∩ C = ∅.
4
Problem 4
Prove the following statement by contradiction: Let x, y ∈ Z. Then x2 − 4y − 3 ̸= 0.
5
Problem 5
Prove the following statement by smallest counterexample: Let n ∈ N. If n ≥ 1, then 4 | (5n − 1).
Assume that the smallest integer for which this proposition does not hold is n = k (the proposition holds
for n = 1, so k must be greater than 1). Therefore, k − 1 would satisfy the proposition. Using the following
transformation:
Because 4 | 5k−1 − 1, we can see that 4 | 5k − 1. This leads to a contradiction. Thus, the proposition we
wanted to prove is true.
6
Problem 6
The following is a “proof” of a false claim.
Claim (false). Let n ∈ N. Then
2n = 0. (1)
2x = 2 (i + j)
= 2i + 2j
= 0.
This contradicts the assumption that x is a counterexample to (1). Therefore, (1) holds for all n ∈ N.
Find the logic error in this proof. That is, find the the part of the proof that does not follow and allows
for the false contradiction. Do not say “the proof is wrong because the claim is false”.
He claims that for natural number x ̸= 0, there must exist two natural numbers i and j that are less
than x such that x = i + j. However, this statement is incorrect because, for x = 1, there do not exist such
integers. The smallest natural number for which the proposition does not hold is exactly x = 1.
7
Problem 7
2n
Let n ∈ N. Use induction to prove that < 22n−2 for all n ≥ 5.
n
8
Problem 8
Let n ∈ Z. Use induction to prove that 3 | n3 + 2n .
Note: we want to prove the xlaim for all integers, not just natural numbers.
3 | n3 + 2n = k 3 + 2k.
it follows that:
3 | (k + 1)3 + 2(k + 1) and 3 | (k − 1)3 + 2(k − 1).
Let A = {n ∈ Z : 3 | (n3 + 2n)}, then 0 ∈ A and k ∈ A → k + 1 ∈ A,k ∈ A → k − 1 ∈ A thus A = Z.
Therefore, ∀n ∈ Z, 3 | (n3 + 2n).