Skip to content

Implementation of consequences and lemmas for Groups #2695

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

Open
jmougeot opened this issue Apr 11, 2025 · 1 comment
Open

Implementation of consequences and lemmas for Groups #2695

jmougeot opened this issue Apr 11, 2025 · 1 comment

Comments

@jmougeot
Copy link
Contributor

As I have already started with Semigroups in PR #2688 and Monoids in PR #2692, the next step seems to be Groups.

I’m considering whether we should define specific left and right inverse properties within the Monoid structure and then generalize these in the Group structure.

@jamesmckinna
Copy link
Contributor

jamesmckinna commented Apr 12, 2025

Consider looking first at Quasigroup (without identity; so the the left- and right- operations are definable, but not necessarily 'inverse's) and then Loop (with; so then we do get "left and right inverse properties") although I'm not entirely sure how much more is provable for each of those than is already covered under their existing Properties modules ...

... But NB I have already once refactored Group to make use of Loop properties, and initially that's counterintuitive because the signature of Loop is 'richer' than that of Group (precisely because the axiomatisation is weaker!)... and we should be striving to build these successive layers of Properties in order of strength of axiomatisation...

... but don't forget Commutative as another important axis of variation in the axiomatisation...

...to go back to the thread, there is the general question of considering Solver-like normal forms within each structure, relative to the associated Free instance of the structure, some of which depend on decidability and/or commutativity of the underlying Carrier to be effective : (I'm hazy on how well this all works out in practice)

  • List.NonEmpty for Semigroup / non-empty lists-with-natural number multiplicity (run-length encoding, in the decidable case)
  • List for Monoid / run-length encoded lists
  • Signed lists, for Group/ integer-run-length-encoding (free Z-module on the generators...)
  • ...

Others with greater expertise might care to weigh in here...

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

No branches or pull requests

2 participants