cap.r said:
Homework Statement
Number theory problem. we are just doing modular division and congruence theory.
x^5==x(mod10) ==> 10|x^5-xHomework Equations
induction. let x=1,x=x+1The Attempt at a Solution
let x=1 1^5==1(mod10) this is trivial but 2^5==2(mod10)...
let x=x+1
(x+1)^5==(x+1)mod10 ==> 10|(x+1)^5-(x+1)
(x+1)^5=x^5+(...)+1 ==> 10|x^5-x+(...)
Your idea is correct, however, your presentation is a real mess!
There are a few things you need to remember is:
- Do not start from what you need to prove. Instead, start from what you have, and from there deduce to what you need to prove.
- Unless you are positively sure about what \Rightarrow, \Leftrightarrow mean; please use your words instead.
-----------------------
What you should have presented is:
1. For n = 1, true.
1 ^ 5 \equiv 1 \text{ mod} 10
2. Assume the statement is true for n = k, which means:
k ^ 5 \equiv k \text{ mod} 10, or, equivalently, (k ^ 5 - k) \vdots 10
3. Prove the statement is true for n = k + 1.
(k + 1)
5 - (k + 1) = (k
5 + 5k
4 + 10k
3 + 10k
2 + 5k + 1) - (k + 1)
= (k
5 - k) + (10k
3 + 10k
2) + (5k
4 + 5k)
From the Induction Hypothesis, k
5 - k is divisible by 10, and obviously 10k
3 + 10k
2 is divisible by 10.
What's left is to prove 5k
4 + 5k is divisible by 10.
... (Write that part of your proof here)
Hence (k + 1)
5 - (k + 1) is divisible by 10, hence (k + 1) ^ 5 \equiv k + 1 \text{ mod} 10 (Q.E.D)---------------------------------
Another idea is to use the product of consecutive integers to prove it. The aim is to prove x
5 - x is divisible by 10, for all x, right?
x
5 - x = x(x
4 - 1) = x(x
2 - 1)(x
2 + 1)
= (x - 1)x(x + 1)(x
2 + 1)
Of course (x - 1)x(x + 1)(x
2 + 1) is divisible by 2. (Hint: There's a product of 2 consecutive integers in that expression). So what's left is to prove that expression is also divisible by 5.
(x - 1)x(x + 1) is already a product of 3 consecutive integer. Now, let's see if you can think of a way so that the expression (x - 1)x(x + 1)(x
2 + 1) can be split into the product of 5 consecutive integers. If you can then, everything is done. :)