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
0 answers

Strong Induction implies Regular Induction

I want to prove that strong induction implies regular induction. Is my attempt correct: Let $J\subseteq\mathbb{N}$ be a set such that $1\in J$ and $k\in J$ for all $k
Adam
  • 742
0
votes
2 answers

Show that for any positive integer $r$, $\left(r+1\right)!-r!=r\left(r!\right)$

I am stuck halfway while using mathematical induction to prove that $\left(r+1\right)!-r!=r\left(r!\right)$ I know that the first step is to prove the basis is true, therefore, I substituted r=1 into the equation, proving $1$ = $1$ therefore $LHS$ =…
user588955
0
votes
2 answers

Can anybody tell me whether or not my proof by induction is correct?

Statement, $P(n) : n^4<4^n , n≥5 $ $P(5)$ is true. And Assuming $P(k) : k^4 < 4^k$ is true for $k \in \mathbb{N}$ (Quick Question : Do I also need to mention $k≥5$ in my inductive hypothesis?) Coming back to the question, I need to prove $P(k+1) :…
William
  • 4,893
0
votes
0 answers

Polynomial and Strong Induction

Let $S_m=a^m+b^m+c^m,p=ab+bc+ca$ and $q=abc$ $$S_{m+3}=3S_{m+2}-pS_{m+1}+qS_m$$ Suppose $S_1=3, S_2=5, S_3=12$. I am wondering how to use strong induction, if possible, to prove the above statement?
user82479
  • 71
  • 1
0
votes
3 answers

Prove by induction $\sum_{k=1}^n k^3 =( \sum_{k=1}^n k )^2 $

Can anyone show me how to prove this example by induction? I can't figure it out. $$\sum_{k=1}^n k^3 =\left( \sum_{k=1}^n k \right)^2 $$
I. doe
  • 11
0
votes
1 answer

Inductive Definition on the set of strings

Given: $$ \Sigma = \{ a, b, c \}. $$ I am trying to give the inductive definitions of both the set of strings $\Sigma^*$ and $\Sigma^+$. Thank you.
Garee
  • 161
0
votes
2 answers

Prove by induction that $n^3 = (n^2-n+1)+(n^2-n+3)+...+(n^2+n-3)+(n^2+n-1)$

I have an exercise that asks me to prove that $n^3 = (n^2-n+1)+(n^2-n+3)+...+(n^2+n-3)+(n^2+n-1)$ by induction, but I got stuck: I don't know what I can do. Could you please give me some hints? Examples: $$1^3=1 \,, 2^3 = 3+5 \,, 3^3=7+9+11…
LuxGiammi
  • 511
0
votes
3 answers

Mathematical Induction and Recursion

Consider the following two-player game: starting with the single number 123, two players alternately subtract numbers from the set {1; 2; 3} from this value. The player who first gets this sum to 0 wins. If you want to win this game, should you go…
Joker
  • 49
0
votes
1 answer

How do you determine how many cases to consider in base case of strong induction?

I'm trying to learn to strong induction and I'm beginning understand the steps. However I can't seem to understand why some examples have multiple base cases. What do you look for while choosing base cases? I read it almost everywhere that strong…
William
  • 4,893
0
votes
2 answers

Can anybody explain me the logic of the inductive step of strong induction?

To understand the strong induction, I read that it is kinda "equivalent" version of weak induction. So I learnt it from google, solved some examples. And it seems to be quite intuitive to understand. However I still can't understand the logic of…
William
  • 4,893
0
votes
3 answers

Prove $\sum_{i=0}^{n} a^i = \frac{a^{n+1} - 1}{a - 1}$ by induction

I was assigned two induction problems that I tried to solve. One was easy to solve using the following method, but one got me stuck. Problem: Prove by induction on $n \geq 1$ that for every $a \neq 1$, $\sum_{i=0}^{n} a^i = \frac{a^{n+1} - 1}{a -…
SSumner
  • 636
  • 1
  • 5
  • 20
0
votes
1 answer

Using Mathematical Induction To Prove

I am having trouble proving the following using Mathematical Induction. 1,3,5...(2n-1)∕2,4,6...(2n) ≥ 1∕2n I cannot seem to understand using Induction to prove a fractional expression such as the one above. I assume the proof for the base case of…
0
votes
2 answers

How to simplify the following summation?

I doing some derivation for my work. In some textbook, I got the following simplification, $x = \sum_{k=0}^{L-1}\frac{1}{2p+2(k+1)}$ to $x=\frac{2^{L-1}\sum_{k=0}^{L-1}\frac{L!}{k+1}}{\prod_{k=0}^{L-1}2p+2(k+1)}$, where $p$ is constant. I could get…
user470730
0
votes
4 answers

Proof the sum of odd cubes using induction

I have $1^3 + 3^3 + ... + (2n + 1)^3 = (n+1)^2(2n^2 + 4n + 1)$ So, if $A_r = (r + 1)^2(2r^2 + 4r + 1)$ is true, then $$A_{r+1} = (r+1)^2(2r^2 + 4r + 1) + (2r + 3)^3$$ And now I can't transform the expression above into the form $$(r + 2)^2(2(r +…
0
votes
0 answers

How to show $a^nb^{2n} = (ab^2)^n$ inductively.

The solution hint given is to prove inductively, by noting that : $$ a^{n+1}b^{2n+2} = ab^2(a^nb^{2n}) = ab^2(a^nb^{3n} -1)$$ But, am unable to use the hint given, as am unable to see how $$ab^2(a^nb^{2n}) = ab^2(a^nb^{3n} -1)$$ I can only solve…
jiten
  • 4,524