You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
-
# lean4-logic
1
+
# Formalized Formal Logic
2
2
3
3
[This project](https://github.com/FormalizedFormalLogic/Foundation) is aim to formalize some various results of mathematical logic in [Lean Theorem Prover](https://lean-lang.org).
4
4
5
5
This book provides explanation and summaries of formalized concepts, theorems, propositions.
6
6
Proofs of them are not explained, refer to the code or the [references](./references.md).
7
7
8
-
Full documentation is [here](https://formalizedformallogic.github.io/Foundation/docs).
8
+
Full documentation is [here](https://formalizedformallogic.github.io/Incompleteness/docs/).
Copy file name to clipboardexpand all lines: src/first_order/notation.md
+4-2
Original file line number
Diff line number
Diff line change
@@ -8,10 +8,12 @@ variables `x y z` is just an example and can take any number of `ident`s.
8
8
## Binder Notation
9
9
10
10
Binder notation of term takes either form:
11
-
- Term: `‘x y z | e’`, Formula: `“x y z | e”`
11
+
- Term: `‘x y z. e’`, Formula: `“x y z. e”`
12
12
-`x y z` is the symbol for the bound variables, `k:num`-variables denotes the terms in `Semiterm L ξ (n + $k)`/`Semiformula L ξ (n + $k)`. (`n` can be variable)
13
+
- Term: `‘x y z | e’`, Formula: `“x y z | e”`
14
+
-`x y z` is the symbol for the free variables, `k:num`-variables denotes the terms in `Semiterm L ξ n`/`Semiformula L ξ n`. (`n` can be variable)
0 commit comments