Friday, April 19, 2019

How to use mathematical induction with inequalities?



I've been using mathematical induction to prove propositions like this:
1+3+5++(2n1)=n2



Which is an equality. I am, however, unable to solve inequalities. For instance, this one:



1+12+13++1nn2+1



Every time my books solves one, it seems to use a different approach, making it hard to analyze. I wonder if there is a more standard procedure for working with mathematical induction (inequalities).




There are a lot of questions related to solving this kind of problem. Like these:





Can you give me a more in depth explanation of the whole procedure?


Answer



The inequality certainly holds at n=1. We show that if it holds when n=k, then it holds when n=k+1. So we assume that for a certain number k, we have
1+12+13++1kk2+1.


We want to prove that the inequality holds when n=k+1. So we want to show that

1+12+13++1k+1k+1k+12+1.



How shall we use the induction assumption (1) to show that (2) holds? Note that the left-hand side of (2) is pretty close to the left-hand side of (1). The sum of the first k terms in (2) is just the left-hand side of 1. So the part before the 1k+1 is, by (1), k2+1.



Using more formal language, we can say that by the induction assumption,
1+12+13++1k+1k+1k2+1+1k+1.



We will be finished if we can show that
k2+1+1k+1k+12+1.


This is equivalent to showing that

k2+1+1k+1k2+12+1.

The two sides are very similar. We only need to show that
1k+112.

This is obvious, since k1.



We have proved the induction step. The base step n=1 was obvious, so we are finished.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...