-
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 #253 from HEPLean/FeynmanDiagrams
feat: Informal def for Wick Contraction
- Loading branch information
Showing
4 changed files
with
54 additions
and
4 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,27 @@ | ||
/- | ||
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.Species | ||
/-! | ||
# Wick's theorem | ||
Wick's theorem is related to a result in probability theory called Isserlis' theorem. | ||
-/ | ||
|
||
namespace Wick | ||
open CategoryTheory | ||
open FeynmanDiagram | ||
open PreFeynmanRule | ||
|
||
informal_lemma wicks_theorem where | ||
math :≈ "Wick's theorem for fields which are not normally ordered." | ||
|
||
informal_lemma wicks_theorem_normal_order where | ||
math :≈ "Wick's theorem for which fields at the same space-time point are normally ordered." | ||
ref :≈ "https://www.physics.purdue.edu/~clarkt/Courses/Physics662/ps/qftch32.pdf" | ||
|
||
end Wick |