Skip to content

Commit 2ea2d32

Browse files
committed
rename
1 parent 3bc783a commit 2ea2d32

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# lean4-logic
1+
# Formalized Formal Logic
22

33
[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).
44

55
This book provides explanation and summaries of formalized concepts, theorems, propositions.
66
Proofs of them are not explained, refer to the code or the [references](./references.md).
77

8-
Full documentation is [here](https://formalizedformallogic.github.io/Foundation/docs).
8+
Full documentation is [here](https://formalizedformallogic.github.io/Incompleteness/docs/).
99

1010
## Main Results
1111

src/first_order/notation.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ variables `x y z` is just an example and can take any number of `ident`s.
88
## Binder Notation
99

1010
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”`
1212
- `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)
1315
- Term: `‘e’`, Formula: `“e”`
14-
- An abbreviation of `| e’`/`| e”`
16+
- An abbreviation of `. e’`/`. e”`
1517

1618

1719
## Expression of term/formula

0 commit comments

Comments
 (0)