-
Notifications
You must be signed in to change notification settings - Fork 33
/
pell_cfrac_factorization.pl
executable file
·165 lines (122 loc) · 4.1 KB
/
pell_cfrac_factorization.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#!/usr/bin/perl
# Daniel "Trizen" Șuteu
# Date: 10 April 2018
# https://github.com/trizen
# A simple factorization algorithm, based on ideas from the continued fraction factorization method.
use 5.020;
use strict;
use warnings;
use experimental qw(signatures);
use ntheory qw(is_prime factor_exp vecprod);
use Math::AnyNum qw(is_square isqrt irand idiv gcd valuation);
sub pell_cfrac ($n) {
# Check for primes and negative numbers
return () if $n <= 1;
return ($n) if is_prime($n);
# Check for perfect squares
if (is_square($n)) {
my @factors = __SUB__->(isqrt($n));
return sort { $a <=> $b } ((@factors) x 2);
}
# Check for divisibility by 2
if (!($n & 1)) {
my $v = valuation($n, 2);
my $t = $n >> $v;
my @factors = (2) x $v;
if ($t > 1) {
push @factors, __SUB__->($t);
}
return @factors;
}
my $x = isqrt($n);
my $y = $x;
my $z = 1;
my $w = 2 * $x;
my $k = isqrt($w);
my $r = $x + $x;
my ($e1, $e2) = (1, 0);
my ($f1, $f2) = (0, 1);
my %table;
for (; ;) {
$y = $r * $z - $y;
$z = idiv($n - $y * $y, $z);
$r = idiv($x + $y, $z);
my $u = ($x * $f2 + $e2) % $n;
my $v = ($u * $u) % $n;
my $c = ($v > $w ? $n - $v : $v);
# Congruence of squares
if (is_square($c)) {
my $g = gcd($u - isqrt($c), $n);
if ($g > 1 and $g < $n) {
return sort { $a <=> $b } (
__SUB__->($g),
__SUB__->($n / $g)
);
}
}
my @factors = factor_exp($c);
my @odd_powers = grep { $factors[$_][1] % 2 == 1 } 0 .. $#factors;
if (@odd_powers <= 3) {
my $key = join(' ', map { $_->[0] } @factors[@odd_powers]);
# Congruence of squares by creating a square from previous terms
if (exists $table{$key}) {
foreach my $d (@{$table{$key}}) {
my $g = gcd($d->{u} * $u - isqrt($d->{c} * $c), $n);
if ($g > 1 and $g < $n) {
return sort { $a <=> $b } (
__SUB__->($g),
__SUB__->($n / $g)
);
}
}
}
push @{$table{$key}}, {c => $c, u => $u};
# Create easier building blocks for building squares
if (@odd_powers >= 2) {
foreach my $i (0 .. $#odd_powers) {
my $key = join(' ', map { $_->[0] } @factors[@odd_powers[0 .. $i - 1, $i + 1 .. $#odd_powers]]);
if (exists($table{$key}) and @{$table{$key}} < 5) {
my $missing_factor = $factors[$odd_powers[$i]][0];
next if ($missing_factor > $k);
foreach my $d (@{$table{$key}}) {
push @{$table{$missing_factor}},
{
c => $c * $d->{c},
u => $u * $d->{u},
};
}
}
}
}
}
my $the_end = ($z == 1);
{
($f1, $f2) = ($f2, ($r * $f2 + $f1) % $n);
($e1, $e2) = ($e2, ($r * $e2 + $e1) % $n);
# Pell factorization
foreach my $t (
$e2 + $e2 + $f2 + $x,
$e2 + $f2 + $f2,
$e2 + $f2 * $x,
$e2 + $f2,
$e2,
) {
my $g = gcd($t, $n);
if ($g > 1 and $g < $n) {
return sort { $a <=> $b } (
__SUB__->($g),
__SUB__->($n / $g)
);
}
}
redo if $the_end;
}
}
}
foreach my $k (2 .. 60) {
my $n = irand(2, 1 << $k);
my @f = pell_cfrac($n);
say "$n = ", join(' * ', @f);
die 'error' if grep { !is_prime($_) } @f;
die 'error' if vecprod(@f) != $n;
}