Intersecting closed extreme faces of a compact parent share a parent vertex
ProvedHirsch.closed_extreme_faces_shared_point_has_parent_vertexextreme-faceshirsch-conjecturepath-repairpolyhedra
If two closed extreme faces of a compact Euclidean parent share any point, even a nonvertex point, they share a parent extreme vertex.
Preamble
import Mathlib import Mathlib.Analysis.Convex.KreinMilman import Definitions.Def_Hirsch_model open scoped BigOperators RealInnerProductSpace open Set Hirsch
Formal statement
namespace Hirsch
theorem closed_extreme_faces_shared_point_has_parent_vertex
{d : ℕ} (P F G : Set (EuclideanSpace ℝ (Fin d)))
(hP : IsCompact P) (hF : IsExtreme ℝ P F) (hG : IsExtreme ℝ P G)
(hFc : IsClosed F) (hGc : IsClosed G)
(x : EuclideanSpace ℝ (Fin d)) (hxF : x ∈ F) (hxG : x ∈ G) :
∃ v, v ∈ extremePoints ℝ P ∧ v ∈ F ∧ v ∈ G := by sorry
end HirschSource
Kernel-verified theorem from jjoshua2/prove2me-work PR #48/#50.