Need help with a proof by induction, please

  • Thread starter Thread starter yelena0000
  • Start date Start date
  • Tags Tags
    Induction Proof
AI Thread Summary
To prove that (3^(2n-1)) + 1 is divisible by 4 using induction, start with the base case for n=1, where the expression equals 4, confirming divisibility. Assume the statement holds for n=k, meaning (3^(2k-1)) + 1 is divisible by 4. For n=k+1, rewrite the expression as 3^(2k+2-1) + 1, which simplifies to 3^(2k-1) * 9 + 1. The next step involves demonstrating that this new expression maintains divisibility by 4, leveraging the assumption that (3^(2k-1)) + 1 is divisible by 4. This approach effectively completes the proof by induction.
yelena0000
Messages
1
Reaction score
0
Using proof by induction, prove that (3^(2n-1))+1 is divisible by 4

so this is what i could do so far:

for n=1
3^(2*1-1)+1=4 which is divisible by 4
assume truth for n=k
(3^(2k-1))+1 is divisible by 4
and i know that next i have to prove for n=k+1 but i really have no idea what to do witht that.
please help
 
Physics news on Phys.org
yelena0000 said:
and i know that next i have to prove for n=k+1 but i really have no idea what to do with that.

If you substitute n = k + 1, you get

<br /> 3^{2(k+1) - 1} + 1 = 3^{2k-1} 3^2 + 1<br />

By assumption, 4 | 3^{2k-1} + 1 so try to re-write 3^{2k-1} 3^2 + 1 in a form that has a factor of 3^{2k-1} + 1.
 
The general term is

<br /> a_n = 3^{2n-1}+1<br />

and you've shown that $a_1$ is divisible by four, and you've assumed the same for $a_k$ for some $k \ge 1$.

Look at a_{k+1}.

<br /> 3^{2(k+1)-1} +1 = 3^{2k+2-1} + 1 = 3^{2k -1} 3^2 + 1<br />

The goal is to show that this is also divisible by four - the fact that a_k is divisible by four will play a role in this.
 
Last edited by a moderator:
The working out suggests first equating ## \sqrt{i} = x + iy ## and suggests that squaring and equating real and imaginary parts of both sides results in ## \sqrt{i} = \pm (1+i)/ \sqrt{2} ## Squaring both sides results in: $$ i = (x + iy)^2 $$ $$ i = x^2 + 2ixy -y^2 $$ equating real parts gives $$ x^2 - y^2 = 0 $$ $$ (x+y)(x-y) = 0 $$ $$ x = \pm y $$ equating imaginary parts gives: $$ i = 2ixy $$ $$ 2xy = 1 $$ I'm not really sure how to proceed from here.
Back
Top