From: Michal Wallace <michal.wallace@gmail.com>
Minor quirk:
theory Scratch
imports Main "HOL-Analysis.Polytope"
begin
lemma
assumes 0: "¬affine_dependent C0"
and 1: "¬affine_dependent C1"
and 2: "convex hull C0 = convex hull C1"
and 3: "aff_dim C0 = aff_dim C1"
shows "C0 = C1"
by (metis 0 1 2 3 subsetI subset_antisym
extreme_point_of_convex_hull_affine_independent)
end
Metis: Unused theorems: "local.3"
However, if I remove assumption 3, the proof fails...
Last updated: Nov 21 2024 at 12:39 UTC