Skip to content

Commit ffa9a48

Browse files
committed
fx?
1 parent 4489ad8 commit ffa9a48

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

Foundation/FirstOrder/Bootstrapping/DerivabilityCondition/D3.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ noncomputable abbrev toNumVec (w : Fin n → V) : SemitermVec V ℒₒᵣ n k :=
3838

3939
variable (T)
4040

41-
theorem term_complete {n : ℕ} (t : FirstOrder.ClosedArithmeticSemiterm n) (w : Fin n → V) :
41+
theorem term_complete {n : ℕ} (t : FirstOrder.ClosedSemiterm ℒₒᵣ n) (w : Fin n → V) :
4242
T.internalize V ⊢ (toNumVec w ⤕ ⌜t⌝) ≐ 𝕹 (t.valbm V w) :=
4343
match t with
4444
| #z => by simp

Foundation/FirstOrder/Bootstrapping/Syntax/Formula/Coding.lean

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -268,16 +268,16 @@ namespace Sentence
268268
def typed_quote_def (σ : Semisentence L n) :
269269
(⌜σ⌝ : Bootstrapping.Semiformula V L n) = ⌜(Rewriting.emb σ : SyntacticSemiformula L n)⌝ := rfl
270270

271-
@[simp] lemma typed_quote_eq (t u : ClosedArithmeticSemiterm n) :
271+
@[simp] lemma typed_quote_eq (t u : ClosedSemiterm ℒₒᵣ n) :
272272
(⌜(“!!t = !!u” : ArithmeticSemisentence n)⌝ : Bootstrapping.Semiformula V ℒₒᵣ n) = (⌜t⌝ ≐ ⌜u⌝) := rfl
273273

274-
@[simp] lemma typed_quote_ne (t u : ClosedArithmeticSemiterm n) :
274+
@[simp] lemma typed_quote_ne (t u : ClosedSemiterm ℒₒᵣ n) :
275275
(⌜(“!!t ≠ !!u” : ArithmeticSemisentence n)⌝ : Bootstrapping.Semiformula V ℒₒᵣ n) = (⌜t⌝ ≉ ⌜u⌝) := rfl
276276

277-
@[simp] lemma typed_quote_lt (t u : ClosedArithmeticSemiterm n) :
277+
@[simp] lemma typed_quote_lt (t u : ClosedSemiterm ℒₒᵣ n) :
278278
(⌜(“!!t < !!u” : ArithmeticSemisentence n)⌝ : Bootstrapping.Semiformula V ℒₒᵣ n) = (⌜t⌝ <' ⌜u⌝) := rfl
279279

280-
@[simp] lemma typed_quote_nlt (t u : ClosedArithmeticSemiterm n) :
280+
@[simp] lemma typed_quote_nlt (t u : ClosedSemiterm ℒₒᵣ n) :
281281
(⌜(“!!t ≮ !!u” : ArithmeticSemisentence n)⌝ : Bootstrapping.Semiformula V ℒₒᵣ n) = (⌜t⌝ ≮' ⌜u⌝) := rfl
282282

283283
noncomputable instance : GödelQuote (Semisentence L n) V where

Foundation/FirstOrder/Bootstrapping/Syntax/Term/Coding.lean

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -164,14 +164,14 @@ def empty_typed_quote_def (t : ClosedSemiterm L n) :
164164
@[simp] lemma empty_typed_quote_func (f : L.Func k) (v : Fin k → ClosedSemiterm L n) :
165165
(⌜func f v⌝ : Bootstrapping.Semiterm V L n) = Bootstrapping.Semiterm.func f fun i ↦ ⌜v i⌝ := rfl
166166

167-
@[simp] lemma empty_typed_quote_add (t u : ClosedArithmeticSemiterm n) :
168-
(⌜(‘!!t + !!u’ : ClosedArithmeticSemiterm n)⌝ : Bootstrapping.Semiterm V ℒₒᵣ n) = ⌜t⌝ + ⌜u⌝ := rfl
167+
@[simp] lemma empty_typed_quote_add (t u : ClosedSemiterm ℒₒᵣ n) :
168+
(⌜(‘!!t + !!u’ : ClosedSemiterm ℒₒᵣ n)⌝ : Bootstrapping.Semiterm V ℒₒᵣ n) = ⌜t⌝ + ⌜u⌝ := rfl
169169

170-
@[simp] lemma empty_typed_quote_mul (t u : ClosedArithmeticSemiterm n) :
171-
(⌜(‘!!t * !!u’ : ClosedArithmeticSemiterm n)⌝ : Bootstrapping.Semiterm V ℒₒᵣ n) = ⌜t⌝ * ⌜u⌝ := rfl
170+
@[simp] lemma empty_typed_quote_mul (t u : ClosedSemiterm ℒₒᵣ n) :
171+
(⌜(‘!!t * !!u’ : ClosedSemiterm ℒₒᵣ n)⌝ : Bootstrapping.Semiterm V ℒₒᵣ n) = ⌜t⌝ * ⌜u⌝ := rfl
172172

173173
@[simp] lemma empty_typed_quote_numeral_eq_numeral (k : ℕ) :
174-
(⌜(↑k : ClosedArithmeticSemiterm n)⌝ : Bootstrapping.Semiterm V ℒₒᵣ n) = typedNumeral ↑k := by
174+
(⌜(↑k : ClosedSemiterm ℒₒᵣ n)⌝ : Bootstrapping.Semiterm V ℒₒᵣ n) = typedNumeral ↑k := by
175175
simp [empty_typed_quote_def]
176176

177177
noncomputable instance : GödelQuote (ClosedSemiterm L n) V where

0 commit comments

Comments
 (0)