Groups.jl/src/DirectProducts.jl

283 lines
8.9 KiB
Julia
Raw Normal View History

import Base: ×
2017-06-22 14:21:25 +02:00
export DirectProductGroup, DirectProductGroupElem
export MultiplicativeGroup, MltGrp, MltGrpElem
export AdditiveGroup, AddGrp, AddGrpElem
###############################################################################
#
# MltGrp/MltGrpElem & AddGrp/AddGrpElem
# (a thin wrapper for multiplicative/additive group of a Ring)
#
###############################################################################
for (Gr, Elem) in [(:MltGrp, :MltGrpElem), (:AddGrp, :AddGrpElem)]
@eval begin
struct $Gr{T<:AbstractAlgebra.Ring} <: AbstractAlgebra.Group
obj::T
end
struct $Elem{T<:AbstractAlgebra.RingElem} <: AbstractAlgebra.GroupElem
elt::T
end
==(g::$Elem, h::$Elem) = g.elt == h.elt
==(G::$Gr, H::$Gr) = G.obj == H.obj
elem_type(::Type{$Gr{T}}) where T = $Elem{elem_type(T)}
parent_type(::Type{$Elem{T}}) where T = $Gr{parent_type(T)}
parent(g::$Elem) = $Gr(parent(g.elt))
end
end
MultiplicativeGroup = MltGrp
AdditiveGroup = AddGrp
(G::MltGrp)(g::MltGrpElem) = MltGrpElem(G.obj(g.elt))
function (G::MltGrp)(g)
r = (G.obj)(g)
isunit(r) || throw(ArgumentError("Cannot coerce to multplicative group: $r is not invertible!"))
return MltGrpElem(r)
end
(G::AddGrp)(g) = AddGrpElem((G.obj)(g))
(G::MltGrp)() = MltGrpElem(G.obj(1))
(G::AddGrp)() = AddGrpElem(G.obj())
inv(g::MltGrpElem) = MltGrpElem(inv(g.elt))
inv(g::AddGrpElem) = AddGrpElem(-g.elt)
for (Elem, op) in ([:MltGrpElem, :*], [:AddGrpElem, :+])
@eval begin
^(g::$Elem, n::Integer) = $Elem(op(g.elt, n))
function *(g::$Elem, h::$Elem)
parent(g) == parent(h) || throw("Cannot multiply elements of different parents")
return $Elem($op(g.elt,h.elt))
end
end
end
Base.show(io::IO, G::MltGrp) = print(io, "The multiplicative group of $(G.obj)")
Base.show(io::IO, G::AddGrp) = print(io, "The additive group of $(G.obj)")
Base.show(io::IO, g::Union{MltGrpElem, AddGrpElem}) = show(io, g.elt)
gens(F::AbstractAlgebra.Field) = elem_type(F)[gen(F)]
order(G::AddGrp{<:AbstractAlgebra.GFField}) = order(G.obj)
elements(G::AddGrp{F}) where F <: AbstractAlgebra.GFField = (G((i-1)*G.obj(1)) for i in 1:order(G))
order(G::MltGrp{<:AbstractAlgebra.GFField}) = order(G.obj) - 1
elements(G::MltGrp{F}) where F <: AbstractAlgebra.GFField = (G(i*G.obj(1)) for i in 1:order(G))
2017-06-22 14:21:25 +02:00
###############################################################################
#
# DirectProductGroup / DirectProductGroupElem
#
###############################################################################
doc"""
2018-07-30 14:05:47 +02:00
DirectProductGroup(G::Group, n::Int) <: Group
Implements `n`-fold direct product of `G`. The group operation is
2017-06-22 14:21:25 +02:00
`*` distributed component-wise, with component-wise identity as neutral element.
"""
struct DirectProductGroup{T<:Group} <: Group
group::T
n::Int
2017-06-22 14:21:25 +02:00
end
struct DirectProductGroupElem{T<:GroupElem} <: GroupElem
elts::Vector{T}
2017-06-22 14:21:25 +02:00
end
###############################################################################
#
# Type and parent object methods
#
###############################################################################
elem_type(::Type{DirectProductGroup{T}}) where {T} =
DirectProductGroupElem{elem_type(T)}
2017-06-22 14:21:25 +02:00
parent_type(::Type{DirectProductGroupElem{T}}) where {T} =
2017-07-21 13:20:31 +02:00
DirectProductGroup{parent_type(T)}
2017-06-22 14:21:25 +02:00
parent(g::DirectProductGroupElem) =
DirectProductGroup(parent(first(g.elts)), length(g.elts))
2017-06-22 14:21:25 +02:00
###############################################################################
#
# AbstractVector interface
2017-06-22 14:21:25 +02:00
#
###############################################################################
Base.size(g::DirectProductGroupElem) = size(g.elts)
2017-09-13 15:43:56 +02:00
Base.IndexStyle(::Type{DirectProductGroupElem}) = Base.LinearFast()
Base.getindex(g::DirectProductGroupElem, i::Int) = g.elts[i]
function Base.setindex!(g::DirectProductGroupElem{T}, v::T, i::Int) where {T}
2017-07-23 03:24:05 +02:00
parent(v) == parent(first(g.elts)) || throw("$g is not an element of $i-th factor of $(parent(G))")
g.elts[i] = v
return g
2017-06-22 14:21:25 +02:00
end
function Base.setindex!(g::DirectProductGroupElem{T}, v::S, i::Int) where {T, S}
g.elts[i] = parent(g.elts[i])(v)
return g
end
###############################################################################
#
# DirectProductGroup / DirectProductGroupElem constructors
#
###############################################################################
2017-07-21 13:23:16 +02:00
function ×(G::Group, H::Group)
G == H || throw("Direct products are defined only for the same groups")
return DirectProductGroup(G,2)
end
2017-06-22 14:21:25 +02:00
DirectProductGroup(R::T, n::Int) where {T<:AbstractAlgebra.Ring} =
DirectProductGroup(AdditiveGroup(R), n)
function ×(G::DirectProductGroup{T}, H::Group) where T <: Union{AdditiveGroup, MultiplicativeGroup}
G.group == T(H) || throw(ArgumentError("Direct products are defined only for the same groups"))
return DirectProductGroup(G.group,G.n+1)
end
2017-06-22 14:21:25 +02:00
###############################################################################
#
# Parent object call overloads
#
###############################################################################
doc"""
(G::DirectProductGroup)(a::Vector, check::Bool=true)
> Constructs element of the $n$-fold direct product group `G` by coercing each
2017-07-23 17:04:22 +02:00
> element of vector `a` to `G.group`. If `check` flag is set to `false` neither
> check on the correctness nor coercion is performed.
2017-06-22 14:21:25 +02:00
"""
function (G::DirectProductGroup)(a::Vector, check::Bool=true)
if check
G.n == length(a) || throw("Can not coerce to DirectProductGroup: lengths differ")
a = G.group.(a)
end
2017-07-12 21:07:05 +02:00
return DirectProductGroupElem(a)
2017-06-22 14:21:25 +02:00
end
(G::DirectProductGroup)() = DirectProductGroupElem([G.group() for _ in 1:G.n])
(G::DirectProductGroup)(g::DirectProductGroupElem) = G(g.elts)
(G::DirectProductGroup){T<:GroupElem, N}(a::Vararg{T, N}) = G([a...])
2017-06-22 14:21:25 +02:00
###############################################################################
#
# Basic manipulation
#
###############################################################################
function hash(G::DirectProductGroup, h::UInt)
return hash(G.group, hash(G.n, hash(DirectProductGroup,h)))
2017-06-22 14:21:25 +02:00
end
function hash(g::DirectProductGroupElem, h::UInt)
2017-07-12 21:10:31 +02:00
return hash(g.elts, hash(parent(g), hash(DirectProductGroupElem, h)))
2017-06-22 14:21:25 +02:00
end
###############################################################################
#
# String I/O
#
###############################################################################
function show(io::IO, G::DirectProductGroup)
2018-07-30 14:05:47 +02:00
print(io, "$(G.n)-fold direct product of $(G.group)")
2017-06-22 14:21:25 +02:00
end
function show(io::IO, g::DirectProductGroupElem)
2018-07-30 14:05:47 +02:00
print(io, "[$(join(g.elts,","))]")
2017-06-22 14:21:25 +02:00
end
###############################################################################
#
# Comparison
#
###############################################################################
2017-07-21 13:28:19 +02:00
doc"""
==(g::DirectProductGroup, h::DirectProductGroup)
> Checks if two direct product groups are the same.
"""
2017-06-22 14:21:25 +02:00
function (==)(G::DirectProductGroup, H::DirectProductGroup)
2018-07-30 14:05:47 +02:00
G.group == H.group || return false
G.n == G.n || return false
return true
2017-06-22 14:21:25 +02:00
end
doc"""
==(g::DirectProductGroupElem, h::DirectProductGroupElem)
2017-07-21 13:28:19 +02:00
> Checks if two direct product group elements are the same.
2017-06-22 14:21:25 +02:00
"""
function (==)(g::DirectProductGroupElem, h::DirectProductGroupElem)
2018-07-30 14:05:47 +02:00
g.elts == h.elts || return false
return true
2017-06-22 14:21:25 +02:00
end
###############################################################################
#
# Group operations
2017-06-22 14:21:25 +02:00
#
###############################################################################
doc"""
*(g::DirectProductGroupElem, h::DirectProductGroupElem)
> Return the direct-product group operation of elements, i.e. component-wise
> operation as defined by `operations` field of the parent object.
"""
function *(g::DirectProductGroupElem{T}, h::DirectProductGroupElem{T}, check::Bool=true) where {T}
if check
parent(g) == parent(h) || throw("Can not multiply elements of different groups!")
end
return DirectProductGroupElem([a*b for (a,b) in zip(g.elts,h.elts)])
end
2017-06-22 14:21:25 +02:00
doc"""
inv(g::DirectProductGroupElem)
> Return the inverse of the given element in the direct product group.
"""
function inv(g::DirectProductGroupElem{T}) where {T<:GroupElem}
return DirectProductGroupElem([inv(a) for a in g.elts])
end
2017-06-22 14:21:25 +02:00
###############################################################################
#
# Misc
#
###############################################################################
doc"""
elements(G::DirectProductGroup)
2017-07-21 13:31:42 +02:00
> Returns `generator` that produces all elements of group `G` (provided that
> `G.group` implements the `elements` method).
2017-06-22 14:21:25 +02:00
"""
# TODO: can Base.product handle generators?
# now it returns nothing's so we have to collect ellements...
function elements(G::DirectProductGroup)
2018-07-30 14:05:47 +02:00
elts = collect(elements(G.group))
cartesian_prod = Base.product([elts for _ in 1:G.n]...)
return (DirectProductGroupElem([elt...]) for elt in cartesian_prod)
2017-06-22 14:21:25 +02:00
end
doc"""
order(G::DirectProductGroup)
> Returns the order (number of elements) in the group.
"""
2017-07-21 13:31:42 +02:00
order(G::DirectProductGroup) = order(G.group)^G.n