I have trouble with the understanding of mathematical induction concerning inequalities. For example, the question is: Prove by mathematical induction that $ n ^ 2 <2 ^ n $ if $ \forall n \in {N}$ and $n \geq 5$.
1) The base of induction: for n = 5, we have that $ 5^2 <2^5 $ followed by 25 <32, which is true.
2) The inductive step: assume that it is true for n + 1, then we have the following: $$ (n + 1) ^ 2 <2 ^ {n + 1} $$ $$ n ^ 2 + 2n + 1 <2 ^ n \cdot 2 $$ $$ n ^ 2 + 2n + 1 <n ^ 2 \cdot 2 $$this is a case of "replacing" $ 2 ^ n $ from the second row with the $ n ^ 2 $ from the inductive hypothesis ($ n ^ 2 $ <$ 2 ^ n $). When we simplify, we get the expression $2n + 1 <n^2$, so if we check with some $n$ that is greater than or equal to 5, for example, $ n = 5 $, we get that $ 2 \cdot5 + 1 <5 ^ 2 $, and the next line is $ 11 <25 $, which is true.
I do not understand that "replacement" of $ 2 ^ n $ for $ n ^ 2 $, why is it possible? It is clear that $ n ^ 2 $ is less than $ 2 ^ n $, so we are essentially claiming that something on the right side of the $<$ sign is still higher than the expression on the left side of that $<$ sign, although it is clear that the value of the right side is now lower than it was before this "replacement" , because $n^2 \cdot 2$ is less then $ 2 ^ n \cdot 2 $. How can we still claim something like this, on what basis?
If in the second case, instead of $ 2 ^ n $ from the second row we place $ n ^ 2 $, we get $ 2 ^ n + 2n + 1 <2 ^ n \cdot 2 $, so when we simplify and test with $n=5$, we again get an accurate statement: $ 21.5 <32 $. Here we have inserted a greater value on the left side ($ 2 ^ n $ is greater than $ n ^ 2 $) and we continue to claim that the expression on the left is less than the expression on the right, although it is true, I believe that there are some cases where this "replacement" will not be possible or am I wrong?
It was only ill explained. What is meant is this, in my opinion:
We have to prove $(n+1)^2=n^2+2n+1<2^{n+1}=2^n\cdot 2$. As, by the inductive hypothesis, $n^2<2^n$, it is enough to prove $$n^2+2n+1<2n^2\iff n^2-2n=n(n-2)>1.$$ This is true for $n\ge 5$ since $n(n-2)\ge 5\cdot 3=15$.