mersenneforum.org  

Go Back   mersenneforum.org > Extra Stuff > Miscellaneous Math

Reply
 
Thread Tools
Old 2010-08-03, 17:39   #331
science_man_88
 
science_man_88's Avatar
 
"Forget I exist"
Jul 2009
Dumbassville

26·131 Posts
Default

Quote:
Originally Posted by CRGreathouse View Post
You write p twice and n twice. Is this intentional? That is, do we need to find a pair (n, p) with
(6n\pm1)p=24n+7
or a quadruple (m, n, p, q) with
6np\pm q=24m+7
or a triple (m, n, p) with
(6n\pm1)p=24m+7
?

My best guess was the last, the literal wording suggests the first, and Pi seems to have guessed the second. OF course other interpretations may be possible.

p and q are primes and m,n natural numbers, presumably.
I believe your last is most accurate as well.
science_man_88 is offline   Reply With Quote
Old 2010-08-03, 17:42   #332
3.14159
 
3.14159's Avatar
 
May 2010
Prime hunting commission.

69016 Posts
Default

Quote:
Originally Posted by science_man_88
I believe your last is most accurate as well.
Hmm..

Quote:
Originally Posted by CRGreathouse
My best guess was the last, the literal wording suggests the first, and Pi seems to have guessed the second. OF course other interpretations may be possible.
Well, I based it on his wording: Here's the post:

Quote:
Originally Posted by science_man_88
I mean when 6n*p+/-p = 24n+7
I gave two counterexamples to this, 1567 and 5023.

Last fiddled with by 3.14159 on 2010-08-03 at 17:45
3.14159 is offline   Reply With Quote
Old 2010-08-03, 17:46   #333
CRGreathouse
 
CRGreathouse's Avatar
 
Aug 2006

3·1,993 Posts
Default

Quote:
Originally Posted by science_man_88 View Post
I believe your last is most accurate as well.
OK, a nice solid mathematical description, some Pari code (posted nicely in a [code] block!)... things are starting to make sense.

Code:
for(p=5,30,
  for(n=1,20,
    if((6*n*p+p)%24==7 || (6*n*p-p)%24==7,
      print(floor((6*n*p-p)/24)","p)
    )
  )
)
I take it the idea is to replace one or both of the constants 20 and 30 with a large number, then the numbers 6*n*p+p and/or 6*n*p-p give you potential Mersenne primes?
CRGreathouse is offline   Reply With Quote
Old 2010-08-03, 17:49   #334
science_man_88
 
science_man_88's Avatar
 
"Forget I exist"
Jul 2009
Dumbassville

26·131 Posts
Default

Quote:
Originally Posted by 3.14159 View Post
If it's the last one, that's downright impossible.
heres my thought originally p is a number >1 I think anyways p*(6n+/-1) will give 2 factors that aren't 1 meaning for p>1 they all show composite so any time they are = 24m+7 by his phrasing they show composite m values I've found patterns to these results for given p as long as we can figure out p*x+c to not name variables again (takes finding a way to find c) then we can find when these hit the sequence given and use any pattern found to eliminate more which will only leave values that generate primes(since 24(n)+7 for the sequence gives odd Mersenne numbers the values that give primes will have to give Mersenne primes).
science_man_88 is offline   Reply With Quote
Old 2010-08-03, 17:49   #335
CRGreathouse
 
CRGreathouse's Avatar
 
Aug 2006

3·1,993 Posts
Default

Quote:
Originally Posted by 3.14159 View Post
Well, I based it on his wording: Here's the post:

Quote:
Originally Posted by science_man_88 View Post
I mean when 6n*p+/-p = 24n+7
I gave two counterexamples to this, 1567 and 5023.
Pi, I'm glad your language skills exceed mine. I can't understand the quoted statement well enough that I could have found a counterexample, and I still don't understand what makes those numbers counterexamples. (I just don't understand the statement, period.) But I'm glad someone here can follow sm88's posts.
CRGreathouse is offline   Reply With Quote
Old 2010-08-03, 17:50   #336
3.14159
 
3.14159's Avatar
 
May 2010
Prime hunting commission.

69016 Posts
Default

Quote:
Originally Posted by CRGreathouse
I take it the idea is to replace one or both of the constants 20 and 30 with a large number, then the numbers 6*n*p+p and/or 6*n*p-p give you potential Mersenne primes?
But this is impossible, because the result is always divisible by p if he wants both p to be the same. Just try it for yourself.

It's like trying to look for primes of the form 14k + 7. None exist, and none exist here either.

Quote:
Originally Posted by CRGreathouse
Pi, I'm glad your language skills exceed mine. I can't understand the quoted statement well enough that I could have found a counterexample, and I still don't understand what makes those numbers counterexamples. (I just don't understand the statement, period.) But I'm glad someone here can follow sm88's posts.
I saw it as him stating that 6 * n * a prime ± another prime = 24 * n + 7 is always composite. I posted 1567 and 5023.
But now that he clarified and demanded that both p be the same, there will be no primes found there, because an and b in this case share a common divisor, p.

Last fiddled with by 3.14159 on 2010-08-03 at 17:54
3.14159 is offline   Reply With Quote
Old 2010-08-03, 17:54   #337
science_man_88
 
science_man_88's Avatar
 
"Forget I exist"
Jul 2009
Dumbassville

26·131 Posts
Default

Quote:
Originally Posted by 3.14159 View Post
But this is impossible, because the result is always divisible by p if he wants both p to be the same. Just try it for yourself.

It's like trying to look for primes of the form 14k + 7. None exist, and none exist here either.



I saw it as him stating that 6 * n * a prime ± another prime = 24 * n + 7 is always composite. I posted 1567 and 5023.
But now that he clarified and demanded that both p be the same, there will be no primes found there.
yeah I'm an idiot I just have no idea how to put it in a way anyone on here will understand i have tons of ideas but nobody can make sense of them on here so I just hope they can.

Last fiddled with by science_man_88 on 2010-08-03 at 17:55
science_man_88 is offline   Reply With Quote
Old 2010-08-03, 17:57   #338
3.14159
 
3.14159's Avatar
 
May 2010
Prime hunting commission.

24×3×5×7 Posts
Default

Quote:
Originally Posted by science_man_88
yeah I'm an idiot I just have no idea how to put it in a way anyone on here will understand i have tons of ideas but nobody can make sense of them on here so I just hope they can.
Whenever working on a conjecture, make sure you can't easily prove the conjecture. But, first, refer to the conjecture as an open question until it is answered by either showing it is indeed an open question, easily disproven, or easily proven.
3.14159 is offline   Reply With Quote
Old 2010-08-03, 18:01   #339
science_man_88
 
science_man_88's Avatar
 
"Forget I exist"
Jul 2009
Dumbassville

203008 Posts
Default

Quote:
Originally Posted by 3.14159 View Post
Whenever working on a conjecture, make sure you can't easily prove the conjecture. But, first, refer to the conjecture as an open question until it is answered by either showing it is indeed an open question, easily disproven, or easily proven.

I could easily prove it to me just can't express it socially (aspergers suck if this what life will be lol)

Last fiddled with by science_man_88 on 2010-08-03 at 18:02
science_man_88 is offline   Reply With Quote
Old 2010-08-03, 18:02   #340
CRGreathouse
 
CRGreathouse's Avatar
 
Aug 2006

175B16 Posts
Default

Quote:
Originally Posted by science_man_88 View Post
heres my thought originally p is a number >1 I think anyways p*(6n+/-1) will give 2 factors that aren't 1 meaning for p>1 they all show composite so any time they are = 24m+7
OK. So my interpretation #3 was somewhat close; what you really meant was
(6n\pm1)p=24m+7 with m,n,p positive integers and p > 1.

Since the right side cannot be divisible by 2 or 3, the factors on the left must be at least 5. Every number > 1 relatively prime to 6 (as the numbers on the left must be) is of the form 6k\pm1, so all the equation says is that you have a composite number that is 7 mod 24. Phew! Why didn't you just say so?

Quote:
Originally Posted by science_man_88 View Post
by his phrasing they show composite m values I've found patterns to these results for given p
Given p... that's good. Now we're looking at multiples of a given p > 3 that are 7 mod 24.

Quote:
Originally Posted by science_man_88 View Post
as long as we can figure out p*x+c to not name variables again (takes finding a way to find c)
OK, more variables. I know what p is: we're given it, and we also know that it's relatively prime with 6 and greater than 1. But what are x and c, and what is the significance of px+c? Is that supposed to equal something else we know?

Quote:
Originally Posted by science_man_88 View Post
then we can find when these hit the sequence given
What sequence?

Quote:
Originally Posted by science_man_88 View Post
use any pattern found to eliminate more
At what point have we eliminated anything?

Quote:
Originally Posted by science_man_88 View Post
which will only leave values that generate primes(since 24(n)+7 for the sequence gives odd Mersenne numbers the values that give primes will have to give Mersenne primes).
So far my understanding is that you want to consider numbers that are 7 mod 24 and remove the ones that have a factor (other than the number itself, presumably) of the form 6n\pm1. The method of removing these composite 24m + 7 is based on a sequence or sequences unknown.
CRGreathouse is offline   Reply With Quote
Old 2010-08-03, 18:04   #341
CRGreathouse
 
CRGreathouse's Avatar
 
Aug 2006

3·1,993 Posts
Default

Quote:
Originally Posted by 3.14159 View Post
But this is impossible, because the result is always divisible by p if he wants both p to be the same. Just try it for yourself.
I'm trying to figure out what he means, whether the thing he has in mind is possible or impossible. I'm well able to factor simple expressions, thank you. I'm much less able to interpret what posters here intend. (And not just science_man_88, either, though he's probably one of the hardest.)

Last fiddled with by CRGreathouse on 2010-08-03 at 18:05
CRGreathouse is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
Wheel Factorization a1call Factoring 11 2017-06-19 14:04
Efficient Test paulunderwood Computer Science & Computational Number Theory 5 2017-06-09 14:02
LL tests more credit-efficient than P-1? ixfd64 Software 3 2011-02-20 16:24
A Wheel storm5510 Puzzles 7 2010-06-25 10:29
Most efficient way to LL hj47 Software 11 2009-01-29 00:45

All times are UTC. The time now is 22:31.


Fri Aug 6 22:31:01 UTC 2021 up 14 days, 17 hrs, 1 user, load averages: 3.41, 3.31, 3.23

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.