Skip to content

Commit 0aabc1e

Browse files
committed
add permanent conjecture
1 parent 6c6e0d9 commit 0aabc1e

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

FormalBook/Chapter_24.lean

+14-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ limitations under the License.
1515
1616
Authors: Moritz Firsching
1717
-/
18-
import Mathlib.Tactic
18+
import Mathlib.Data.Matrix.DoublyStochastic
19+
import Mathlib.Data.Real.Basic
1920
/-!
2021
# Van der Waerden's permanent conjecture
2122
@@ -36,3 +37,15 @@ import Mathlib.Tactic
3637
- Claim
3738
- Farkas Lemma
3839
-/
40+
41+
42+
43+
open Equiv
44+
namespace Matrix
45+
46+
variable {n : ℕ}
47+
48+
def per (M : Matrix (Fin n) (Fin n) ℝ) := ∑ σ : Perm (Fin n), ∏ i, M (σ i) i
49+
50+
theorem permanent_conjecture (M : Matrix (Fin n) (Fin n) ℝ) :
51+
M ∈ doublyStochastic ℝ (Fin n) → per M ≥ (n.factorial)/(n ^ n) := sorry

0 commit comments

Comments
 (0)