Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Foundation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MitM
Foundation
Commits
2f6ba67d
Commit
2f6ba67d
authored
6 years ago
by
Florian Rabe
Browse files
Options
Downloads
Patches
Plain Diff
no message
parent
8bbeaf47
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/math.mmt
+9
-11
9 additions, 11 deletions
source/math.mmt
with
9 additions
and
11 deletions
source/math.mmt
+
9
−
11
View file @
2f6ba67d
...
...
@@ -35,14 +35,13 @@ theory Logic : http://gl.mathhub.info/MMT/LFX/TypedHierarchy?LFHierarchy =
ded : prop ⟶ type ❘ # ⊦ 1 prec -500 ❘ role Judgment ❘ = DED ❙
ImplicitProof : {A} ⊦ A ❘ # ImplicitProof 1 ❙
rule lf?TermIrrelevanceRule (ded) ([A : prop] ImplicitProof A) ❙
rule lf?PiIrrelevanceRule ❙
/T Equality on terms. The type A is left implicit and can be inferred by MMT ❙
eq : {A:𝒰 100} A ⟶ A ⟶ bool ❘ # 2 ≐ 3 prec -5 ❘ role Eq ❘ // = EQUAL ❙
// coer
s
ion : {A : type, P : A ⟶ prop,a} ⊦ P a ⟶ ⟨ A | ([x] ⊦ P x) ⟩ ❘ # coerce 3 %I4❙
// coer
s
ion_theorem : {A : type,P : A ⟶ prop,a,p : ⊦ P a} ⊦ eq ⟨ A | ([x] ⊦ P x) ⟩ (coer
s
ion A P a p) a ❙
// coer
c
ion : {A : type, P : A ⟶ prop,a} ⊦ P a ⟶ ⟨ A | ([x] ⊦ P x) ⟩ ❘ # coerce 3 %I4❙
// coer
c
ion_theorem : {A : type,P : A ⟶ prop,a,p : ⊦ P a} ⊦ eq ⟨ A | ([x] ⊦ P x) ⟩ (coer
c
ion A P a p) a ❙
rule rules?BooleanLiterals ❙
...
...
@@ -136,9 +135,9 @@ theory IntLiterals : ur:?PLF =
rule rules?IntMinus ❙
plus_int_lit : int_lit ⟶ int_lit ⟶ int_lit ❙
rule rules?IntPlus ❙
times_int_lit : int_lit ⟶ int_lit ⟶ int_lit ❙
times_int_lit : int_lit ⟶ int_lit ⟶ int_lit ❙
rule rules?IntTimes ❙
leq_int_lit : int_lit ⟶ int_lit ⟶ bool ❙
leq_int_lit : int_lit ⟶ int_lit ⟶ bool ❙
rule rules?IntLeq ❙
❚
...
...
@@ -150,9 +149,9 @@ theory RealLiterals : ur:?LF =
leq_real_lit : real_lit ⟶ real_lit ⟶ bool ❙
rule rules?RealLeq ❙
minus_real_lit : real_lit ⟶ real_lit
# - 1 prec 25 ❙
minus_real_lit : real_lit ⟶ real_lit
❘
# - 1 prec 25 ❙
rule rules?RealMinus ❙
plus_real_lit : real_lit ⟶ real_lit ⟶ real_lit
# 1 + 2 prec 25 ❙
plus_real_lit : real_lit ⟶ real_lit ⟶ real_lit
❘
# 1 + 2 prec 25 ❙
rule rules?RealPlus ❙
times_real_lit : real_lit ⟶ real_lit ⟶ real_lit ❘ # 1 × 2 prec 20 ❙
rule rules?RealTimes ❙
...
...
@@ -208,6 +207,7 @@ theory Strings : ur:?LF =
include ?Logic❙
string: type ❙
rule rules?StringLiterals ❙
concat: string ⟶ string ⟶ string❙
❚
/T Now some more complex types. First lists.❚
...
...
@@ -289,8 +289,6 @@ theory DescriptionOperator : ur:?PLF =
if_false : {A : 𝒰 100, P : bool, a : A, b : A, p : ⊦ ¬ P } ⊦ (if P then a else b) ≐ b ❘ // = [A,P,a,b,p] _ ❘ ❙
❚
/T Finally, a theory that puts everything together (not recommended, because modularity) ❚
theory ProductTypes : http://gl.mathhub.info/MMT/LFX/Sigma?LFSigma =
// to have it in the meta-theory ❙
❚
...
...
@@ -300,8 +298,6 @@ theory InductiveTypes : http://gl.mathhub.info/MMT/LFX/WTypes?Inductive =
❚
theory Sequences =
// Ditto ❙
/T Just an alternative notation: ❙
include ur:?Sequences ❙
include ur:?LFS ❙
include ?Logic ❙
...
...
@@ -310,6 +306,8 @@ theory Sequences =
exists_seq : {A: type}{n} (A^n ⟶ prop) ⟶ prop ❘ # ∃n 3 prec -101 ❘ = [A,n][P] ¬ forall_seq A n [s : A^n] ¬ (P s)❙
❚
/T Finally, a theory that puts everything together (not recommended, because modularity) ❚
theory Math : ur:?PLF =
include ?Subtyping ❙
include ?Logic ❙
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment