Skip to content

Commit b535750

Browse files
committed
test files for blueprint
1 parent 9353586 commit b535750

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

FormalBook/Chapter_01.lean

+2-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,8 @@ theorem infinity_of_primes₃:
197197
· refine' minFac_prime <| Nat.ne_of_gt _
198198
dsimp [mersenne]
199199
calc 1 < 2^2 - 1 := by norm_num
200-
_ ≤ 2^p - 1 := sub_one_le_sub_one <| pow_le_pow_of_le_right (succ_pos 1) (Prime.two_le hp)
200+
_ ≤ 2^p - 1 := Nat.pred_le_pred <| Nat.pow_le_pow_of_le_right Nat.zero_lt_two <| Nat.Prime.two_le hp
201+
--sub_one_le_sub_one <| pow_le_pow_of_le_right (succ_pos 1) (Prime.two_le hp)
201202
· have h2q : 2 ≤ q := by
202203
exact Prime.two_le <| minFac_prime <| Nat.ne_of_gt <| lt_of_succ_lt <|
203204
Nat.sub_le_sub_right ((pow_le_pow_of_le_right (succ_pos 1) (Prime.two_le hp))) 1

blueprint/src/content.tex

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@
44
%
55
% If you want to split the blueprint content into several files then
66
% the current file can be a simple sequence of \input. Otherwise It
7-
% can start with a \section or \chapter for instance.
7+
% can start with a \section or \chapter for instance.
8+
9+
\input{chapter/test}

0 commit comments

Comments
 (0)