$$(1+\sqrt 2)^n-(1-\sqrt2)^n=b_n\sqrt2$$ $$n\in N $$ $$b_n\in N$$ I needed to solve this by the induction method. The base and thesis of induction is easy, is to substitute n for n + 1, but I can not reduce the expression, someone could give an aid
-
It is not clear to me what you're trying to do. What is $B_n$? – cansomeonehelpmeout Mar 31 '19 at 17:41
-
prove by induction the question, B is any natural number, at least that's what I understood from the exercise – Monica Mar 31 '19 at 17:45
-
We need a condition by $b_{n}$ I guess – ZAF Mar 31 '19 at 17:50
-
@Monica So you have to prove that $b_n\in \mathbb N$? – Dr. Mathva Mar 31 '19 at 17:54
-
this is given in the exercise, I have to prove by induction that the function is true, for n = 0 it works – Monica Mar 31 '19 at 18:00
-
https://math.stackexchange.com/questions/3169526/deduce-that-the-next-integer-greater-than-3-sqrt5n-is-divisible-by-2n/3169544#3169544 – lab bhattacharjee Mar 31 '19 at 18:10
-
Please give more context. Providing context not only assures that this is not simply copied from a homework assignment, but also allows answers to be better directed at where the problem lies and to be within the proper scope. Please avoid "I have no clue" questions. Defining keywords and trying a simpler, similar problem often helps. – robjohn Mar 31 '19 at 18:53
-
@Monica: I've written a more complete answer, but I've removed some of it until more context is provided. – robjohn Mar 31 '19 at 18:54
-
thanks for the comment, I really want to learn, but there are more difficult subjects than others – Monica Mar 31 '19 at 22:01
-
@Monica: you have already stated that this is an exercise, yet you have shown no effort. This site is not here to do your homework for you. We are willing to help once you have shown some effort. Please add some context. – robjohn Apr 01 '19 at 11:11
3 Answers
Just write $(1+\sqrt{2})^{n+1} = (1+\sqrt{2})(1+\sqrt{2})^n$
You can then develop, while keeping the part which is to the $n$, for the induction. Do that on the other term also, and it should work

- 1,272
Since $\left(1+\sqrt{2}\right)^2=3+2\sqrt{2}$, and $\left(1-\sqrt{2}\right)^2=3-2\sqrt{2}$, it is not too difficult to see that both $1+\sqrt{2}$ and $1-\sqrt{2}$ satisfy $$ x^2=2x+1\tag1 $$ This can be used to get a recurrence for $b_n$.

- 345,667
-
but this way I can not prove by induction, since it is necessary that one of the parcels gives the other – Monica Mar 31 '19 at 18:11
-
Once you have a recurrence for $b_n$ and show that some initial values are integers, you can show by induction that all are integers. – robjohn Mar 31 '19 at 18:32
Might be easier to prove two statements.
That $(1 + \sqrt 2)^n - (1-\sqrt 2)^n = b_n \sqrt 2$
And $(1 + \sqrt 2)^n + (1 - \sqrt 2)^n = c_n$. where $b_n, c_n$ are integers.
Base cases:
For $n =1$ then $(1 + \sqrt 2)-(1-\sqrt 2) = 2\sqrt 2$ and $(1+\sqrt 2)+(1-\sqrt 2)=2$.
Induction cases:
If $(1 + \sqrt 2)^n -(1-\sqrt 2)^n = b_n \sqrt 2$ and $(1 + \sqrt 2)^n +(1-\sqrt 2)^n=c_n$
Then $(1 + \sqrt 2)^{n+1} - (1 - \sqrt 2)^{n+1} = $
$(1 + \sqrt 2)^n(1 + \sqrt 2) - (1 - \sqrt 2)^n(1 - \sqrt 2) =$
$(1 + \sqrt 2)^n + \sqrt 2(1+ \sqrt 2)^n - (1-\sqrt 2)^n + (1-\sqrt 2)^n\sqrt 2 =$
$(1 + \sqrt 2)^n - (1-\sqrt 2)^n + \sqrt 2(1+ \sqrt 2)^n+ (1-\sqrt 2)^n\sqrt 2 =$
$b_n \sqrt 2 + c_n\sqrt 2 = (b_n + c_n) \sqrt 2$
And $(1 + \sqrt 2)^{n+1} + (1 - \sqrt 2)^{n+1} = $
$(1 + \sqrt 2)^n(1 + \sqrt 2) + (1 - \sqrt 2)^n(1 - \sqrt 2) =$
$(1 + \sqrt 2)^n + \sqrt 2(1+ \sqrt 2)^n + (1-\sqrt 2)^n - (1-\sqrt 2)^n\sqrt 2 =$
$(1 + \sqrt 2)^n + (1-\sqrt 2)^n + \sqrt 2(1+ \sqrt 2)^n - (1-\sqrt 2)^n\sqrt 2 =$
$c_n - b_n\sqrt 2\sqrt 2 = c_n - 2b_n$.
Although the best way to do this is with that binomial theorem.
$(1 \pm \sqrt 2)^n = \sum_{k=0}^n (\pm 1)^n {n\choose k}\sqrt 2^k$.
If $k$ is even then $(-1)^k =1$ so for
$(1+\sqrt2)^n - (1-\sqrt 2)^n =\sum_{k=0}^n (1-(-1)^k) {n\choose k}\sqrt 2^k$
the even terms will vanish.
If $k$ is odd then $(1-(-1)^k) = 2$ and $\sqrt 2^k = 2^{\frac {k-1}2}\sqrt 2$.
So
$(1+\sqrt2)^n - (1-\sqrt 2)^n =\sum_{k=0}^n (1-(-1)^k) {n\choose k}\sqrt 2^k=$
$\sum_{k=0; k \text{ odd}}^n 2{n\choose k}2^{\frac {k-1}2}\sqrt 2=$
$\sqrt 2(\sum_{k=0; k \text{ odd}}^n 2{n\choose k}2^{\frac {k-1}2}) =$
$\sqrt 2 b_n$ if we set $b_n$ equal to $\sum_{k=0; k \text{ odd}}^n 2{n\choose k}2^{\frac {k-1}2}$ which is an integer.

- 124,253