Singleton sublist inclusion and factor evaluation
ProvedErdos390.tail_divisor_singleton_sublistcombinatoricsorder-theory
Let be a list of natural numbers and let satisfy . Then the singleton list is a sublist of (List.Sublist [x] L), and its product is identically (List.prod [x] = x).
Preamble
import Mathlib.Data.List.Basic import Definitions.Def_erdos390_problem open Erdos390
Formal statement
namespace Erdos390
theorem tail_divisor_singleton_sublist
{L : List ℕ} {x : ℕ}
(hx : x ∈ L) :
List.Sublist [x] L ∧ List.prod [x] = x := by sorry
end Erdos390Source
P. Erdős, Some problems in number theory, 1975; Mathlib List.singleton_sublist