Processing math: 100%

First time here? Check out the FAQ!

Ask Your Question
0

Finding subgroup summand

asked 12 years ago

Babgen gravatar image

updated 12 years ago

Hi everyone, Let (G,.) be group with two subgroup H and K, I want to know when HK=G? HK=h.k|hH,kK I try this

  D= CyclicPermutationGroup(9)
  H=D.subgroups()
  for i in H:
   for j in H:
     i*j=K
   if(K==G)

I have no idea how define " * "

Preview: (hide)

Comments

http://www.gap-system.org/Manuals/doc/ref/chap49_mj.html suggests this isn't possible even in GAP.

kcrisman gravatar imagekcrisman ( 12 years ago )

1 Answer

Sort by » oldest newest most voted
0

answered 12 years ago

updated 12 years ago

I suppose you can try this:

D = CyclicPermutationGroup(9)
H = D.subgroups()
for i in H:
    for j in H:
        K = set(D(x*y) for x in i for y in j)
        if K == set(D):
            ...
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 12 years ago

Seen: 720 times

Last updated: Oct 30 '12