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