Quick problem to do with powers

  • Context: High School 
  • Thread starter Thread starter padraig
  • Start date Start date
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
7 replies · 2K views
padraig
Messages
10
Reaction score
0
hi, can someone try and represent:

3(3^(2n+4) - 2^(2n))

as a multiple of five. Been workin on it but I'm not very good at this sort of thing.

Cheers

Pat
 
Mathematics news on Phys.org
It is easy to prove it is so, but I haven't seen any quick method for expressing it as a factor of 5, ie 5*f(x). The last digit of the "3" exponential term alternates between 9 and 1. The last digit of the "2" exponential term alternates between 4 and 6. The subtraction always yields a 5 for the last digit, x9-y4 or x1-y6.

Njorl
 
That's cheating, uart ;)
 
Muzza said:
That's cheating, uart ;)

Hehe that's why I put the ":p" there, it means I was poking my tongue out. :biggrin:


Anyway it's actually pretty easy. You can readily reduce the problem to proving that (9^n - 4^n) is a multiple of 5. Just express the 9^n as (5+4)^n and use the binomial expansion formula. The 4^n terms cancel out you're left with only terms that are multiples of 5
 
Last edited:
cheers for your help, altho I need to use the 3 because the original proof was by induction to prove f(x) = 3^(2n+4) - 2^(2n) is always a multiple of five, and I've been told to do it by:

f(k+1) - f(k) = f(k+1) - 4f(k) + 3f(k)

Iv proved f(k+1) - 4f(k) is a multiple of 5 by rearranging the powers so need to do it with the 3f(k) now. There should be a way.

Thanks for your help

Pat
 
padraig said:
cheers for your help, altho I need to use the 3 because the original proof was by induction to prove f(x) = 3^(2n+4) - 2^(2n) is always a multiple of five, and I've been told to do it by:

f(k+1) - f(k) = f(k+1) - 4f(k) + 3f(k)

Iv proved f(k+1) - 4f(k) is a multiple of 5 by rearranging the powers so need to do it with the 3f(k) now. There should be a way.

Yes there's a way, you've already done it. The whole basis of proof by induction is that you can proof f(k+1) by assumming f(k). Of course you must verifiy f(1) yourself, but that is very easy.

So you actually just assume that f(k) is a multiple of 5 and then show that this implys that f(k+1) is also a multiple of 5. You've done all the required work already. :)
 
Just to clarify to steps.

1. Prove that g(k) = f(k+1) - 4*f(k) is a multiple of 5 (without making ANY assumptions that f(k) is a multiple of 5).

2. Note that f(k+1) = g(k) + 4*f(k)

3. Using 1. and 2. show that f(k) a mult of 5 implies that f(k+1) is a mult of 5.

4. Verify f(1) is a mult of 5 and you're done.