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
1 answer

Dirichlet Theorem Proof by induction

Any one has any idea how to prove it? "if we put $n$ items into $n-1$ boxes then there will be a box with $2$ items" I have tried like Base case: for $n=1\implies 1$ item, $1$ box Hypothesis: for $n=k \implies k$ items , $k-1$ boxes Inductive step:…
Thanos
  • 21
0
votes
0 answers

Mathematical induction with summation and variable in exponent

I'm having some issues trying to understand a problem. I think that what makes me confused is that we have to put the k+1 in the exponent of a fraction, at the beginning of the induction step, where k=k+1. From that point on I'm not really sure how…
0
votes
1 answer

Prove $(\cos \alpha + i \sin \alpha)^n = \cos ( n \alpha ) + i \sin (n \alpha)$ by induction

$(\cosα + i\sinα)^n = \cos(nα) + i\sin(nα)$ for $n$ , $(\cosα + i\sinα)^{n+1} = \cos(nα+n) + i\sin(nα+n)$ for $n+1$, $(\cosα + i\sinα)^{n+1} = \cos(nα)\cos n - \sin(nα).\sinα + i.\sin nα.\cos n +i \cos nα\sin n$ $(\cosα + i\sinα)^{n+1} =\cos…
David
  • 103
0
votes
0 answers

Strong Induction Proof Help

I'm expected to proof by strong induction the following: Give proof (using strong induction) that every odd number is of the form 2n+1 I'm not sure how to approach this problem. Isn't this false because you can portray an odd number also as…
0
votes
2 answers

General Question about Induction

If I prove a Proposition which I assume holds for all $n \in N $ and I show the statement is true for n=0 and then I want to show it for it n+1. Can I also use that the statement is true for n-1? Or do I have to add n=1 to the base case and then say…
0
votes
1 answer

Proof by induction: Sum of binomials

Prove by induction that $$\sum_{i=0}^n\binom ni=2^n\text{ where }\binom ni=\frac{n!}{i!(n-i)!}$$ Please explain me step by step. Thank you.
Sonya
  • 1
0
votes
2 answers

Mathematical Induction Word Problem

I have $R$ represents a set of binary strings. also $y \times z$ represents the concatenation of strings $y$ and $z$. So if $y = 010$ and $z = 001$ then $y \times z = 010001$. I need to prove that for any string in $R$ of length $\geq 0$ in the form…
Hopper
  • 139
0
votes
2 answers

How to prove this property by induction?

Assume we have a function $f(x)=x^2+1$ and I iterate the function so that $f^n(x)=(f^{n-1})^2 +1$. I was able to generalize that the number of terms $n$ after some number $k$ iterations is $n=\frac{2^k+2}{2}$ I need to prove this somehow, and I…
Martynas
  • 113
0
votes
3 answers

Proof by induction for recursions

I want to proof that: $$a_i = i^2 + a_{i-1} = {i(i+1)(2i+1) \over 6}$$ $$i \in \mathbb{N_0}; a_0 = 0$$ by induction. However I get stuck on the recursiveness of $a_{i-1}$. Ideas how to build the proof without it / how to work it in ?
0
votes
1 answer

Structural Induction on WFF

For a formula α ∈ WFF we let (α) denote the number of symbols in α that are left brackets ‘(’, let v(α) the number of variable symbols, and c(α) the number of symbols that are the NOT symbol ‘¬’. For example in ((p1 → p2) ∧ ((¬p1) → p2)) we have (α)…
0
votes
1 answer

What should be the induction step in this problem?

In the following problem (should be solved using the mathematical induction method): You are given $n$ arbitrary squares. Prove that they can be divided into parts so that from the obtained parts you can make a square. I got confused when started…
0
votes
1 answer

A Walk Through Combinatorics, Chapter 2, Problem 1

I have trouble understanding the solution in the book regarding using strong induction to prove the following questions: Questions: Let p(k) be a polynomial of degree d. Prove that q(n) = $\sum_{k=1}^n p(k)$ is a polynomial of degree d+1. Prove that…
0
votes
3 answers

How do I go from the first expression to the second?

Induction proof $$\begin{align} = & (k-1)!(-1)^{k-1}(-kx^{-k-1})\\ = & k!(-1)^k x^{-(k+1)} \end{align}$$ I simply don't understand how they get from the first line to the second one. Could someone explain that to me?
0
votes
3 answers

How to prove $~a+aq+\cdots+aq^r = \dfrac{a(q^{r+1}-1)}{q-1}~$ via induction?

Prove by mathematical induction that, for $q\ne1$, and integer $r\ge 0$, $$a+aq+\cdots+aq^r = \dfrac{a(q^{r+1}-1)}{q-1} $$ Unsure where is my $~n~$ to sub my $~k+1~$ in this case, as there are $~3~$ variables. Will require a really simplified…
0
votes
1 answer

How does Mathematical Induction work?

How does mathematical induction actually work? After surfing on the internet for a while, I found the following analogy. Consider rectangular tiles (dominoes) stacked on beside the other. When we force the first tile to fall, the others begin to…
Kaushik
  • 854