mersenneforum.org  

Go Back   mersenneforum.org > Great Internet Mersenne Prime Search > Software

Reply
 
Thread Tools
Old 2017-12-23, 17:27   #12
evanh
 
"Evan"
Dec 2017
Houston, TX

2×3×5 Posts
Default

Quote:
Originally Posted by petrw1 View Post
Prime95 is limited to 560M.
Results you see for larger exponents are using different software of which I have no experience. As well I believe those who are trying are using LL testing software on their GPUs.

But as several have said; you truly may not live to see it complete unless you have a super computer or very fast GPU.

Check out any of these that have LL as the Work Type and that have a completion date.
https://www.mersenne.org/assignments...&exp1=1&extf=1
I have come across these but I am curious what their benchmarks are... here are mine below..

I get it Prime95 has a tried and true method so why stray from it right? Have you ever seen the video on youtube of Richard Feynman discussing the difference between Mathematicians and Physicists? the whole video is good but the part I am referring to startes at about 5:40. https://www.youtube.com/watch?v=obCjODeoLVw He basically goes on to say that guessing the equation seems to be a good way to discover new things... essentially I would like to apply my personal method to finding prime numbers and testing those... I just have no way to test... womp womp womp .... guess I need to really learn programming now... :)
Attached Thumbnails
Click image for larger version

Name:	benchmarks both.png
Views:	78
Size:	320.9 KB
ID:	17388  

Last fiddled with by evanh on 2017-12-23 at 17:28
evanh is offline   Reply With Quote
Old 2017-12-23, 17:42   #13
retina
Undefined
 
retina's Avatar
 
"The unspeakable one"
Jun 2006
My evil lair

24×389 Posts
Default

Quote:
Originally Posted by evanh View Post
I have come across these but I am curious what their benchmarks are... here are mine below..
Those results don't apply to 1 billion digit exponents. There is no software in existence that can test such an enormous number. There is no computer in existence that can even store such an enormous number. Do you really know what you are asking for? Even in the best possible case of a base-2 one-billion-digit-exponent that is still something like 10332...<skip ~999,999,993 digits>...xxx.
retina is online now   Reply With Quote
Old 2017-12-23, 18:03   #14
evanh
 
"Evan"
Dec 2017
Houston, TX

2·3·5 Posts
Default

Quote:
Originally Posted by retina View Post
Those results don't apply to 1 billion digit exponents. There is no software in existence that can test such an enormous number. There is no computer in existence that can even store such an enormous number. Do you really know what you are asking for? Even in the best possible case of a base-2 one-billion-digit-exponent that is still something like 10332...<skip ~999,999,993 digits>...xxx.
I think there is a miscommunication I am not referring to a billion digit exponent.... but a billion digit result
evanh is offline   Reply With Quote
Old 2017-12-23, 18:06   #15
science_man_88
 
science_man_88's Avatar
 
"Forget I exist"
Jul 2009
Dumbassville

26·131 Posts
Default

Quote:
Originally Posted by evanh View Post
I think there is a miscommunication I am not referring to a billion digit exponent.... but a billion digit result
That's still over 3 GB to store the number.

Last fiddled with by science_man_88 on 2017-12-23 at 18:08
science_man_88 is offline   Reply With Quote
Old 2017-12-23, 18:16   #16
evanh
 
"Evan"
Dec 2017
Houston, TX

2·3·5 Posts
Default

That is pretty cool, how did you come up with that storage size?

Also, is this a reason that the calculation could not be done? I have storage space, RAM.. and more importantly... time :)
evanh is offline   Reply With Quote
Old 2017-12-23, 18:21   #17
a1call
 
a1call's Avatar
 
"Rashid Naimi"
Oct 2015
Remote to Here/There

2,063 Posts
Default

Evan,
Have you looked into Pari-Gp.
It's isprime function is deterministic and one of the fastest off the shelf functions for primality testing. For general form primes you can use primo it has limited (but large) parallel processing capability. It can only run on 64 bit Linux machine and will require a few lifetimes to come up with certificates for very large numbers.
IMHO your best chance of proving your 1G dd integer prime is writing your own code using Lucas primally test and not LL test. You will have to write your own code make your own hardware (a PC won't do) and find all the prime factors of n-1 where n is your prime candidate. This could be trivial and virtually instantaneous (relatively speaking) if the C in your formula can be -1.
If you see a discussion about the number of atoms in the universe, you can just ignore them

Last fiddled with by a1call on 2017-12-23 at 18:24
a1call is offline   Reply With Quote
Old 2017-12-23, 18:21   #18
science_man_88
 
science_man_88's Avatar
 
"Forget I exist"
Jul 2009
Dumbassville

26·131 Posts
Default

Quote:
Originally Posted by evanh View Post
That is pretty cool, how did you come up with that storage size?

Also, is this a reason that the calculation could not be done? I have storage space, RAM.. and more importantly... time :)
okay my math is bit off,. It's all to do with logarithms. Also look up computational complexity.
science_man_88 is offline   Reply With Quote
Old 2017-12-23, 18:25   #19
ET_
Banned
 
ET_'s Avatar
 
"Luigi"
Aug 2002
Team Italia

2×3×11×73 Posts
Default

Quote:
Originally Posted by evanh View Post
That is pretty cool, how did you come up with that storage size?

Also, is this a reason that the calculation could not be done? I have storage space, RAM.. and more importantly... time :)
You are Majoring in math and Physics... Consider learning a bit about computational complexity Such subject is all about how "hard" a calculation is, based on simple atomic operations. It also explain things like logarithmic, linear, polynomial and exponential time to reach a result (you should have learnt about asymptotics while studying Calculus I). Using such tools it becomes quite easy to define how long a computation will take, and how many bytes it will need to accomplish its goal.

And, yes, the answer to your last qustion lies on it. Unless you have petabytes of RAM and at least 85 years' time, you won't succeed.

Last fiddled with by ET_ on 2017-12-23 at 18:28 Reason: sm_88 beat me to it...
ET_ is offline   Reply With Quote
Old 2017-12-23, 19:30   #20
evanh
 
"Evan"
Dec 2017
Houston, TX

368 Posts
Default

Quote:
Originally Posted by ET_ View Post
You are Majoring in math and Physics... Consider learning a bit about computational complexity Such subject is all about how "hard" a calculation is, based on simple atomic operations. It also explain things like logarithmic, linear, polynomial and exponential time to reach a result (you should have learnt about asymptotics while studying Calculus I). Using such tools it becomes quite easy to define how long a computation will take, and how many bytes it will need to accomplish its goal.

And, yes, the answer to your last qustion lies on it. Unless you have petabytes of RAM and at least 85 years' time, you won't succeed.
Yes I am familiar with asymptotics. I am basically a newborn in the world of computational anything... however, I am very capable of learning just about anything. I see your, and everyone else's, point regarding the amount of time it would take.

Perhaps I will try my method on 100,000,000 digit primes and if my probabilistic test within Maple comes up "true" then I can move forward from there.

Also, I guess I can start here>> https://en.wikipedia.org/wiki/Comput...plexity_theory
then move on to the textbooks referenced on that site.
evanh is offline   Reply With Quote
Old 2017-12-23, 19:41   #21
evanh
 
"Evan"
Dec 2017
Houston, TX

368 Posts
Default

currently working on a number close to this one, Maplesoft.. The only problem is that I do not have an estimated time to completion and no way to save my progress.

usually if the number is "false" it returns fairly quickly.. this one is taking its time so we shall see.
Attached Thumbnails
Click image for larger version

Name:	currently.png
Views:	91
Size:	56.8 KB
ID:	17393  

Last fiddled with by evanh on 2017-12-23 at 19:42 Reason: to make more clear
evanh is offline   Reply With Quote
Old 2017-12-23, 19:43   #22
VBCurtis
 
VBCurtis's Avatar
 
"Curtis"
Feb 2005
Riverside, CA

486810 Posts
Default

Quote:
Originally Posted by evanh View Post
Perhaps I will try my method on 100,000,000 digit primes and if my probabilistic test within Maple comes up "true" then I can move forward from there.
Try 10,000 digits. Then try 100,000. Then consider how much longer the second case takes, extrapolate. Perhaps once you have a concept of how many lifetimes your goal will take, you can then explore the limits of the software you have available to you.
VBCurtis is offline   Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to enter password in prime.txt? Unregistered Information & Answers 3 2011-04-28 02:02
Less GHz days for larger exponents in TF? Bdot Information & Answers 12 2010-11-21 22:33
Enter key doesn't work at weird times. jasong Linux 5 2007-08-25 20:31
How 'bout an ecm server for numbers about to enter Prime95 first-pass? jasong GMP-ECM 2 2007-03-16 16:16
2003 Nov 03: P-1: a set of 16 larger exponents GP2 Completed Missions 2 2003-11-09 01:21

All times are UTC. The time now is 17:50.


Sun Aug 1 17:50:12 UTC 2021 up 9 days, 12:19, 0 users, load averages: 2.83, 2.35, 1.94

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.