We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46d2160 commit 9bf3b39Copy full SHA for 9bf3b39
GoldbachTm/Tm31/Content.lean
@@ -90,14 +90,16 @@ refine (?_ ∘ g) ?_
90
tauto
91
92
93
-theorem halt_lemma :
94
-(∃ (n x y: ℕ), Even n /\ n > 2 /\ x + y = n /\ Nat.Prime x /\ Nat.Prime y) →
95
-∃ i, nth_cfg i = none
+theorem halt_lemma_rev :
+(∃ i, nth_cfg i = none) → (∃ n, ¬ goldbach (2*n+4))
96
:= by
+intros h
97
sorry
98
99
-theorem halt_lemma_rev :
100
-∃ i, nth_cfg i = none →
101
-(∃ (n x y: ℕ), Even n /\ n > 2 /\ x + y = n /\ Nat.Prime x /\ Nat.Prime y)
+/-
+theorem halt_lemma_useless :
+(∃ (n x y: ℕ), Even n /\ n > 2 /\ x + y = n /\ Nat.Prime x /\ Nat.Prime y) →
102
+∃ i, nth_cfg i = none
103
104
105
+-/
0 commit comments