14 - More examples of induction

In class practice

Proposition. For all integers n10 we have 2n>n3.

Scratch work:
Assume 2k>k3 for some kZ, k10.
Want to show 2k+1>(k+1)3

2k+1=2(2k)>2(k3)=k3+k3

Also:

(k+1)3=k3+3k2+3k+1

HW 14

![[induction 1.pdf]]



Ben Finch

E 14.4
Proof.
Let P(n) be the open statement:
For any nN with n2, if P1,...,Pn are statements, then $$¬(P_1 ∧···∧P_n)≡(¬P_1)∨···∨(¬P_n)$$
Base Case: (n=2) ¬(P1 ∧ P2) is equivalent to (¬P1 ∨ ¬P2) based on DeMorgan's law.

Inductive step:
Assume that the statement is true for n=k.

We aim to prove the statement is true for n=k+1.

Consider ¬(P1P2...PkPk+1).

We can rewrite this as ¬(P1P2...Pk)Pk+1.

Applying DeMorgan's law to the rewritten expression gives us ¬(P1P2...Pk)¬Pk+1.

By the induction hypothesis, we know that ¬(P_1 ∧ P_2 ∧...∧ P_k) is equivalent to ¬P1¬P2...¬Pk.

Substituting this into the expression gives us ¬P1¬P2...¬Pk¬Pk+1.

Thus for any nN with n2, if P1,...,Pn are statements, then ¬(P1···Pn)(¬P1)···(¬Pn).

E 14.5

Proof.

Base case: let n=1. For any x1R,

|i=11xi|=|x1|=i=11|xi|

So the proposition holds for n=1.

Inductive step.
We assume that the proposition holds for some n=k:

|i=1kxi|i=1k|xi|

We need to prove that the proposition holds for n=k+1:

|i=1k+1xi|=|i=1kxi+xk+1|

According to the triangle inequality, we know that:

|i=1kxi+xk+1||i=1kxi|+|xk+1|

By the induction hypothesis, we can replace |i=1kxi| with i=1k|xi|:

|i=1kxi|+|xk+1|i=1k|xi|+|xk+1|=i=1k+1|xi|

Therefore, by the principle of mathematical induction, the proposition holds for all nN.

E 14.6
a) 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610
b) Proof.
Base Case:
Begin with the base case where n=1. For this case, the formula becomes $$\sum_{i=1}^{1} F_{i}= F_{1+2}-1$$Using the definitions of F1 and F3, we get F1=F31, which simplifies to 1=21=1. Thus, the formula holds for the base case.

Inductive Step:
Assume the formula i=1kFi=Fk+21 to be true for some positive integer k.

We aim to prove i=1k+1Fi=F(k+1)+21.

We start by expanding the left hand side:

i=1k+1Fi=Fk+1+i=1kFi

Next, we apply the induction assumption:

=Fk+1+(Fk+21)

Simplify the equation:

=Fk+2+Fk+11

By the definition, we know that Fk+3=Fk+2+Fk+1, so we replace these terms:

=Fk+31

Therefore, by mathematical induction, the formula is true.

c) Proof.

Let P(n) be the open statement that for each nN,

i=1nFi2=FnFn+1

Base Case (n = 1): We see that P(1) is true:

i=11F12=F1(F2)1=111=1

Inductive step
Assume that for some n=k,

i=1kFi2=FkFk+1

We aim to prove that the property holds for n=k+1:

i=1k+1Fi2=Fk+1Fk+2

We can write the left-hand side as

i=1k+1Fi2=i=1kFi2+Fk+12

By the induction hypothesis, we can replace i=1kFi2 with FkFk+1, which gives us

i=1k+1Fi2=FkFk+1+Fk+12

This expression can be rewritten as

i=1k+1Fi2=Fk+1(Fk+Fk+1)

But we know from the Fibonacci sequence property Fk+2=Fk+Fk+1, so we can replace (Fk+Fk+1) with Fk+2.

This gives us

i=1k+1Fi2=Fk+1Fk+2

Hence, the property holds for n=k+1 if it holds for n=k. Thus for each nN $$\sum_{i=1}^{n}F_i^{2}= F_nF_{n+1}$$

E 14.7

Let the open sentence P(n) be:

Fn>n2 and Fn1>(n1)2.

We want to prove P(n) is true for all n14. This would imply that Fn>n2 for all n13.

  1. Base Case:

Let n=14. Thus F14=377>142=196 and F13=233>132=169. Thus, P(14) is true.

  1. Inductive Step:

Assume that P(k) is true for some k14, kN. This means that Fk>k2 and Fk1>(k1)2.

We aim to prove that P(k+1) is true, that is, Fk+1>(k+1)2 and Fk>k2.

From the definition of Fibonacci numbers, we know that:

Fk+1=Fk+Fk1

By the inductive hypothesis, we know Fk>k2 and Fk1>(k1)2. Adding these inequalities we get:

Fk+1=Fk+Fk1>k2+(k1)2

This simplifies to:

Fk+1>2k22k+1=(k1)2+(k+1)2

Since for k14, (k1)2+(k+1)2>(k+1)2, it follows that:

Fk+1>(k+1)2

This is what we needed to prove. Therefore, the proposition P(k + 1) is true, and the inductive step is complete.

Hence, by mathematical induction, the proposition P(n) is true for all n14. As a result, Fn>n2 for all n13.