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

Can induction be used for $n \leq 0 $

Example question Prove that $ exp(n) = e^{n} \space \space \forall \space n \in \mathbb{Z} $ First I prove by induction for $ n \geq 0 $ and then I do the same for $ n \leq 0 $ Is this allowed ?
Gregory Peck
  • 1,717
1
vote
1 answer

Proof of geometric sum relation by mathematical induction

I understand the concept behind mathematical induction and have worked out some examples before. However, this was given as a question on a homework assignment and I'm unable to work it out. I'm not sure if I'm doing something wrong, but it becomes…
1
vote
1 answer

Using induction to show associativity on $x_1+\dots + x_n$

I want to use induction to show that the sum $x_1 + \dots + x_n$ of real numbers is defined independently of parentheses to specify order of addition. I know how to apply induction(base, assumption, k+1 applying inductive hypothesis). Here I am not…
qqqqq
  • 11
1
vote
3 answers

Use induction to prove that sum of the first $2n$ terms of the series $1^2-3^2+5^2-7^2+…$ is $-8n^2$.

Use induction to prove that sum of the first $2n$ terms of the series $1^2-3^2+5^2-7^2+…$ is $-8n^2$. I came up with the formula $\displaystyle\sum_{r=1}^{2n} (-1)^{r+1}(2r-1)^2=-8n^2$ but I got stuck proving it by induction. Should I use another…
1
vote
4 answers

Induction profe with geometrical cycle

I have an equation: $$x(n+1)=5x(n)+4\\x(0)=0$$ For my task I need to provide simple equation for $x(n)$, so I go for this method: I make some changes in equation: $$x(n+1)=5x(n)+5-1\\ x(n+1)=5(x(n)+1)-1$$ I use temp function…
1
vote
1 answer

Proof by induction - summation inequality

Prove by induction for $d,n \in \mathbb{Z}^+$ that $$ \sum_{k=0}^{n}d^{k}\geq \frac{(n+1)^{d+1}}{d+1}. $$ The base case for $n = 1$ makes $1 \geq 1$ which passes. Then I found that $$ \sum_{k=0}^{n}d^{k} \cdot d^{k+1} \geq…
Neema
  • 11
1
vote
5 answers

How can I prove this $(1 + x)^n \geq n\cdot x + 1$

A theorem says: $\forall x > -1$ and $\forall n \in \mathbb{N}$: $(1 + x)^n \geq n\cdot x + 1$ Base: $n = 0$ $(1 + x)^0 \geq 0\cdot x + 1$ $1 \geq 1$ [ok] Hypothesis: Suppose $(1 + x)^n \geq n\cdot x + 1$ is true for an arbitrary $n$. Inductive…
user168764
1
vote
2 answers

Prove by induction that $\forall n \in \mathbb{N} \cup \{0\}: \sum_{k=0}^{n} \frac{k}{2^{k}} = 2 - \frac{n + 2}{2^{n}}$

Prove by induction $\forall n \in \mathbb{N} \cup \{0\}: \sum_{k=0}^{n} \frac{k}{2^{k}} = 2 - \frac{n + 2}{2^{n}}$ Step 1: Show true for n = 0: LHS: $\frac{0}{2^{0}}$ = 0 RHS = $2 - \frac{0+2}{2^{0}}$ = 0 Step 2: Show that it is true for $n = p$, it…
MathInferno
  • 1,186
1
vote
0 answers

can anyone prove this with induction?

Suppose that we have a sequence of numbers $x_1,x_2,\ldots,x_n$ called $S$. A subsequence of $S$ is a sequence obtained by omitting some elements of $S$. An increasing subsequence of $S$ called $IS$ is $x_{i_1},x_{i_2},\ldots,x_{i_k}$ in which…
ms95
  • 175
1
vote
3 answers

Prove that $(1+2+3+\cdots + n)^2 = 1^3+2^3+3^3+\cdots + n^3$ for every $n \in \mathbb{N}$

Prove that $(1+2+3+\cdots + n)^2 = 1^3+2^3+3^3+\cdots + n^3$ for every $n \in \mathbb{N}$. Proof. We will use mathematical induction. If $n = 1$, then we have $(1)^2= 1^3 = 1$. We must show that $S_n$ implies $S_{n+1}$. Assume that for $n \in…
St Vincent
  • 3,070
1
vote
1 answer

Proof by induction of whole numbers

A sequence $X_1, X_2,\dots,X_n$ is defined by: $X_1 = 1$ and $X_{k+1} = \dfrac{X_k}{X_k + 2}$ for $k\ge1$. Show by using induction that $X_n = \dfrac1{2^n - 1}$ for all $n\ge1$. So far I've showed that $n = 1$ in $X_n$ equals $1$, so that is…
1
vote
1 answer

Help with Mathematical Induction

$$1^3+2^3+\cdots+n^3=\left[\frac{n(n+1)}2\right]^2$$ so far I have.. $$1^3+2^3+\cdots+k^3+(k+1)^3=\left[\frac{(k+1)(k+2)}2\right]^2$$ then.. $$\left[\frac{k(k+1)}2\right]^2+(k+1)^3=\left[\frac{(k+1)(k+2)}2\right]^2$$ where do I go from here so…
Lil
  • 2,529
1
vote
1 answer

Finding the fake coin from $3^n$ coins by weighing (proving by induction)

I have a problem that I need to prove by induction and I don't know how.. I have $3^n$ gold coins. All of them weigh the same except one which is lighter than each of the others. Prove that the fake gold can be found within $n$ scale weighings. Thx…
hila
  • 11
0
votes
3 answers

A Problem involving simple mathematical induction.

$6^n-5n+4$ is divisible by $5 \;$ for all natural numbers $n$. what I did is: IA $A(1):\;6^1-5\cdot1+4=5$ which is true. IS $A(n):\; 6^n+5n+4$ is also divisible by $5$. Show $A(n+1)$ is divisible by $5$ $$A(n+1): \; 6^{n+1}-5(n+1)+4=6^n\cdot…