-
Notifications
You must be signed in to change notification settings - Fork 63
/
GenericFunctions.jl
484 lines (409 loc) · 13.4 KB
/
GenericFunctions.jl
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
###############################################################################
#
# GenericFunctions.jl : Functions for Generic types
#
###############################################################################
function internal_power(a, n)
@assert n > 1
while iseven(n)
a = a*a
n >>= 1
end
z = a
while !iszero(n >>= 1)
a = a*a
if isodd(n)
z = z*a
end
end
return z
end
function ^(a::T, n::Integer) where T <: RingElem
if n > 1
return internal_power(a, n)
elseif n == 1
return deepcopy(a)
elseif n == 0
return one(parent(a))
elseif n == -1
return inv(a)
else
return internal_power(inv(a), -widen(n))
end
end
###############################################################################
#
# The whole Euclidean interface can be derived from divrem if it is available.
#
###############################################################################
@doc raw"""
divrem(f::T, g::T) where T <: RingElem
Return a pair `q, r` consisting of the Euclidean quotient and remainder of $f$
by $g$. A `DivideError` should be thrown if $g$ is zero.
"""
function Base.divrem(a::T, b::T) where T <: RingElem
throw(NotImplementedError(:divrem, a, b))
end
@doc raw"""
mod(f::T, g::T) where T <: RingElem
Return the Euclidean remainder of $f$ by $g$. A `DivideError` should be thrown
if $g$ is zero.
!!! note
For best compatibility with the internal assumptions made by AbstractAlgebra,
the Euclidean remainder function should provide unique representatives for
the residue classes; the `mod` function should satisfy
1. `mod(a_1, b) = mod(a_2, b)` if and only if $b$ divides $a_1 - a_2$, and
2. `mod(0, b) = 0`.
"""
function mod(a::T, b::T) where T <: RingElem
return divrem(a, b)[2]
end
@doc raw"""
div(f::T, g::T) where T <: RingElem
Return the Euclidean quotient of $f$ by $g$. A `DivideError` should be thrown
if $g$ is zero.
"""
function Base.div(a::T, b::T) where T <: RingElem
return divrem(a, b)[1]
end
@doc raw"""
mulmod(f::T, g::T, m::T) where T <: RingElem
Return `mod(f*g, m)` but possibly computed more efficiently.
"""
function mulmod(a::T, b::T, m::T) where T <: RingElement
return mod(a*b, m)
end
function mulmod(a::T, b::T, m::T) where T <: Integer
return mod(widen(a)*b, m) % T
end
function internal_powermod(a, n, m)
@assert n > 1
while iseven(n)
a = mulmod(a, a, m)
n >>= 1
end
z = a
while !iszero(n >>= 1)
a = mulmod(a, a, m)
if isodd(n)
z = mulmod(z, a, m)
end
end
return z
end
@doc raw"""
powermod(f::T, e::Int, m::T) where T <: RingElem
Return `mod(f^e, m)` but possibly computed more efficiently.
"""
function powermod(a::T, n::Integer, m::T) where T <: RingElem
parent(a) == parent(m) || error("Incompatible parents")
if n > 1
return internal_powermod(a, n, m)
elseif n == 1
return mod(a, m)
elseif n == 0
return mod(one(parent(a)), m)
elseif n == -1
return invmod(a, m)
else
return internal_powermod(invmod(a, m), -widen(n), m)
end
end
@doc raw"""
invmod(f::T, m::T) where T <: RingElem
Return an inverse of $f$ modulo $m$, meaning that `isone(mod(invmod(f,m)*f,m))`
returns `true`.
If such an inverse doesn't exist, a `NotInvertibleError` should be thrown.
"""
function invmod(a::T, m::T) where T <: RingElem
g, s = gcdinv(a, m)
isone(g) || throw(NotInvertibleError(a, m))
return mod(s, m) # gcdinv has no canonicity requirement on s
end
@doc raw"""
divides(f::T, g::T) where T <: RingElem
Return a pair, `flag, q`, where `flag` is set to `true` if $g$ divides $f$, in which
case `q` is set to the quotient, or `flag` is set to `false` and `q`
is set to `zero(f)`.
"""
function divides(a::T, b::T) where T <: RingElem
parent(a) == parent(b) || error("Incompatible parents")
if iszero(b)
return iszero(a), b
end
q, r = divrem(a, b)
return iszero(r), q
end
@doc raw"""
remove(f::T, p::T) where T <: RingElem
Return a pair `v, q` where $p^v$ is the highest power of $p$ dividing $f$ and $q$ is
the cofactor after $f$ is divided by this power.
See also [`valuation`](@ref), which only returns the valuation.
"""
function remove(a::T, b::T) where T <: Union{RingElem, Number}
parent(a) == parent(b) || error("Incompatible parents")
if (iszero(b) || is_unit(b))
throw(ArgumentError("Second argument must be a non-zero non-unit"))
end
if iszero(a)
return (0, zero(parent(a))) # questionable case, consistent with ZZRingElem
end
v = 0
while begin; (ok, q) = divides(a, b); ok; end
a = q
v += 1
end
return v, a
end
@doc raw"""
valuation(f::T, p::T) where T <: RingElem
Return `v` where $p^v$ is the highest power of $p$ dividing $f$.
See also [`remove`](@ref).
"""
function valuation(a::T, b::T) where T <: Union{RingElem, Number}
return remove(a, b)[1]
end
@doc raw"""
gcd(a::T, b::T) where T <: RingElem
Return a greatest common divisor of $a$ and $b$, i.e., an element $g$
which is a common divisor of $a$ and $b$, and with the property that
any other common divisor of $a$ and $b$ divides $g$.
!!! note
For best compatibility with the internal assumptions made by
AbstractAlgebra, the return is expected to be unit-normalized in such a
way that if the return is a unit, that unit should be one.
"""
function gcd(a::T, b::T) where T <: RingElem
parent(a) == parent(b) || error("Incompatible parents")
while !iszero(b)
(a, b) = (b, mod(a, b))
end
return iszero(a) ? a : divexact(a, canonical_unit(a))
end
@doc raw"""
gcd(fs::AbstractArray{<:T}) where T <: RingElem
Return a greatest common divisor of the elements in `fs`.
Requires that `fs` is not empty.
"""
function gcd(fs::AbstractArray{<:T}) where T <: RingElem
length(fs) > 0 || error("Empty collection")
return reduce(gcd, fs)
end
@doc raw"""
gcd(f::T, g::T, hs::T...) where T <: RingElem
Return a greatest common divisor of $f$, $g$ and the elements in `hs`.
"""
function gcd(f::T, g::T, hs::T...) where T <: RingElem
return gcd(f, gcd(g, hs...))
end
@doc raw"""
gcd_with_cofactors(a::T, b::T) where T <: RingElem
Return a tuple `(g, abar, bbar)` consisting of `g = gcd(a, b)` and cofactors
`abar` and `bbar` with `a = g*abar` and `b = g*bbar`.
"""
function gcd_with_cofactors(a::T, b::T) where T <: RingElement
g = gcd(a, b)
if iszero(g) || isone(g)
return (g, a, b)
else
return (g, divexact(a, g), divexact(b, g))
end
end
@doc raw"""
lcm(f::T, g::T) where T <: RingElem
Return a least common multiple of $f$ and $g$, i.e., an element $d$
which is a common multiple of $f$ and $g$, and with the property that
any other common multiple of $f$ and $g$ is a multiple of $d$.
"""
function lcm(a::T, b::T) where T <: RingElem
g = gcd(a, b)
iszero(g) && return g
return a*divexact(b, g)
end
@doc raw"""
lcm(fs::AbstractArray{<:T}) where T <: RingElem
Return a least common multiple of the elements in `fs`.
Requires that `fs` is not empty.
"""
function lcm(fs::AbstractArray{<:T}) where T <: RingElem
length(fs) > 0 || error("Empty collection")
return reduce(lcm, fs)
end
@doc raw"""
lcm(f::T, g::T, hs::T...) where T <: RingElem
Return a least common multiple of $f$, $g$ and the elements in `hs`.
"""
function lcm(f::T, g::T, hs::T...) where T <: RingElem
return lcm(f, lcm(g, hs...))
end
@doc raw"""
gcdx(f::T, g::T) where T <: RingElem
Return a triple `d, s, t` such that $d = gcd(f, g)$ and $d = sf + tg$, with $s$
loosely reduced modulo $g/d$ and $t$ loosely reduced modulo $f/d$.
"""
function gcdx(a::T, b::T) where T <: RingElem
parent(a) == parent(b) || error("Incompatible parents")
R = parent(a)
if iszero(a)
if iszero(b)
return zero(R), zero(R), zero(R)
else
t = canonical_unit(b)
return divexact(b, t), zero(R), inv(t)
end
elseif iszero(b)
t = canonical_unit(a)
return divexact(a, t), inv(t), zero(R)
end
m11, m12 = one(R), zero(R)
m21, m22 = zero(R), one(R)
while !iszero(b)
(q, b), a = divrem(a, b), b
m11, m12 = m12, m11 - q*m12
m21, m22 = m22, m21 - q*m22
end
t = canonical_unit(a)
return divexact(a, t), divexact(m11, t), divexact(m21, t)
end
@doc raw"""
gcdinv(f::T, g::T) where T <: RingElem
Return a tuple `d, s` such that $d = gcd(f, g)$ and $s = (f/d)^{-1} \pmod{g/d}$. Note
that $d = 1$ iff $f$ is invertible modulo $g$, in which case $s = f^{-1} \pmod{g}$.
"""
function gcdinv(a::T, b::T) where T <: RingElem
g, s, t = gcdx(a, b)
return (g, s)
end
# TODO: Move from CRT from Hecke/src/Misc
function _crt_with_lcm_stub(r1::T, m1::T, r2::T, m2::T; check::Bool=true) where T <: RingElement
diff = r2 - r1
if iszero(m1)
check && !is_divisible_by(diff, m2) && error("no crt solution")
return (r1, m1)
elseif iszero(m2)
check && !is_divisible_by(diff, m1) && error("no crt solution")
return (r2, m2)
end
# eliminating one cofactor computation with g, s = gcdinv(m1, m2) should be
# sufficient, but almost all of Nemo's implementations of gcdinv are
# non-conforming (i.e. they throw or return a wrong gcd)
g, s, _ = gcdx(m1, m2)
if isone(g)
return (r1 + mulmod(diff, s, m2)*m1, m1*m2)
elseif !check
m1og = divexact(m1, g; check=false)
return (r1 + mulmod(diff, s, m2)*m1og, m1og*m2)
else
m2og = divexact(m2, g; check=false)
diff = divexact(diff, g; check=check)
return (r1 + mulmod(diff, s, m2og)*m1, m1*m2og)
end
end
function _crt_stub(r1::T, m1::T, r2::T, m2::T; check::Bool=true) where T <: RingElement
return _crt_with_lcm_stub(r1, m1, r2, m2; check=check)[1]
end
@doc raw"""
crt(r1::T, m1::T, r2::T, m2::T; check::Bool=true) where T <: RingElement
Return an element congruent to $r_1$ modulo $m_1$ and $r_2$ modulo $m_2$.
If `check = true` and no solution exists, an error is thrown.
If `T` is a fixed precision integer type (like `Int`), the result will be
correct if `abs(ri) <= abs(mi)` and `abs(m1 * m2) < typemax(T)`.
"""
function crt(r1::T, m1::T, r2::T, m2::T; check::Bool=true) where T <: RingElement
return _crt_stub(r1, m1, r2, m2; check=check)
end
@doc raw"""
crt_with_lcm(r1::T, m1::T, r2::T, m2::T; check::Bool=true) where T <: RingElement
Return a tuple consisting of an element congruent to $r_1$ modulo $m_1$ and
$r_2$ modulo $m_2$ and the least common multiple of $m_1$ and $m_2$.
If `check = true` and no solution exists, an error is thrown.
"""
function crt_with_lcm(r1::T, m1::T, r2::T, m2::T; check::Bool=true) where T <: RingElement
return _crt_with_lcm_stub(r1, m1, r2, m2; check=check)
end
function _crt_with_lcm_stub(r::Vector{T}, m::Vector{T}; check::Bool=true) where T <: RingElement
n = length(r)
@assert n == length(m)
@assert n > 0
n < 2 && return (r[1], m[1])
n == 2 && return crt_with_lcm(r[1], m[1], r[2], m[2]; check=check)
return reduce((a, b) -> crt_with_lcm(a[1], a[2], b[1], b[2]; check=check),
((r[i], m[i]) for i in 1:n))
end
function _crt_stub(r::Vector{T}, m::Vector{T}; check::Bool=true) where T <: RingElement
return _crt_with_lcm_stub(r, m; check=check)[1]
end
@doc raw"""
crt(r::Vector{T}, m::Vector{T}; check::Bool=true) where T <: RingElement
Return an element congruent to $r_i$ modulo $m_i$ for each $i$.
"""
function crt(r::Vector{T}, m::Vector{T}; check::Bool=true) where T <: RingElement
return _crt_stub(r, m; check=check)
end
@doc raw"""
crt_with_lcm(r::Vector{T}, m::Vector{T}; check::Bool=true) where T <: RingElement
Return a tuple consisting of an element congruent to $r_i$ modulo $m_i$ for
each $i$ and the least common multiple of the $m_i$.
"""
function crt_with_lcm(r::Vector{T}, m::Vector{T}; check::Bool=true) where T <: RingElement
return _crt_with_lcm_stub(r, m; check=check)
end
###############################################################################
#
# Functions that can't really be implemented generically
#
###############################################################################
@doc raw"""
is_zero_divisor(a::T) where T <: RingElement
Return `true` if there exists a nonzero $b$ such that $a b = 0$ and
`false` otherwise.
"""
function is_zero_divisor(a::T) where T <: RingElement
if !is_domain_type(T)
throw(NotImplementedError(:is_zero_divisor, a))
end
return is_zero(a) && !is_zero(one(parent(a)))
end
@doc raw"""
is_zero_divisor_with_annihilator(a::T) where T <: RingElement
Return `(true, b)` if there exists a nonzero $b$ such that $a b = 0$ and
`(false, junk)` otherwise.
"""
function is_zero_divisor_with_annihilator(a::T) where T <: RingElement
if !is_domain_type(T)
if is_zero_divisor(a)
throw(NotImplementedError(:is_zero_divisor_with_annihilator, a))
end
return (false, parent(a)())
end
theone = one(parent(a))
return (is_zero(a) && !is_zero(theone), theone)
end
@doc raw"""
factor(a::T)
Return a factorization of the element $a$ as a `Fac{T}`.
"""
function factor(a)
throw(NotImplementedError(:factor, a))
end
@doc raw"""
factor_squarefree(a::T)
Return a squarefree factorization of the element $a$ as a `Fac{T}`.
"""
function factor_squarefree(a)
throw(NotImplementedError(:factor_squarefree, a))
end
@doc raw"""
is_irreducible(a)
Return `true` if $a$ is irreducible, else return `false`.
"""
function is_irreducible(a)
throw(NotImplementedError(:is_irreducible, a))
end
@doc raw"""
is_squarefree(a)
Return `true` if $a$ is squarefree, else return `false`.
"""
function is_squarefree(a)
throw(NotImplementedError(:is_squarefree, a))
end