Proving Congruence Relations Using Division and Induction

  • Thread starter Thread starter cap.r
  • Start date Start date
  • Tags Tags
    Proof
Click For Summary

Homework Help Overview

The discussion revolves around a number theory problem related to modular division and congruence theory, specifically proving that \( x^5 \equiv x \mod 10 \) implies \( 10 \mid (x^5 - x) \). Participants are exploring the use of induction and other methods to establish this congruence relation.

Discussion Character

  • Exploratory, Mathematical reasoning, Problem interpretation

Approaches and Questions Raised

  • Participants discuss using mathematical induction to prove the statement, starting with base cases and attempting to establish a general case. There are also suggestions to clarify the presentation of the proof and to explore alternative methods, such as leveraging properties of consecutive integers.

Discussion Status

The conversation includes attempts to refine the proof structure and clarify definitions. Some participants have provided constructive feedback on the presentation of ideas, while others have introduced additional concepts, such as Fermat's little theorem, to aid in the proof process. There is no explicit consensus on a single approach yet.

Contextual Notes

Participants are encouraged to improve their presentation of mathematical arguments and to consider multiple methods for proving divisibility, reflecting a learning environment focused on understanding rather than simply arriving at a solution.

cap.r
Messages
64
Reaction score
0

Homework Statement


Number theory problem. we are just doing modular division and congruence theory.
x^5==x(mod10) ==> 10|x^5-x

Homework Equations


induction. let x=1,x=x+1

The 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+(...)

now we know that 10|x^5-x by assumption. so that part is done just need to show that 10|(...)

(...)=5x^4+10x^3+10x^2+5x

obviously 10|10x^3+10x^2 so we require 10|5x^4+5x.

10|5x(x^3+1). if x is even than we can factor out a 2 and get 10|10x/2(x^3+1) and be done.
if x is odd. then x^3+1 is always even and we can factor out a 2 and get 10|10x(x^3+1)/2.

does this last part need proving? can you give me a better way of proving this? induction often works, but i like finding clever ways of doing proofs instead of brute force with induction.
 
Physics news on Phys.org
cap.r said:

Homework Statement


Number theory problem. we are just doing modular division and congruence theory.
x^5==x(mod10) ==> 10|x^5-x

Homework Equations


induction. let x=1,x=x+1

The 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 [itex]\Rightarrow[/itex], [itex]\Leftrightarrow[/itex] mean; please use your words instead.

-----------------------

What you should have presented is:

1. For n = 1, true.
[tex]1 ^ 5 \equiv 1 \text{ mod} 10[/tex]
2. Assume the statement is true for n = k, which means:
[tex]k ^ 5 \equiv k \text{ mod} 10[/tex], or, equivalently, [tex](k ^ 5 - k) \vdots 10[/tex]
3. Prove the statement is true for n = k + 1.
(k + 1)5 - (k + 1) = (k5 + 5k4 + 10k3 + 10k2 + 5k + 1) - (k + 1)
= (k5 - k) + (10k3 + 10k2) + (5k4 + 5k)

From the Induction Hypothesis, k5 - k is divisible by 10, and obviously 10k3 + 10k2 is divisible by 10.

What's left is to prove 5k4 + 5k is divisible by 10.

... (Write that part of your proof here)

Hence (k + 1)5 - (k + 1) is divisible by 10, hence [tex](k + 1) ^ 5 \equiv k + 1 \text{ mod} 10[/tex] (Q.E.D)---------------------------------

Another idea is to use the product of consecutive integers to prove it. The aim is to prove x5 - x is divisible by 10, for all x, right?

x5 - x = x(x4 - 1) = x(x2 - 1)(x2 + 1)
= (x - 1)x(x + 1)(x2 + 1)

Of course (x - 1)x(x + 1)(x2 + 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)(x2 + 1) can be split into the product of 5 consecutive integers. If you can then, everything is done. :)
 
so we just learned about Fermat's little theorem and it makes divisibility by 5 a trivial problem so I just used that. thank you for the help. I will do my best to make the presentation better
 
Last edited:
Often a==b(mod n) by definition means that n divides a-b. What is your definition?
 

Similar threads

  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 10 ·
Replies
10
Views
2K
Replies
2
Views
1K
  • · Replies 4 ·
Replies
4
Views
3K
Replies
5
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 31 ·
2
Replies
31
Views
3K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 2 ·
Replies
2
Views
2K