-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ee7a21
commit 67c7253
Showing
2 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
import Game.Levels.Hard.level_1 | ||
import Game.MyNat.Multiplication | ||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import Game.Levels.Hard.level_2 | ||
|
||
|
||
World "Hard" | ||
Level 3 | ||
Title "Golbach" | ||
|
||
LemmaTab "Hard" | ||
|
||
namespace MyNat | ||
|
||
Introduction | ||
" | ||
The Golbach conjecture, first posed in 1792 in a letter to Euler states that every | ||
natural number greater than 2 is the sum of two prime numbers. It remains unproven | ||
to this day, but has been checked for all naturals up to 4 x 10¹⁸. | ||
" | ||
|
||
LemmaDoc MyNat.Golbach as "Golbach" in "Hard" " | ||
`Golbach` is the proof of disproof of the Golbach conjecture. | ||
" | ||
|
||
Statement Golbach : (∀ n : ℕ), n ≥ 2 → (∃ a b : ℕ), (Prime a) ∧ (Prime b) ∧ (n = a + b) := by | ||
sorry |