Thread Closed

Finding primes given a condition

 
Share Thread Thread Tools
Oct8-04, 10:52 PM   #1
 

Finding primes given a condition


Hi, I need help solving this problem. The question asks me to find all prime numbers p such that p^2 = n^3 + 1 for some integer n.
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Galaxies fed by funnels of fuel
>> The better to see you with: Scientists build record-setting metamaterial flat lens
>> Google eyes emerging markets networks
Oct9-04, 07:14 AM   #2
 
Recognitions:
Homework Helper Homework Help
Science Advisor Science Advisor
This is really quite easy as p^2 can only be p times p or 1 times p^2.

Now, [tex]n^3 + 1 = (n + 1)(n^2 - n + 1)[/tex]

So one possible solution is where one of the factors is equal to 1 and the other is equal to p^2. Or when they are both equal to each other. Test those out and you should find all the possible solutions for n.
Oct13-04, 03:48 PM   #3
 
An alternative,
all odd p^2 is usually of the form
p^2 = 1 mod 4

n^3+1 = 1 mod 4
or n^3 = 0 mod 4

Now this is useful if and only if u have a list of primes ...
So first u can generate a list and then check for conditions ...

-- AI
Thread Closed
Thread Tools


Similar Threads for: Finding primes given a condition
Thread Forum Replies
Finding small primes (fast determanistic tests) Linear & Abstract Algebra 11
Finding C with inital condition, its wrong, any ideas why? Calculus & Beyond Homework 2
primes Calculus & Beyond Homework 3
The way of finding primes Linear & Abstract Algebra 10
Primes General Math 3