![]() |
|
|
#23 | ||
|
Nov 2003
22·5·373 Posts |
Quote:
mathematical techniques. Quote:
or even the use of the factorizations to extend the lower bound UNLESS there is some new mathematics that goes along with it. A paper that says "here are some factorizations. We used already published technques to extend the lower bound" is NOT publishable, nor is it of interest to the mathematical community. What is publishable is the mathematics. |
||
|
|
|
|
|
#24 |
|
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2
2·7·677 Posts |
Let's not recur into the "of course it is publishable" trap (and by referencing Tom's message I am not arguing with Tom: his is just a good summation of the subject). Everyone will just say what they said a year ago, and a year before that, and ... etc. We could all save some space.
The previous great story was "of course publishable" and by now it is indeed "of course published". |
|
|
|
|
|
#25 | |
|
"Antonio Key"
Sep 2011
UK
32·59 Posts |
Quote:
This then confuses YAFU somewhat, and when it happened to me the code ended up in an error loop. I have corrected this by adding an else clause to "if (!defined $contents....." The corrected version of the Perl script is supplied below. Code:
use warnings;
use strict;
use LWP::Simple;
while(1){
print "get composites\n";
my $rand=int(rand(100));
my $mindig=70;
my $contents = get("http://factorization.ath.cx/listtype...and&download=1");
if (!defined $contents or $contents =~ /[a-z]/ ){
print "$contents\n";
print "Error, no composites fetched\n";
sleep(60);
}else {
my @composites=split(/\s/, $contents);
foreach my $composite (@composites) {
print "Factoring ".length($composite)." digits: $composite\n";
my @results;
open(YAFU, "yafu factor($composite) -p|") or die "Couldn't start yafu!";
while (<YAFU>) {
print "$_";
chomp;
if (/^[CP].*? = (\d+)/) {
push( @results, $1 );
print "*****\n";
}
}
close(YAFU);
if ( scalar(@results) > 0 ) {
print "===========================================================================\n";
print "report factors\n";
my $url="http://factorization.ath.cx/report.php?report=".$composite."%3D".join('*',@results);
#print "$url\n";
$contents=get($url);
#print "$contents\n";
my $nofactors = ($contents =~ s/Does not divide//g);
my $already_known = ($contents =~ s/Factor already known//g);
my $added = ($contents =~ s/Factor added//g);
my $small = ($contents =~ s/Small factor//g);
print "\tNew factors added: " . ($added ? $added : 0) . "\n";
print "\tFactors already known: " . ($already_known ? $already_known : 0) . "\n";
print "\tSmall factors: " . ($small ? $small : 0) . "\n";
print "\tErrors (does not divide): " . ($nofactors ? $nofactors : 0) . "\n";
print "===========================================================================\n\n";
}else {
print "Error, no result found\n";
sleep(60);
}
}
}
}
die;
|
|
|
|
|
|
|
#26 | |
|
"William"
May 2003
New Haven
2·7·132 Posts |
Quote:
Although *irrelevant* is a particular spin that it is accurate but incomplete. Richard Brent's 1989 lower bound paper, and every one since then, has required previously unknown factorizations. Although necessary, it is *obviously* true that it wasn't the factorizations that made them publishable. I'm not under the impression the I am doing mathematics - that would indeed be delusional. I'm under the impression that other people really doing mathematics will find these useful at some future date. It's worked out that way at least three times already. |
|
|
|
|
|
|
#27 |
|
Nov 2003
22×5×373 Posts |
|
|
|
|
|
|
#28 |
|
Sep 2009
2×1,039 Posts |
You can't be sure they will not be needed in the future unless you know all the maths that will be discovered in this area. So they are worth making available on the internet even if not formally published.
Chris |
|
|
|
|
|
#29 |
|
Nov 2003
22·5·373 Posts |
|
|
|
|
|
|
#30 |
|
"William"
May 2003
New Haven
2×7×132 Posts |
With the emphasis on "know," we are again in violent agreement with another accurate but incomplete statement. Pace's papers required some factorizations that were not knowable in advance. However, even these papers also required some extensions of Richard Brent's 1988 factor chains to complete the new proofs. It's possible the next paper will break this tradition - hence your statement is accurate. The last three continued this tradition, though.
|
|
|
|
|
|
#31 | |
|
Aug 2010
Kansas
547 Posts |
Quote:
Do I think factorDB is the right repository for wbilpp's factors? Not really. Do I think the unannounced dump onto factorDB was in good taste? Probably not. Did it get people talking about OPN and making (some) progress on raising the lower bound through current methods? Probably. Note: I say probably for the last one because I'm not entirely sure if the factors we've found are actually useful/will actually be used... |
|
|
|
|
|
|
#32 |
|
"William"
May 2003
New Haven
2×7×132 Posts |
Definitely done BADLY. I hadn't realized how much unfactored smallish stuff would be left after even after all the factors were in; I was thinking it would mostly clear out when the tail caught up. I've changed my whole philosophy about updating factordb to avoid such a mess in the future.
|
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Adding second CPU to mainboard | Primeinator | Hardware | 23 | 2014-10-28 10:01 |
| Adding a little blurb under your user name | jasonp | Forum Feedback | 28 | 2012-07-06 12:43 |
| Adding New Candidates | wblipp | Operation Billion Digits | 6 | 2011-04-10 17:45 |
| Adding to worktodo.txt in p95v259 | JuanTutors | PrimeNet | 2 | 2009-02-09 01:02 |
| Manually adding primes | Dærk | Software | 5 | 2002-11-01 14:01 |