Sext sublist inclusion and sextic factor evaluation
ProvedErdos390.tail_divisor_sext_sublistcombinatoricsorder-theory
Let be a strictly ascending list of natural numbers (L.Pairwise (· < ·)), and let satisfy and . Then the six-element list is a sublist of (List.Sublist [a, b, c, d, e, f'] L), and its product is (List.prod [a, b, c, d, e, f'] = a * b * c * d * e * f').
Preamble
import Mathlib.Data.List.Basic import Definitions.Def_erdos390_problem open Erdos390
Formal statement
namespace Erdos390
theorem tail_divisor_sext_sublist
{L : List ℕ} {a b c d e f' : ℕ}
(hL : L.Pairwise (· < ·))
(ha : a ∈ L) (hb : b ∈ L) (hc : c ∈ L) (hd : d ∈ L) (he : e ∈ L) (hf : f' ∈ L)
(hab : a < b) (hbc : b < c) (hcd : c < d) (hde : d < e) (hef : e < f') :
List.Sublist [a, b, c, d, e, f'] L ∧ List.prod [a, b, c, d, e, f'] = a * b * c * d * e * f' := by sorry
end Erdos390Source
P. Erdős, Some problems in number theory, 1975; Mathlib List.Sublist constructors