Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Meat axe #4674

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft

Meat axe #4674

wants to merge 3 commits into from

Conversation

fieker
Copy link
Contributor

@fieker fieker commented Feb 28, 2025

1st steps towards Allan's thesis: Char0 MeatAxe. Look at the TODOs in the diff

examples that I tried
G = D(8) (8 elem)
M = natural_gmodule(G, QQ)
and M \otimes M

G = 8T5
M = natural_gmodule(G, QQ)

and then
z = Oscar.GModuleFromGap.split_into_homogenous(M)
...
Oscar.GModuleFromGap.split_homogenous
resp
Oscar.GModuleFromGap.split_homogenous2

@fieker fieker added the draft label Feb 28, 2025
@lgoettgens lgoettgens marked this pull request as draft February 28, 2025 08:34
@lgoettgens lgoettgens removed the draft label Feb 28, 2025
@ThomasBreuer
Copy link
Member

Nice.
When I remove the Unbalanced flag from the call of induce_rational_reconstruction, the following examples almost work, just the second example (regular repres. of D8) runs into an error in lll_basis.

@testset begin
  examples = [
    (natural_gmodule(dihedral_group(PermGroup, 8), QQ), 2)    # 4 = 1^2 + 2
    (regular_gmodule(dihedral_group(PermGroup, 8), QQ)[1], 4) # 8 = 1^4 + 2^2
    (natural_gmodule(quaternion_group(PermGroup, 8), QQ), 4)  # 8 = 1^4 + 4
    (natural_gmodule(alternating_group(5), QQ), 4)            # 5 = 1 + 4
  ]

  @testset for (M, d) in examples
    z = Oscar.GModuleFromGap.split_into_homogenous(M)
    nonlin = z[findfirst(x -> dim(x) == d, z)]
    spl = Oscar.GModuleFromGap.split_homogenous(nonlin)
  end
end

for (p, k) = lf
x = (p^k)(b)
h = hom(M, M, hom(M.M, M.M, matrix(x)))
append!(H, split_into_homogenous(kernel(h)[1]))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't it be "homogeneous" instead of "homogenous"?

@fieker
Copy link
Contributor Author

fieker commented Feb 28, 2025 via email

@ThomasBreuer
Copy link
Member

what is the problem in lll_basis?

I get

julia> M = regular_gmodule(dihedral_group(PermGroup, 8), QQ)[1]
G-module for permutation group of degree 4 and order 8 acting on vector space of dimension 8 over QQ

julia> d = 4;

julia> z = Oscar.GModuleFromGap.split_into_homogenous(M);

julia> nonlin = z[findfirst(x -> dim(x) == d, z)]
G-module for permutation group of degree 4 and order 8 acting on subspace over QQ with 4 generators and no relations

julia> Oscar.GModuleFromGap.split_homogenous(nonlin)
s = schur_index(E) = 1
k = dim((center(E))[1]) = 1
m = div(root(div(dim(E), k), 2), s) = 2
ERROR: MethodError: no method matching lll_basis(::Hecke.AlgAssAbsOrd{ZZRing, MatAlgebra{QQFieldElem, QQMatrix}})
[...]

@fieker
Copy link
Contributor Author

fieker commented Feb 28, 2025 via email

@ThomasBreuer
Copy link
Member

Yes.
When I change function Oscar.lll_basis(M::Hecke.AlgAssAbsOrd{MatAlgebra{QQFieldElem, QQMatrix}, ZZRing}) to Oscar.lll_basis(M::Hecke.AlgAssAbsOrd{ZZRing, MatAlgebra{QQFieldElem, QQMatrix}}) then the @testset passes.

(The next challenge will be splitting the homogeneous 4-dim. module of Q8 over an extension field.)

@fieker
Copy link
Contributor Author

fieker commented Mar 3, 2025 via email

for (p, k) = lf
x = (p^k)(b)
h = hom(M, M, hom(M.M, M.M, matrix(mC(x))))
append!(H, split_into_homogenous(kernel(h)[1]))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Concerning duplicate submodules:
My understanding is that once we have found one element in basis(C) whose minimal polynomial has two different factors, M is the direct sum of kernel and image of what is called x here.
Thus we can call split_into_homogenous for kernel and image, and return the concatenation of the results.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The thesis is bad on images, it is using kernel only. But we can always improve it...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants