GroupRings.jl/src/GroupAlgebras.jl

202 lines
5.7 KiB
Julia
Raw Normal View History

module GroupAlgebras
2017-05-16 18:27:32 +02:00
using Nemo
import Nemo: Group, GroupElem, Ring
2017-03-13 19:44:26 +01:00
import Base: convert, show, isequal, ==
import Base: +, -, *, //
import Base: size, length, norm, rationalize
2017-03-13 19:44:26 +01:00
2017-05-16 18:28:32 +02:00
type GroupRing <: Ring
group::Group
pm::Array{Int,2}
basis::Vector{GroupElem}
basis_dict::Dict{GroupElem, Int}
2017-03-13 19:44:26 +01:00
2017-05-16 18:28:32 +02:00
GroupRing(G::Group) = new(G)
end
2017-03-13 19:44:26 +01:00
2017-05-16 18:29:14 +02:00
type GroupRingElem{T<:Number}
coeffs::AbstractVector{T}
parent::GroupRing
2017-03-13 19:44:26 +01:00
2017-05-16 18:29:14 +02:00
function GroupRingElem(coeffs::AbstractVector)
return new(coeffs)
end
2017-03-13 19:44:26 +01:00
end
2017-05-16 18:31:45 +02:00
export GroupRing, GroupRingElem
2017-03-13 19:44:26 +01:00
2017-05-16 18:34:43 +02:00
elem_type(::GroupRing) = GroupRingElem
parent_type(::GroupRingElem) = GroupRing
parent(g::GroupRingElem) = g.parent
2017-03-13 19:44:26 +01:00
2017-05-16 18:31:26 +02:00
GroupRingElem{T}(c::AbstractVector{T}, A::GroupRing) = GroupRingElem{T}(c,A)
convert{T<:Number}(::Type{T}, X::GroupRingElem) =
GroupRingElem(parent(X), convert(AbstractVector{T}, X.coeffs))
2017-05-16 18:32:12 +02:00
function GroupRing(G::Group, pm::Array{Int,2})
size(pm,1) == size(pm,2) || throw("pm must be of size (n,n), got
$(size(pm))")
return GroupRing(Group, pm)
end
function GroupRing(G::Group, pm::Array{Int,2}, basis::Vector)
size(pm,1) == size(pm,2) || throw("pm must be of size (n,n), got
$(size(pm))")
eltype(basis) == elem_type(G) || throw("basis must consist of elements of $G")
basis_dict = Dict(g => i for (i,g) in enumerate(basis))
return GroupRing(Group, pm, basis, basis_dict)
end
function GroupRing(G::Group; complete=false)
A = GroupRing(Group)
if complete
complete(A)
end
return A
end
2017-05-16 18:34:21 +02:00
function (A::GroupRing)(X::GroupRingElem)
length(X) == length(A.basis) || throw("Can not coerce to $A: lengths differ")
X.parent = A
return X
end
function (A::GroupRing)(x::AbstractVector)
length(x) == length(A.basis) || throw("Can not coerce to $A: lengths differ")
return GroupRingElem(x, A)
end
2017-05-16 18:35:37 +02:00
function deepcopy_internal(X::GroupRingElem, dict::ObjectIdDict)
return GroupRingElem(deepcopy(X.coeffs), parent(X))
end
function hash(X::GroupRingElem, h::UInt)
return hash(X.coeffs, hash(parent(X), h))
end
2017-05-16 18:34:21 +02:00
function show(io::IO, A::GroupRing)
print(io, "GroupRing of $(A.group)")
end
function show(io::IO, X::GroupRingElem)
T = eltype(X.coeffs)
print(io, "Element of Group Algebra of $(parent(X)) over $T:\n $(X.coeffs)")
end
2017-05-16 18:36:00 +02:00
function (==)(X::GroupRingElem, Y::GroupRingElem)
parent(X) == parent(Y) || return false
if eltype(X.coeffs) != eltype(S.coeffs)
warn("Comparing elements with different coeffs Rings!")
end
X.coeffs == Y.coeffs || return false
return true
end
function (==)(A::GroupRing, B::GroupRing)
return A.group == B.group
end
2017-03-13 19:44:26 +01:00
end
function add{T<:Number}(X::GroupAlgebraElement{T}, Y::GroupAlgebraElement{T})
X.product_matrix == Y.product_matrix || throw(ArgumentError(
"Elements don't seem to belong to the same Group Algebra!"))
return GroupAlgebraElement(X.coefficients+Y.coefficients, X.product_matrix)
end
function add{T<:Number, S<:Number}(X::GroupAlgebraElement{T},
Y::GroupAlgebraElement{S})
warn("Adding elements with different base rings!")
return GroupAlgebraElement(+(promote(X.coefficients, Y.coefficients)...),
X.product_matrix)
end
(+)(X::GroupAlgebraElement, Y::GroupAlgebraElement) = add(X,Y)
(-)(X::GroupAlgebraElement) = GroupAlgebraElement(-X.coefficients, X.product_matrix)
(-)(X::GroupAlgebraElement, Y::GroupAlgebraElement) = add(X,-Y)
function algebra_multiplication{T<:Number}(X::AbstractVector{T}, Y::AbstractVector{T}, pm::Array{Int,2})
result = zeros(X)
for (j,y) in enumerate(Y)
if y != zero(T)
for (i, index) in enumerate(pm[:,j])
if X[i] != zero(T)
index == 0 && throw(ArgumentError("The product don't seem to belong to the span of basis!"))
result[index] += X[i]*y
end
end
end
end
return result
end
function group_star_multiplication{T<:Number}(X::GroupAlgebraElement{T},
Y::GroupAlgebraElement{T})
X.product_matrix == Y.product_matrix || ArgumentError(
"Elements don't seem to belong to the same Group Algebra!")
result = algebra_multiplication(X.coefficients, Y.coefficients, X.product_matrix)
return GroupAlgebraElement(result, X.product_matrix)
end
function group_star_multiplication{T<:Number, S<:Number}(
X::GroupAlgebraElement{T},
Y::GroupAlgebraElement{S})
S == T || warn("Multiplying elements with different base rings!")
return group_star_multiplication(promote(X,Y)...)
end
(*){T<:Number, S<:Number}(X::GroupAlgebraElement{T},
Y::GroupAlgebraElement{S}) = group_star_multiplication(X,Y);
(*){T<:Number}(a::T, X::GroupAlgebraElement{T}) = GroupAlgebraElement(
a*X.coefficients, X.product_matrix)
function scalar_multiplication{T<:Number, S<:Number}(a::T,
X::GroupAlgebraElement{S})
promote_type(T,S) == S || warn("Scalar and coefficients are in different rings! Promoting result to $(promote_type(T,S))")
return GroupAlgebraElement(a*X.coefficients, X.product_matrix)
end
(*){T<:Number}(a::T,X::GroupAlgebraElement) = scalar_multiplication(a, X)
//{T<:Rational, S<:Rational}(X::GroupAlgebraElement{T}, a::S) =
GroupAlgebraElement(X.coefficients//a, X.product_matrix)
//{T<:Rational, S<:Integer}(X::GroupAlgebraElement{T}, a::S) =
X//convert(T,a)
length(X::GroupAlgebraElement) = length(X.coefficients)
size(X::GroupAlgebraElement) = size(X.coefficients)
function norm(X::GroupAlgebraElement, p=2)
if p == 1
return sum(abs(X.coefficients))
elseif p == Inf
return max(abs(X.coefficients))
else
return norm(X.coefficients, p)
end
end
ɛ(X::GroupAlgebraElement) = sum(X.coefficients)
function rationalize{T<:Integer, S<:Number}(
::Type{T}, X::GroupAlgebraElement{S}; tol=eps(S))
v = rationalize(T, X.coefficients, tol=tol)
return GroupAlgebraElement(v, X.product_matrix)
end
end