-
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 #254 from HEPLean/FeynmanDiagrams
chore: File for momentum & position space wick contract
- Loading branch information
Showing
5 changed files
with
72 additions
and
2 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,35 @@ | ||
/- | ||
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.Wick.Contract | ||
/-! | ||
# Wick contraction in momentum space | ||
Every complete Wick contraction leads to a function on momenta, following | ||
the Feynman rules. | ||
-/ | ||
|
||
namespace Wick | ||
|
||
informal_definition toMomentumTensorTree where | ||
math :≈ "A function which takes a Wick contraction, | ||
and corresponding momenta, and outputs the corresponding | ||
tensor tree associated with that contraction. The rules for how this is done | ||
is given by the `Feynman rules`. | ||
The appropriate ring to consider here is a ring permitting the abstract notion of a | ||
Dirac delta function. " | ||
ref :≈ " | ||
Some references for Feynman rules are: | ||
- QED Feynman rules: http://hitoshi.berkeley.edu/public_html/129A/point.pdf, | ||
- Weyl Fermions: http://scipp.ucsc.edu/~haber/susybook/feyn115.pdf." | ||
|
||
informal_definition toMomentumTensor where | ||
math :≈ "The tensor associated to `toMomentumTensorTree` associated with a Wick contraction, | ||
and corresponding internal momenta, and external momenta." | ||
deps :≈ [``toMomentumTensorTree] | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/- | ||
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 contraction in position space | ||
Every complete Wick contraction leads to a function on positions, following | ||
the Feynman rules. | ||
## Further reading | ||
The following reference provides a good resource for Wick contractions of external fields. | ||
- http://www.dylanjtemples.com:82/solutions/QFT_Solution_I-6.pdf | ||
-/ | ||
|
||
namespace Wick | ||
|
||
|
||
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