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

Add commutative law to modules #1898

Merged
merged 12 commits into from
Oct 16, 2023
Prev Previous commit
Next Next commit
Update changelog
Taneb committed May 5, 2023
commit 1b2b764a68e23ee6fac78997ab4d09eef3dc64dd
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -782,6 +782,10 @@ Non-backwards compatible changes
lookupₛ : P Respects _≈_ → All P xs → (∀ {x} → x ∈ xs → P x)
```
* `IsModule` now contains an extra law to enforce that left- and right- multiplication coincide:
```
*ₗ-*ᵣ-comm : Commutative **
```
Major improvements
------------------
@@ -1347,6 +1351,11 @@ New modules
Algebra.Module.Core
```

* Definitions for module-like algebraic structures with left- and right- multiplication over the same scalars:
```
Algebra.Module.Definitions.Bi.Simultaneous
```

* Constructive algebraic structures with apartness relations:
```
Algebra.Apartness