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

Proof that between two natural numbers there is no natural number

I have to prove that between two natural numbers $n$ and $n+1$ there does not exist a natural number by using induction. Any hints? Edit: What would the best way to define $s(n)$?
0
votes
1 answer

Stamp Induction problem

Suppose you have an unlimited supply of 5-cent postage stamps and 7-cent postage stamps. Show that you can make any amount of postage which is 24 cents or larger using only these stamps.
JJMin
  • 21
0
votes
1 answer

How to find numbers (by induction) that make a sum big enough

I have the sum $$A_n:=\sum_{k=n+1}^{2n}\frac1k $$ Now I have to find all numbers $n\in \mathbb{N},$ for which $A_n >\frac35$ How do I start the proof? I assume I have to use induction, but I have only done basic induction proofs to prove…
0
votes
2 answers

A problem on Mathematical Induction

Prove that for each odd natural number $n\geq3$ $(1+\frac{1}{2})(1-\frac{1}{3})(1+\frac{1}{4})............(1+\frac{(-1)^n}{n})=1$ By mathematical Induction we write the given series is $\Pi_{k=2}^n (1+\frac{(-1)^n)}{n})=1$ for n=3 ,…
Murali
  • 21
0
votes
2 answers

Proving an inequality by induction

I'm trying to prove that $5^n-3^n>5^{n-1}$ I tried using mathematical induction and got stuck at the induction step. First, I started by rearranging the inequality as: $4 \times5^n>5\times3^n$ Try $n=1$: $$20>15$$ Therefore true for $n=1$ Assume…
aL_eX
  • 466
0
votes
3 answers

Prove by induction. $n \in \mathbb N$.

$$\sum_{i=0}^{n-1} ar^i = \frac{a(r^n-1)}{r-1}$$ for $r \in \mathbb R, r \ne 1, n \ge 1 $ i. Show true for $n=1$ $$\frac{a(r^1-1)}{r-1} = a$$ ii. I am stuck on how to do the second part of the proof, and the logic behind it.
JWigz
  • 87
0
votes
1 answer

Question about induction

Prove by induction $w_k = w_{k−2} + k$, for all integers $k \ge 3, w_1 = 1,w_2 = 2$ has an explicit formula $$ w_n = \begin{cases} \frac{(n+1)^2}{4}, & \text{if $n$ is odd} \\ \frac n2(\frac n2 + 1), & \text{if $n$ is…
Wyu
  • 9
0
votes
2 answers

Prove by induction $\sum_{i=1}^{n} \frac{1}{\sqrt{i}}$ $< 2\sqrt{n}$ for $n \geq 1$

So far I have this. I have a feeling I'm getting off track with the last two steps. We want to prove $\sum_{i=1}^{n} \frac{1}{\sqrt{i}}$ $< 2\sqrt{n}$ for $n \geq 1$ Base Case Prove P(1): $\sum_{i=1}^{1} \frac{1}{\sqrt{1}}$ $< 2\sqrt{1}$. We get $1…
user374535
0
votes
1 answer

Using Induction prove the given statement;

By using the Principle Of Mathematical Induction prove that:$1^3+2^3+3^3+.......+n^3=[\frac {n(n+1)}{2}]^2$. My Approach: Let, $P(n): 1^3+2^3+3^3+.....+k^3=[\frac {n(n+1)}{2}]^2$. Base case $(n=1)$ $$L.H.S=1$$ $$R.H.S=[\frac…
pi-π
  • 7,416
0
votes
3 answers

Use Mathematical Induction to prove 6 divides $n(n+1)(2n+1)$

By using the principle of Mathematical Induction, prove that: $P(n)=n(n+1)(2n+1)$ is divisible by $6$. My Attempt: Base Case: $n=1$ $$P(1)=1(1+1)(2\times 1+1)$$ $$=2\times 3$$ $$=6$$, Which is divisible by $6$. $P(1)$ is divisible by $6$ Induction…
pi-π
  • 7,416
0
votes
1 answer

A plane is divides into regions by drawing a finite no. of straight lines...

Question: A plane is divides into regions by drawing a finite no. of straight lines. Show that it is possible to color each of these regions red or green in such a way that no two adjacent regions have the same color. This question has left…
oshhh
  • 2,632
0
votes
5 answers

How to show that two recursive formulas are the same?

Please see edit at the bottom of this post. I need some help. I do not really understand what I am supposed to do. Does it suffice to list some of the numbers produced by the recursive formulas and compare them? Show that the number sequence that…
0
votes
1 answer

What does it mean when there is a number to the left of a summation sigma?

Trying to read Simple Wikipedia's Mathematical Induction article: https://simple.wikipedia.org/wiki/Mathematical_induction In many of the images, like this…
user156964
  • 23
  • 6
0
votes
1 answer

Hare induction problem

Jovian hares are hermaphrodite. Each mature Jovian hare produces one leveret during each breeding cycle. Each leveret takes two breeding cycles to mature into a fully-grown hare, and then lives for ever. Starting with a single newly-born Jovian…
Dylan
  • 179
0
votes
1 answer

How to show that $\frac{(n+1)^3 + 6(n+1)^2 + 11(n+1)}{3}=\frac{n^3 + 6n^2 + 11n}{3} + (n+2)(n+3) $

I was trying to do some induction proofs but got stuck when I needed to show that $$\frac{(n+1)^3 + 6(n+1)^2 + 11(n+1)}{3}$$ and $$\frac{n^3 + 6n^2 + 11n}{3} + ((n+2)(n+3)) $$ are in fact equal. Quite new to this stuff and I could not find a simple…