Proving x^n - x is Divisible by n for Induction Method

AI Thread Summary
The discussion centers on proving that for all natural numbers n, the expression x^n - x is divisible by n for each natural number x. Initial attempts include testing the base case with x=1, confirming it is divisible by n. The induction hypothesis assumes the statement holds for x=k, leading to the next step of proving it for x=k+1. Participants emphasize that induction should be performed on n rather than x, starting with base cases for n=1 and n=2 to establish divisibility. The final goal is to demonstrate that if x^n - x is divisible by n, then x^(n + 1) - x must also be divisible by (n + 1).
grizz45
Messages
5
Reaction score
0
im stuck on this proof can anyone help?

Is it true that for all natural numbers n, for each natural number x, x^n − x is
divisible by n? If so, prove it; if not, explain why not.


so far i have gotten:

make x=1, ((1)^n) -1 = 0, therefore x=1 is divisible by n

assume true for x=k, ie: (k^n) - k is divisible by n

make x=k+1; ((k+1)^n)-(k+1)...and that's it!
 
Physics news on Phys.org
Before attempting to prove it, you should first do some work to see if it's actually true. Test the statement with a number of values of n.

If you believe that it's true, you should be doing your induction on n, not x. Your base case is for n = 1. Can you show that x^1 - x is divisible by 1? If that's too obvious, see if if holds for n = 2. IOW, can you show that x^2 - x is divisible by 2?

x^2 - x = x(x - 1)
If x is even, you're done, since an even number times an odd number is even.
If x is odd, then x - 1 is even, and you're done.

Now, assume that x^n - x is divisible by n, which means that x^n - x = a*n for some integer a.
The final step is to show that x^(n + 1) - x is divisible by (n + 1), using the induction hypothesis that x^n - x is divisible by n.
 
Last edited:
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...
Back
Top