PhysLean/README.md

52 lines
2.3 KiB
Markdown
Raw Normal View History

2024-04-16 16:23:49 -04:00
# High Energy Physics in Lean
2024-05-02 15:25:35 -04:00
A project to digitalize high energy physics.
2024-04-21 16:58:14 -04:00
## Aims of this project
2024-04-17 06:38:25 -04:00
2024-04-22 07:01:50 -04:00
- Use Lean to create a exhaustive database of definitions, theorems, proofs and calculations in high energy physics.
2024-04-26 16:57:14 -04:00
- Make a libary that is easy to use by the high energy physics community.
2024-04-17 06:38:25 -04:00
- Keep the database up-to date with developments in MathLib4.
- Create github workflows of relevence to the high energy physics community.
2024-04-16 16:23:49 -04:00
2024-04-21 16:58:14 -04:00
## Where to learn more
2024-04-17 08:48:09 -04:00
2024-04-21 16:58:14 -04:00
- The documentation for this project is at:
2024-04-21 16:59:00 -04:00
2024-04-21 16:58:14 -04:00
https://heplean.github.io/HepLean/
2024-04-22 11:01:25 -04:00
2024-04-23 06:20:36 -04:00
- Watch this overview of HepLean:
2024-04-29 14:03:20 -04:00
https://www.youtube.com/watch?v=W2cObnopqas
2024-04-22 11:01:25 -04:00
- A list of 'Frequently asked questions' can be found on the Wiki for this project:
2024-04-22 11:01:50 -04:00
https://github.com/HEPLean/HepLean/wiki/The-answers-to-some-questions
2024-04-21 16:58:14 -04:00
- Feel free to connect on the Lean Zulip channel:
2024-04-21 16:59:00 -04:00
2024-04-21 16:58:14 -04:00
https://leanprover.zulipchat.com
2024-04-16 16:23:49 -04:00
2024-04-22 09:56:51 -04:00
- A small example script relating to the three fermion anomaly cancellation condition can be found [here](https://live.lean-lang.org/#code=import%20Mathlib.Tactic.Polyrith%20%0A%0Atheorem%20threeFamily%20(a%20b%20c%20%3A%20)%20(h%20%3A%20a%20%2B%20b%20%2B%20c%20%3D%200)%20(h3%20%3A%20a%20%5E%203%20%2B%20b%20%5E%203%20%2B%20c%20%5E%203%20%3D%200)%20%3A%20%0A%20%20%20%20a%20%3D%200%20%20b%20%3D%200%20%20c%20%3D%200%20%20%3A%3D%20by%20%0A%20%20have%20h1%20%3A%20c%20%3D%20-%20(a%20%2B%20b)%20%3A%3D%20by%20%0A%20%20%20%20linear_combination%20h%20%0A%20%20have%20h4%20%3A%20%203%20*%20a%20*%20b%20*%20c%20%3D%200%20%3A%3D%20by%20%0A%20%20%20%20rw%20%5B←%20h3%2C%20h1%5D%0A%20%20%20%20ring%20%0A%20%20simp%20at%20h4%20%0A%20%20exact%20or_assoc.mp%20h4%0A%20%20%0A)
2024-04-16 16:23:49 -04:00
## Contributing
We follow here roughly the same contribution policies as MathLib4 (which can be found [here](https://leanprover-community.github.io/contribute/index.html)).
2024-04-22 10:32:02 -04:00
2024-05-16 10:21:49 -04:00
A guide to contributing can be found [here](https://github.com/HEPLean/HepLean/blob/master/CONTRIBUTING.md).
2024-04-22 10:32:02 -04:00
If you want permission to create a pull-request for this repository contact Joseph Tooby-Smith on the lean Zulip, or email.
2024-04-16 16:23:49 -04:00
## Installation
### Installing Lean 4
See: https://leanprover-community.github.io/get_started.html
### Quick installation
2024-05-16 10:21:49 -04:00
- Clone this repository
2024-05-09 14:00:21 -04:00
- Open a terminal in the corresponding directory.
- Run `lake exe cache get`.
- Rune `lake build`.