-
Notifications
You must be signed in to change notification settings - Fork 63
/
Rational.jl
349 lines (281 loc) · 8.89 KB
/
Rational.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
###############################################################################
#
# Rational.jl : Additional AbstractAlgebra functionality for Julia Rationals
#
###############################################################################
###############################################################################
#
# Data type and parent object methods
#
###############################################################################
const JuliaQQ = Rationals{BigInt}()
const qq = Rationals{Int}()
parent(a::Rational{T}) where T <: Integer = Rationals{T}()
elem_type(::Type{Rationals{T}}) where T <: Integer = Rational{T}
parent_type(::Type{Rational{T}}) where T <: Integer = Rationals{T}
base_ring(a::Rational{Int}) = zz
base_ring(a::Rational{BigInt}) = JuliaZZ
base_ring(a::Rationals{Int}) = zz
base_ring(a::Rationals{BigInt}) = JuliaZZ
base_ring(a::Rationals{T}) where T <: Integer = Integers{T}()
base_ring(a::Rational{T}) where T <: Integer = Integers{T}()
is_exact_type(::Type{Rational{T}}) where T <: Integer = true
is_domain_type(::Type{Rational{T}}) where T <: Integer = true
###############################################################################
#
# Basic manipulation
#
###############################################################################
zero(::Rationals{T}) where T <: Integer = Rational{T}(0)
one(::Rationals{T}) where T <: Integer = Rational{T}(1)
is_unit(a::Rational) = a != 0
is_zero_divisor(a::Rational) = is_zero(a)
canonical_unit(a::Rational) = a
function numerator(a::Rational, canonicalise::Bool=true)
return Base.numerator(a) # all other types ignore canonicalise
end
function denominator(a::Rational, canonicalise::Bool=true)
return Base.denominator(a) # all other types ignore canonicalise
end
characteristic(a::Rational{T}) where T <: Integer = 0
###############################################################################
#
# String I/O
#
###############################################################################
function expressify(a::Rational; context = nothing)
n = numerator(a)
d = denominator(a)
if isone(d)
return n
else
return Expr(:call, ://, n, d)
end
end
function show(io::IO, R::Rationals)
print(io, "Rationals")
end
###############################################################################
#
# Divides
#
###############################################################################
function divides(a::Rational{T}, b::Rational{T}) where T <: Integer
return true, a//b
end
###############################################################################
#
# Division with remainder
#
###############################################################################
function divrem(a::Rational{T}, b::Rational{T}) where T <: Integer
return a//b, zero(Rational{T})
end
function div(a::Rational{T}, b::Rational{T}) where T <: Integer
return a//b
end
###############################################################################
#
# Exact division
#
###############################################################################
divexact(a::Rational, b::Integer; check::Bool=true) = a//b
divexact(a::Integer, b::Rational; check::Bool=true) = a//b
divexact(a::Rational, b::Rational; check::Bool=true) = a//b
function divides(a::T, b::T) where T <: Rational
if b == 0
return false, T(0)
else
return true, divexact(a, b; check=false)
end
end
###############################################################################
#
# Square root
#
###############################################################################
function sqrt(a::Rational{T}; check::Bool=true) where T <: Integer
return sqrt(numerator(a, false); check=check)//sqrt(denominator(a, false); check=check)
end
function is_square(a::Rational{T}) where T <: Integer
return is_square(numerator(a)) && is_square(denominator(a))
end
function is_square_with_sqrt(a::Rational{T}) where T <: Integer
f1, s1 = is_square_with_sqrt(numerator(a))
if !f1
return false, zero(T)
end
f2, s2 = is_square_with_sqrt(denominator(a))
if !f2
return false, zero(T)
end
return true, s1//s2
end
###############################################################################
#
# Root
#
###############################################################################
function root(a::Rational{T}, n::Int; check::Bool=true) where T <: Integer
num = root(numerator(a, false), n; check=check)
den = root(denominator(a, false), n; check=check)
return num//den
end
function is_power(a::Rational{T}, n::Int) where T <: Integer
return is_power(numerator(a), n) && is_power(denominator(a), n)
end
function is_power_with_root(a::Rational{T}, n::Int) where T <: Integer
f1, r1 = is_power_with_root(numerator(a), n)
if !f1
return false, zero(T)
end
f2, r2 = is_power_with_root(denominator(a), n)
if !f2
return false, zero(T)
end
return true, r1//r2
end
###############################################################################
#
# Exponential
#
###############################################################################
@doc raw"""
exp(a::Rational{T}) where T <: Integer
Return $1$ if $a = 0$, otherwise throw an exception.
"""
function exp(a::Rational{T}) where T <: Integer
a != 0 && throw(DomainError(a, "a must be 0"))
return Rational{T}(1)
end
@doc raw"""
log(a::Rational{T}) where T <: Integer
Return $0$ if $a = 1$, otherwise throw an exception.
"""
function log(a::Rational{T}) where T <: Integer
a != 1 && throw(DomainError(a, "a must be 1"))
end
###############################################################################
#
# Unsafe functions
#
###############################################################################
# No actual mutation is permitted for Julia types
# See #1077
function zero!(a::Rational{T}) where T <: Integer
n = a.num
n = zero!(n)
if a.den == 1
return Rational{T}(n, a.den)
else
return Rational{T}(n, T(1))
end
end
function mul!(a::Rational{T}, b::Rational{T}, c::Rational{T}) where T <: Integer
n = a.num
d = a.den
n = mul!(n, b.num, c.num)
d = mul!(d, b.den, c.den)
if d != 1 && n != 0
g = gcd(n, d)
n = divexact(n, g)
d = divexact(d, g)
end
if n == 0
return Rational{T}(n, T(1))
else
return Rational{T}(n, d)
end
end
function add!(a::Rational{T}, b::Rational{T}, c::Rational{T}) where T <: Integer
if a === b
return addeq!(a, c)
elseif a == c
return addeq!(a, b)
else # no aliasing
n = a.num
d = a.den
d = mul!(d, b.den, c.den)
n = mul!(n, b.num, c.den)
n = addmul!(n, b.den, c.num)
if d != 1 && n != 0
g = gcd(n, d)
n = divexact(n, g)
d = divexact(d, g)
end
if n == 0
return Rational{T}(n, T(1))
else
return Rational{T}(n, d)
end
end
end
function addeq!(a::Rational{T}, b::Rational{T}) where T <: Integer
if a === b
if iseven(a.den)
return Rational{T}(a.num, div(b.den, 2))
else
return Rational{T}(2*a.num, b.den)
end
else
n = a.num
n = mul!(n, n, b.den)
n = addmul!(n, b.num, a.den)
d = a.den
d = mul!(d, d, b.den)
if d != 1 && n != 0
g = gcd(n, d)
n = divexact(n, g)
d = divexact(d, g)
end
if n == 0
return Rational{T}(n, T(1))
else
return Rational{T}(n, d)
end
end
end
function addmul!(a::Rational{T}, b::Rational{T}, c::Rational{T}, d::Rational{T}) where T <: Integer
d = mul!(d, b, c)
a = addeq!(a, d)
return a
end
###############################################################################
#
# Random generation
#
###############################################################################
RandomExtensions.maketype(R::Rationals{T}, _) where {T} = Rational{T}
function rand(rng::AbstractRNG,
sp::SamplerTrivial{<:Make2{Rational{T}, Rationals{T}, <:AbstractArray{<:Integer}}}
) where {T}
R, n = sp[][1:end]
d = T(0)
while d == 0
d = T(rand(rng, n))
end
n = T(rand(rng, n))
return R(n, d)
end
rand(rng::AbstractRNG, R::Rationals, n) = rand(rng, make(R, n))
rand(R::Rationals, n) = rand(Random.GLOBAL_RNG, R, n)
###############################################################################
#
# Parent object call overload
#
###############################################################################
function (R::Rationals{T})() where T <: Integer
return Rational{T}(0)
end
function (R::Rationals{T})(b) where T <: Integer
return Rational{T}(b)
end
function (R::Rationals{T})(b::Integer, c::Integer) where T <: Integer
return Rational{T}(b, c)
end
###############################################################################
#
# fraction_field constructor
#
###############################################################################
fraction_field(R::Integers{T}) where T <: Integer = Rationals{T}()