-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Very preliminary work on defining the incidence algebra of a locally finite poset, as towards defining more sophisticated objects such as Möbius inversion. Work stalled pending infrastructure in the commutative algebra library for "unordered" addition indexed by finite sets and for some module theory, but want to get this file with a thumbtack in the upstream before turning that way. --------- Co-authored-by: Egbert Rijke <[email protected]>
- Loading branch information
1 parent
4fd43e9
commit f5702e9
Showing
3 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Incidence algebras | ||
|
||
```agda | ||
module order-theory.incidence-algebras where | ||
``` | ||
|
||
<details><summary>Imports</summary> | ||
|
||
```agda | ||
open import commutative-algebra.commutative-rings | ||
|
||
open import foundation.dependent-pair-types | ||
open import foundation.inhabited-types | ||
open import foundation.universe-levels | ||
|
||
open import foundation-core.cartesian-product-types | ||
|
||
open import order-theory.interval-subposets | ||
open import order-theory.locally-finite-posets | ||
open import order-theory.posets | ||
``` | ||
|
||
</details> | ||
|
||
## Idea | ||
|
||
For a [locally finite poset](order-theory.locally-finite-posets.md) 'P' and | ||
[commutative ring](commutative-algebra.commutative-rings.md) 'R', there is a | ||
canonical 'R'-associative algebra whose underlying 'R'-module are the set-maps | ||
from the nonempty [intervals](order-theory.interval-subposets.md) of 'P' to 'R' | ||
(which we constructify as the inhabited intervals), and whose multiplication is | ||
given by a "convolution" of maps. This is the **incidence algebra** of 'P' over | ||
'R'. | ||
|
||
## Definition | ||
|
||
```agda | ||
module _ | ||
{l1 l2 l3 : Level} (P : Poset l1 l2) (loc-fin : is-locally-finite-Poset P) | ||
(x y : type-Poset P) (R : Commutative-Ring l3) | ||
where | ||
|
||
interval-map : UU (l1 ⊔ l2 ⊔ l3) | ||
interval-map = inhabited-interval P → type-Commutative-Ring R | ||
``` | ||
|
||
WIP: complete this definition after _R-modules_ have been defined. Defining | ||
convolution of maps would be aided as well with a lemma on 'unordered' addition | ||
in abelian groups over finite sets. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters