Questions tagged [induction]

For questions about mathematical induction, a method of mathematical proof. Mathematical induction generally proceeds by proving a statement for some integer, called the base case, and then proving that if it holds for one integer then it holds for the next integer. This tag is primarily meant for questions about induction over natural numbers but is also appropriate for other kinds of induction such as transfinite, structural, double, backwards, etc.

Mathematical induction is a form of deductive reasoning. Its most common use is induction over well-ordered sets, such as natural numbers or ordinals. While induction can be expanded to class relations which are well-founded, this tag is aimed mostly at questions about induction over natural numbers.

In general use, induction means inference from the particular to the general. This is used in terms such as inductive reasoning, which involves making an inference about the unknown based on some known sample. Mathematical induction is not true induction in this sense, but is rather a form of proof.

Induction over the natural numbers generally proceeds with a base case and an inductive step:

  • First prove the statement for the base case, which is usually $n=0$ or $n=1$.
  • Next, assume that the statement is true for an input $n$, and prove that it is true for the input $n+1$.

The following variant goes without a base case: Assuming the statement is true for all $n\in\mathbb N$ with $n < N$, prove that is true for $N$, too. This has to be done for all $N\in\mathbb N$.

10150 questions
0
votes
3 answers

Mathematical Proof By Induction of $1 + 2 +\dots + n = (n + 1)n/2$

Trying to prove that $1 + 2 +\dots + n = (n + 1)n/2$. I have let $n = 1$ in the basis step, which lead to $1=1$, so it is true for $n = 1$. For the induction step, I have assumed that $k\geq 1$ and let $n = k$ leading to: $$1 + 2 + . . . + k = (k +…
b20
  • 123
  • 1
  • 6
0
votes
2 answers

inductive proof for $\sum_{i=0}^{2^n} 1/(i+1) \leq n + 1$

The problem i am trying to solve is in the link above. I am a little stuck on what to do after the inductive hypothesis of the problem. I first solved the base case where n = 0. Then i assumed P(k) is true where p is the expression in the problem.…
Sam Oh
  • 5
0
votes
2 answers

Proof by strong induction

$F(0) = 0$ $F(1) = 0$ $F(n) = 1 + F(n-2)$ , when $n > 1$ Prove by strong induction that $F(n)=n$ div $2$ for $n\geq0$ $a$ div $b$ is a integer division. So $10$ div $2 = 5$, $11$ div $2 = 5$, $12$ div $2=6$ and so on. Did the base cases and they…
0
votes
1 answer

Solving problem about disjunction, conjunction, implication, and equivalence, by induction

How to solve with induction? For all finite sets $I \neq \emptyset$. $ \left( \bigvee_{i \in I} P_i \right) \Rightarrow Q \equiv \bigwedge_{i \in I} (P_i \Rightarrow Q)$
user60862
  • 503
0
votes
2 answers

Prove by induction a product inequality...

Prove by induction that for every natural number is verified that: $$ \prod_{i=1}^n \frac{2i}{2i + 3} < \frac{2}{(n+1)\sqrt{2n+4}} $$ I get in trouble when applying the hypothesis to proof for $n+1$, it looks like I'm getting to nowhere. Thank you.
Tt Nach00
  • 69
  • 6
0
votes
0 answers

Help on proving inductive conclusion for a summation identity

I am running into trouble for proving the inductive conclusion for the proof of the following statement: For all non-negative integers $n$, $$\sum_{r=0}^n r\binom{n}{r}=\frac{1}{2}n\sum_{r=0}^n \binom{n}{r}$$ Induction on n Base case $(n=0)$:…
0
votes
4 answers

Mathematical induction proving the final step

Use mathematical induction to prove that $$ \frac12 + \frac16 + \ldots + \frac{1}{n(n+1)} = 1 - \frac{1}{n+1} $$ I am unsure about the prove n+1 step! I let $$ \frac12 + \frac16 + \ldots + \frac{1}{n(n+1)} = 1 - \frac{1}{n+1} $$ So I had $1 -…
Sue
  • 119
  • 7
0
votes
2 answers

Induction Proof ${n}\geq 3, (1+\frac{1}{n})^{n}\lt n$

For each natural number $n$ with ${n}\geq 3, (1+\frac{1}{n})^{n}\lt n$. So far, I've tested the claim for $n=3$, which was true. Then, I stated that I need to show that $(1+\frac{1}{n+1})^{n+1} \lt n+1$. So first, I considered that…
Claire
  • 167
0
votes
1 answer

proof of logarithms using induction

I am given that, $$ x \log_2(x) + (1-x)\log_2(1-x) \geq -1 $$ for $ 0 < x< 1$ I am supposed to show that, $$ \sum_{i=1}^{2^n}x_i \log_2 x_i \geq -n $$ where $$ \sum_{i=1}^{2^n} x_i = 1 $$ and $x_i > 0$, for all $i$. So I guess it's a job for…
PPGoodMan
  • 297
0
votes
1 answer

Math induction, how does it work?

I'm reading a book(concrete Mathematics) and it uses a lot the concept of 'Math induction'. Thought I've been reading tutorials and examples about it, I'm still unable to understand it, the last 'basic' example I was reading is(my questions are the…
Eduardo
  • 127
0
votes
1 answer

Can I prove $T(k)=T(k+1)=k$?

I'm proving algorithm to justify using inductive hypothesis. $T(k)$ is the minimum round value the number of handshaking within $N=k$ people. If $T(k-2)=T(k-1)=k-2$, can I prove about $T(k)$? I used proof by inductive hypothesis. 1) Base case,…
baeharam
  • 203
0
votes
3 answers

Stuck in my induction proof

I am at a step in my induction proof where I need to show that: $\frac14(k+1)^{2}k^{2}+(k+1)^{3}$ is equal to $\frac14(k+2)^{2}(k+1)^{2}$ Which I can't really seem to figure out how to. Can you help me out?
0
votes
2 answers

$\forall n \ge 1, \sum _{i=1}^n \frac 1 {i^2} \le 2$ mathematical induction

Prove using mathematical induction: $$\forall n \ge 1, \sum _{i=1}^n \frac 1 {i^2} \le 2$$ I have seen this problem from the note of CS70 which is Berkeley's discrete math course. This problem illustrates strengthening the induction hypothesis.…
0
votes
1 answer

Proving $1^3 + 2^3 + 3^3 + .... + n^3 = (1/4)n^4 + (1/2)n^3 + (1/4)n^2$ by induction.

so I recently had some lessons in induction and I feel pretty comfortable with it, but there is just this one exercise that I for some reason can't figure out. I got this so far: $1^3 + 2^3 + 3^3 + .... + n^3 = \frac{n^4}{4} + \frac{n^3}{2} +…
0
votes
3 answers

"Concrete Mathematics" book I don't understand radix 2 explanation for Josephus problem

I started reading the book Concrete Mathematics 2nd edition and there is a conversion I don't understand(is in page 11 of the book), it says: Powers of 2 played an important role in our nding the solution, so it's natural to look at the radix 2…
Eduardo
  • 127