Skip to content

Commit

Permalink
Fix misformalization.
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeTsoukalas committed Jan 27, 2025
1 parent 39351d3 commit 2c2ee36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lean4/src/putnam_2018_b3.lean
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ abbrev putnam_2018_b3_solution : Set ℕ := sorry
Find all positive integers $n < 10^{100}$ for which simultaneously $n$ divides $2^n$, $n-1$ divides $2^n-1$, and $n-2$ divides $2^n - 2$.
-/
theorem putnam_2018_b3
(n : ℕ) (hn : n < 0) :
(n : ℕ) (hn : 0 < n) :
(n < 10^100 ∧ ((n : ℤ) ∣ (2^n : ℤ) ∧ (n - 1 : ℤ) ∣ (2^n - 1 : ℤ) ∧ (n - 2 : ℤ) ∣ (2^n - 2 : ℤ))) ↔ n ∈ putnam_2018_b3_solution :=
sorry

0 comments on commit 2c2ee36

Please sign in to comment.