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

How to solve the flowchart question dealing with values in an array?

I am not able to comprehend the meaning in the general sense. I have tried all the online resources and books available to understand what this symbols mean and have quite naturally arrived at this. However when they are connected I am not able to…
0
votes
3 answers

Proof by Induction that: $n!>3^n$ for $n>6$

Okay, I have this question: $n! > 3^n$, $6 3^k$ Proof: $(k+1)! > 3^{k+1}$ Okay, played a little, got to this: $k! \cdot (k+1) > 3^k…
user983717
0
votes
1 answer

Induction proof - fn(x) functions

first of all, I searched that question, could not find any. If by any chance you find, I ask you, "Dont close thread cus of duplicate, because I want to understand myself". I have this question: With induction, proof the following this: $fᵤ(x) = f(·…
user983717
0
votes
0 answers

First Principle of Induction following from the Second

I'm currently working through Wendell Motter's Foundations for Higher Mathematics and there's an exercise at the end of the chapter on induction that I'm stumped on. The question asks to prove that the First Principle of Mathematical Induction…
0
votes
0 answers

Proof by induction using definition of e

I'm working with this example that I'm trying to prove using induction: I have two inequalities, so I have to do 2 induction proofs for each inequality seperately. Treating the left inequality, after the base case and the induction assumption, I…
Tanamas
  • 1,837
0
votes
0 answers

$\sum _{j=1}^n\frac{1}{\sqrt{j}}\ge 2\cdot \sqrt{n+\ 1}-2$

How to prove that $\sum _{j=1}^n\frac{1}{\sqrt{j}}\ge 2\cdot \sqrt{n+\ 1}-2$ $n\ \varepsilon \ \mathbb{N}$ is valid? Using induction. n=1 $\sum _{j=1}^1\frac{1}{\sqrt{j}}\ge 2\cdot \sqrt{1+\ 1}-2$ $\frac{1}{\sqrt{1}}\ge 2\cdot \sqrt{1+\ 1}-2$ $1\ge…
Yeps
  • 11
0
votes
0 answers

Proving a loop that performs n^2n by induction

I have a function computes n^(2n) and I need to prove by it by induction. Here it is in python: def n_to_2n(n): product = 1 counter = n while counter > 0: product = product * n * n counter -= 1 return product I…
steven
  • 103
0
votes
2 answers

How does statement $1$ equate to statement $2$?

I do not have expert experience in mathematics so I expect the answer to be simple. I'm currently looking into mathematical induction and saw this problem (Question $2$): Prove that for n any positive integer: $$6^n −1$$ is divisible by $5$. The…
0
votes
1 answer

Proof that $S = \{a + b\sqrt{5}: a,b \in \mathbb{N}\}$ is inductive.

A set is inductive iff $1 \in S$ and $(x + 1) \in S$ whenever $x \in S$. So it's easy to show when a=1,b=0 then $a+b\sqrt{5} = 1$. So 1 is in S (I assume $0 \in \mathbb{N}$). However, I am having difficult with the inductive step. This is my…
0
votes
0 answers

Variables in a mathematical induction question

Let $u$ and $v$ be two numbers of the form $u=a+b\sqrt{c}$, where a,b and c are rational numbers, with $\sqrt{c}$ an irrational constant. Let the notation $u^∗$ indicate the value of $u$ when the sign of b is reversed. That is, $u^∗ = a −…
user71207
  • 1,543
0
votes
2 answers

Proof by mathematical induction $1^2+2^2+\ldots+n^2=\frac{n(n+1)(2n+1)}6$

I am trying to solve this question. I have to proove that L = R side Question: $1^2+2^2+\ldots+n^2=\frac{n(n+1)(2n+1)}6$ What I got so far, I am stuck on third step, the numbers seem too big. I do not know what I'm doing wrong. Can someone assist me…
etoRatio
  • 247
0
votes
3 answers

prove that $2(\sqrt{n+1}-1)<1+\frac{1}{\sqrt{2}}+\cdots +\frac{1}{\sqrt{n}}< 2\sqrt{n}$

prove $2(\sqrt{n+1}-1)<1+\frac{1}{\sqrt{2}}+\cdots +\frac{1}{\sqrt{n}}< 2\sqrt{n}$ by mathematical indcution. my attempt: we prove for $n=1$ for $n=1$ than $0.828<1<2$ so true for $n=1$ we assume that this is true for $n=k$ ie …
0
votes
1 answer

In an induction step after having establised the base case, May one prove $p(k+1)\implies p(k+2)$ instead of $p(k)\implies p(k+1)$?

I picked up on the fact that a proof I was working on could be more easily made: it would involve less lines, If we proved as our induction step $p(k+1)\implies p(k+2)$. I stay on top of the multiple variations of the principle of mathematical…
user923938
0
votes
1 answer

How are we switching from multiplication to decimals for this example of mathematical induction?

Perhaps I am not seeing something but the example in my textbook on a chapter for mathematical induction asks to prove, for all $n\geq1$, $$P(n):\frac{1}{1.2}+\frac{1}{2.3}+\frac{1}{3.4}+...+\frac{1}{n(n+1)}=\frac{n}{n+1}$$ It explicitly…
Doobius
  • 336