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
2
votes
4 answers

Induction Proofs - Mathematics

How do I show by mathematical induction that $2$ divides $n^2 - n$ for all $n$ belonging to the set of Natural Numbers
Steven
  • 23
2
votes
4 answers

Prove that $2^n\geq2n-1$

Let $n\geq2$ with $n\in\Bbb N$. Prove that $$2^n\geq2n-1$$ I need to prove this using mathematical induction. This is what I've tried: $P(2): 2^2\geq2n-1 \\ P(k)\Rightarrow P(k+1) \\ P(k+1): 2^{k+1}\geq2k+1 \\ \begin{align} 2\cdot2^k & \geq2k -1+2…
Victor
  • 437
1
vote
5 answers

How can I solve a complicated induction exercise? (formula for sum of fourth powers)

I have an induction exercise: It is for $n \in \mathbb{N_0}$. Show: $$ \sum\limits_{k=1}^{n} k^4 = \frac 1 {30} n(n+1)(2n+1)(3n^2+3n-1) $$ As far as I understand it, you have to put in $(n+1)^4$ at the end and you have to resolve it to the old…
tonlap
  • 13
1
vote
0 answers

RE : Is greatest common divisor of two numbers really their smallest linear combination?

This is in reference to the same proof given in the post Is greatest common divisor of two numbers really their smallest linear combination? I couldn't add a comment there so I'm asking it here. I am trying to understanding the same proof but can't…
Ankit
  • 63
1
vote
3 answers

Proving by mathematical induction: $1+\frac{1}{\sqrt{2}}+\frac{1}{\sqrt{3}}+...+\frac{1}{\sqrt{n}}>2(\sqrt{n+1}-1)$

Possible Duplicate: Proof of an inequality: $\sqrt{n} < \frac{1}{\sqrt{1}} + \frac{1}{\sqrt{2}} + \cdots + \frac{1}{\sqrt{n}}$ Proving $\sum\limits_{k=1}^{n}{\frac{1}{\sqrt{k}}\ge\sqrt{n}}$ with induction I've tried to work on this equation for…
Asaf
  • 183
1
vote
3 answers

Induction proof for n > 0

Prove using induction the following: for n > 0, 1 ∙ 1! + 2 ∙ 2! + ..... + n ∙ n! = (n + 1)! - 1 I'm not very good at proving proofs with the induction method, help would be greatly appreciated
1
vote
2 answers

Prove using induction principles

$$\forall{n,a>1}:\;\sum\limits_{k=1}^{2^n-1}\frac{1}{k^a}\;\leq\left(\frac{1-2^{n(1-a)}}{1-2^{1-a}}\right)$$ For any fixed value of $a > 1$. Induction step: $$\sum_{k=1}^{2^{n+1} - 1} \frac{1}{k^a} = (\sum\limits_{k=1}^{2^n-1}\frac{1}{k^a}) +…
user181415
  • 39
  • 7
1
vote
1 answer

Extending a theorem true over the integers to reals and complex numbers

How does one generally extend a theorem proved over the integers to the real numbers and beyond e.g. induction proofs, De Moivre's Theorem? I am aware that to extend a theorem proved over $\mathbb{N}$ to $\mathbb{Q}$ requires substitutions of the…
1
vote
1 answer

Prove by inductive on the length of u

I have this question: Let u be a string, Prove by inductive on the length of u, that (u^R)^R = u "where R indicates reversal" I tried answer this question by this way: Basis step: u = 0 then (u^R)^R = 0 Could someone help me in inductive step thanks
1
vote
2 answers

Induction for recurrence

I'm trying to understand an induction proof that aims to prove some function is in $O(n\log{ n})$. It's on page 5 of this PDF: https://courses.engr.illinois.edu/cs573/fa2010/notes/99-recurrences.pdf The function is $$T(n)=\sqrt{n}\, T(\sqrt{n})…
student
1
vote
2 answers

Induction Proof: Round Robin

In a round-robin tournament, each team plays every other team exactly once. Show that if no games end in ties, then no matter what the outcomes of the games, there will be some way to number the teams so that team 1 beat team 2, and team 2 beat team…
UserX
  • 651
1
vote
3 answers

Mathmatical Induction

Prove, by mathmatical induction, that $5^{2n}$ + $2^{2n-2}$$3^{n-1}$ is divisible by $13$. I first plugged in n as 1 and showed that the expression is divisible by 13 for n=1. Then I assumed that the expression was divisible by 13 for n=k and…
user140161
  • 1,363
1
vote
1 answer

problem: Applying Well-Ordering Principle to prove a fact

problem: Prove the fact using WOP: every amount of postage that can be assembled using only 10 cent and 15 cent stamps is divisible by 5. The problem provides a template for this proof and asks that we fill in the remainders after a the ellipsis. I…
1
vote
2 answers

Use induction to prove trignometric identity with imaginary number

Prove by induction that if $i^2 = -1 $, then for every integer $n >= 1$, $[\cos(x) + i\sin(x)]^n = \cos(nx) + i\sin(nx)$. My solution so far: 1. It can be easily shown that it is true for n = 1. 2. Then it has to be proven that if $$[\cos(x) +…
1
vote
4 answers

How to complete a proof by induction

I was trying my hand at proof by induction and got this exercise from the first chapter of Wissam Raji's "An introduction in elementary number theory". I have to prove by induction that $n< 3^n \forall n \in N$ The basis was trivial, but I don't…