Ask Your Question
1

Obtaining quotient posets of the Boolean lattice via Sage

asked 4 years ago

klaaa gravatar image

updated 4 years ago

Let G be a subgroup of the symmetric group Sn that acts in a natural way on the Boolean lattice Bn, see for example chapter 5 of the book on algebraic combinatorics by Stanley.

Bn/G for a subgroup G of the symmetric group Sn (that acts naturally on Bn) is defined as the poset of orbits under the natural order (that is one orbit a is another orbit b if and only if there exists elements aa and bb such that ab).

The posets Bn/G are graded of rank n, rank-symmetric, rank-unimodal, and Sperner. See theorem 5.8. in the book of Stanley. In this book one can also find open problems about such posets and thus it might be a good class to study in Sage.

For example when n=3 and G is generated by the permutation (1,2) then the resulting poset is isomorphic to the product of the chain with 2 elements and the chain with 3 elements.

My question is how one can obtain the quotient poset Bn/G in Sage when one inputs the group G generated by cycles?

The Boolean lattice on n points can be obtained in Sage via B4=posets.BooleanLattice(4) . Im not sure how to obtain a subgroup of the symmetric group acting on Bn in SAGE and the resulting quotient poset.

Also is it possible to obtain the list of all connected posets obtained in this way for a given n? (meaning all connected posets of the form Bn/G where G is a subgroup of Sn). This will be a huge list but maybe for n<=5 it is possible to obtain it via sage.

Preview: (hide)

Comments

If you already have code to define Bn and G, please provide it.

Use the simplest example to illustrate the question: lowest n and simplest G.

slelievre gravatar imageslelievre ( 4 years ago )

1 Answer

Sort by » oldest newest most voted
2

answered 4 years ago

jipilab gravatar image

updated 4 years ago

Here is a snippet of code that can be used to produce the desired quotient poset. It is not meant to be the most optimal way, but it does return the desired object.

sage: G = PermutationGroup([[(1,2)],[(3,4)]])
sage: S = Set([1,2,3,4])
sage: GroundSet = S.subsets()
sage: Orbits = Set([Set(G.orbit(s, action = "OnSets")) for s in GroundSet])
sage: def quotient_order(a,b):
....:     for s1 in a:
....:         ss1 = set(s1)
....:         for s2 in b:
....:             ss2 = set(s2)
....:             if ss1.issubset(ss2):
....:                 return True
....:     return False
....: 
sage: QuotientPoset = Poset((Orbits,quotient_order))
sage: QuotientPoset.show()

To obtain all of the quotient posets, one should then loop over all permutation subgroups of Sn. These subgroups can be obtained this way:

sage: SG = SymmetricGroup(4)
sage: SG.subgroups()
Preview: (hide)
link

Comments

Thank you very much!

klaaa gravatar imageklaaa ( 4 years ago )

Your Answer

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

Add Answer

Question Tools

1 follower

Stats

Asked: 4 years ago

Seen: 318 times

Last updated: Aug 23 '20