-
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 #251 from HEPLean/FeynmanDiagrams
feat: Wick species and informal lemmas
- Loading branch information
Showing
5 changed files
with
56 additions
and
8 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
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,38 @@ | ||
/- | ||
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.FeynmanDiagrams.Basic | ||
import HepLean.Meta.Informal | ||
/-! | ||
# Wick Species | ||
Note: There is very likely a much better name for what we here call a Wick Species. | ||
A Wick Species is a structure containing the basic information needed to write wick contractions | ||
for a theory, and calculate their corresponding Feynman diagrams. | ||
-/ | ||
|
||
/-! TODO: There should be some sort of notion of a group action on a Wick Species. -/ | ||
namespace Wick | ||
|
||
/-- The basic structure needed to write down Wick contractions for a theory and | ||
calculate the corresponding Feynman diagrams. | ||
WARNING: This definition is not yet complete. -/ | ||
structure Species where | ||
/-- The color of Field operators which appear in a theory. -/ | ||
𝓕 : Type | ||
/-- The map taking a field operator to its dual operator. -/ | ||
ξ : 𝓕 → 𝓕 | ||
/-- The condition that `ξ` is an involution. -/ | ||
ξ_involutive : Function.Involutive ξ | ||
/-- The color of vertices which appear in a theory. -/ | ||
𝓥 : Type | ||
/-- The number of edges each vertex corresponds to. -/ | ||
𝓥Fields : 𝓥 → Σ n, Fin n → 𝓕 | ||
|
||
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