0

In order to prove a number composite I have to prove that p^3 - 1 = ab With a and b not being 1 and itself. Its given that p > 2.

I factor it out with differences of squares p^3 - 1 => (p - 1)(p^2 + p + 1)

And I don't really know what to do next. How do I involve p > 2 into the proof.

Michael Wu
  • 17
  • 2

2 Answers2

2

Its a composite number only if its a product of two numbers a and b both of which are greater than 1. If p = 2, then a would be 1.

If (p > 2) - then 
(p - 1) > 1 and 
(p^2 + p + 1) > 1. 
Maertin
  • 384
  • 1
  • 8
-1

Just use induction.

Base case p=3, p**3-1 = 8.

Inductive case: use your factorization.

Darth Egregious
  • 18,184
  • 3
  • 32
  • 54