diff options
| author | Petri Hienonen <petri.hienonen@gmail.com> | 2026-02-15 15:59:37 +0200 |
|---|---|---|
| committer | Petri Hienonen <petri.hienonen@gmail.com> | 2026-02-15 15:59:37 +0200 |
| commit | 8ebc1b0ebb7244f73ace1407ccb672a151c3a052 (patch) | |
| tree | 1f3d3e58eee3e6ed21d49b3b70d40d3086e0cbd3 /SocietyCulture.lean | |
| parent | 5f787f25cc5caf4ba388734d96ff9205739504cb (diff) | |
| download | kb-8ebc1b0ebb7244f73ace1407ccb672a151c3a052.tar.zst | |
Update
Diffstat (limited to 'SocietyCulture.lean')
| -rw-r--r-- | SocietyCulture.lean | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/SocietyCulture.lean b/SocietyCulture.lean new file mode 100644 index 0000000..ca4d0da --- /dev/null +++ b/SocietyCulture.lean @@ -0,0 +1,17 @@ +import Mathematics + +-- Knowledge Base domain: SocietyCulture + +opaque Person : Type +-- Person extends Entity +axiom Person.val : Person → Entity +opaque Place : Type +-- Place extends Entity +axiom Place.val : Place → Entity +opaque City : Type +-- City extends Place +axiom City.val : City → Place +opaque athens : City +opaque birthyear : Person → Nat +opaque bornIn : Person → Place → Prop +axiom fact_bornIn_socrates_athens : bornIn socrates athens |
