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

rowmotion for semidistributive lattices #39361

Open
1 task done
mantepse opened this issue Jan 21, 2025 · 0 comments
Open
1 task done

rowmotion for semidistributive lattices #39361

mantepse opened this issue Jan 21, 2025 · 0 comments

Comments

@mantepse
Copy link
Collaborator

Problem Description

Given a semidistributive lattice L, rowmotion is an action on L. This should be a method of FiniteLatticePoset.

Proposed Solution

Here is the germ of an implementation due to Nathan Williams:

L=CoxeterGroup(['A',2]).weak_lattice()
lower=dict([(l,Set(L.canonical_joinands(l))) for l in L])
J=L.join_irreducibles()
M=L.meet_irreducibles()
meet_to_join=dict([(m,L.meet([l for l in J if L.le(l,L.upper_covers(m)[0]) and not(L.le(l,m))])) for m in M])
upper=dict([(Set([meet_to_join[i] for i in L.canonical_meetands(l)]),l) for l in L])
def semi_dist_row(l):
   return upper[lower[l]]
from sage.combinat.cyclic_sieving_phenomenon import *
list(map(len,orbit_decomposition(L,semi_dist_row)))

Alternatives Considered

na

Additional Information

No response

Is there an existing issue for this?

  • I have searched the existing issues for a bug report that matches the one I want to file, without success.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant