-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #269 from HEPLean/WickContract
refactor: Move contractions
- Loading branch information
Showing
6 changed files
with
72 additions
and
11 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
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,43 @@ | ||
/- | ||
Copyright (c) 2024 Joseph Tooby-Smith. All rights reserved. | ||
Released under Apache 2.0 license as described in the file LICENSE. | ||
Authors: Joseph Tooby-Smith | ||
-/ | ||
import HepLean.PerturbationTheory.Contractions.Basic | ||
import HepLean.Meta.Informal.Basic | ||
/-! | ||
# Involutions | ||
There is an isomorphism between the type of contractions of a list `l` and | ||
the type of involutions from `Fin l.length` to `Fin l.length`. | ||
Likewise, there is an isomorphism from the type of full contractions of a list `l` | ||
and the type of fixed-point free involutions from `Fin l.length` to `Fin l.length`. | ||
Given this, the number of full contractions of a list `l` is | ||
is given by the OEIS sequence A000085. | ||
-/ | ||
|
||
namespace Wick | ||
|
||
open HepLean.List | ||
open FieldStatistic | ||
|
||
variable {𝓕 : Type} | ||
namespace Contractions | ||
|
||
variable {l : List 𝓕} | ||
|
||
informal_definition equivInvolution where | ||
math :≈ "There is an isomorphism between the type of contractions of a list `l` and | ||
the type of involutions from `Fin l.length` to `Fin l.length." | ||
|
||
informal_definition equivFullInvolution where | ||
math :≈ "There is an isomorphism from the type of full contractions of a list `l` | ||
and the type of fixed-point free involutions from `Fin l.length` to `Fin l.length." | ||
|
||
end Contractions | ||
|
||
end Wick |
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
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