/-
Copyright 2026 The Formal Conjectures Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-/
import FormalConjecturesUtilErdős Problem 353
[Er83d] Erdős, Paul,
[Ko23] Kovač, V.,
[KoPr24] Kovač, V. and B. Predojević,
[Ko25] J. Koizumi,
open Affine EuclideanGeometry MeasureTheory
open scoped Real
namespace Erdos353
Let $A\subseteq \mathbb{R}^2$ be a measurable set with infinite measure. Must $A$ contain the vertices of an isosceles trapezoid of area $1$? What about an isosceles triangle, or a right-angled triangle, or a cyclic quadrilateral, or a convex polygon with congruent sides?
Koizumi [Ko25] has resolved this question, proving that any set with infinite measure must contain the vertices of an isosceles trapezoid, an isosceles triangle, and a right-angled triangle, all of area $1$.
This statement formalizes the leading question, for isosceles trapezoids; the remaining configurations are given as variants below. The area of a polygon is taken to be the Lebesgue measure of the convex hull of its vertices.
@[category research solved, AMS 28 51]
theorem erdos_353 : answer(True) ↔
∀ A : Set ℝ², MeasurableSet A → volume A = ⊤ →
∃ a ∈ A, ∃ b ∈ A, ∃ c ∈ A, ∃ d ∈ A,
IsIsoscelesTrapezoid a b c d ∧
volume (convexHull ℝ {a, b, c, d}) = 1 := ⊢ True ↔
∀ (A : Set ℝ²),
MeasurableSet A →
volume A = ⊤ →
∃ a ∈ A, ∃ b ∈ A, ∃ c ∈ A, ∃ d ∈ A, IsIsoscelesTrapezoid a b c d ∧ volume ((convexHull ℝ) {a, b, c, d}) = 1
All goals completed! 🐙
Every measurable $A\subseteq \mathbb{R}^2$ with infinite measure contains the vertices of an isosceles triangle of area $1$.
Koizumi [Ko25] has resolved this question, proving that any set with infinite measure must contain the vertices of an isosceles trapezoid, an isosceles triangle, and a right-angled triangle, all of area $1$.
Note the area condition forces a, b, c to be affinely independent, so no separate
non-degeneracy hypothesis is needed.
@[category research solved, AMS 28 51]
theorem erdos_353.variants.isosceles_triangle :
∀ A : Set ℝ², MeasurableSet A → volume A = ⊤ →
∃ a ∈ A, ∃ b ∈ A, ∃ c ∈ A,
IsIsosceles a b c ∧
volume (convexHull ℝ {a, b, c}) = 1 := ⊢ ∀ (A : Set ℝ²),
MeasurableSet A → volume A = ⊤ → ∃ a ∈ A, ∃ b ∈ A, ∃ c ∈ A, IsIsosceles a b c ∧ volume ((convexHull ℝ) {a, b, c}) = 1
All goals completed! 🐙
Every measurable $A\subseteq \mathbb{R}^2$ with infinite measure contains the vertices of a right-angled triangle of area $1$.
Koizumi [Ko25] has resolved this question, proving that any set with infinite measure must contain the vertices of an isosceles trapezoid, an isosceles triangle, and a right-angled triangle, all of area $1$.
Note the area condition forces a, b, c to be affinely independent, so no separate
non-degeneracy hypothesis is needed.
@[category research solved, AMS 28 51]
theorem erdos_353.variants.right_angled_triangle :
∀ A : Set ℝ², MeasurableSet A → volume A = ⊤ →
∃ a ∈ A, ∃ b ∈ A, ∃ c ∈ A,
IsRightAngled a b c ∧
volume (convexHull ℝ {a, b, c}) = 1 := ⊢ ∀ (A : Set ℝ²),
MeasurableSet A →
volume A = ⊤ → ∃ a ∈ A, ∃ b ∈ A, ∃ c ∈ A, IsRightAngled a b c ∧ volume ((convexHull ℝ) {a, b, c}) = 1
All goals completed! 🐙
Every measurable $A\subseteq \mathbb{R}^2$ with infinite measure contains the vertices of a cyclic quadrilateral of area $1$.
Kovač and Predojević [KoPr24] have proved that this is true for cyclic quadrilaterals - that is, every set with infinite measure contains four distinct points on a circle such that the quadrilateral determined by these four points has area $1$. The quadrilateral determined by four distinct concyclic points is their convex hull.
@[category research solved, AMS 28 51]
theorem erdos_353.variants.cyclic_quadrilateral :
∀ A : Set ℝ², MeasurableSet A → volume A = ⊤ →
∃ Q : Set ℝ², Q ⊆ A ∧ Q.ncard = 4 ∧ Cospherical Q ∧
volume (convexHull ℝ Q) = 1 := ⊢ ∀ (A : Set ℝ²), MeasurableSet A → volume A = ⊤ → ∃ Q ⊆ A, Q.ncard = 4 ∧ Cospherical Q ∧ volume ((convexHull ℝ) Q) = 1
All goals completed! 🐙
The answer is negative for convex polygons with congruent sides: Kovač and Predojević [KoPr24] prove that there exists a set of infinite measure such that every convex polygon with congruent sides and all vertices in the set has area $<1$.
@[category research solved, AMS 28 51]
theorem erdos_353.variants.congruent_sides :
∃ A : Set ℝ², MeasurableSet A ∧ volume A = ⊤ ∧
∀ (n : ℕ) (v : Fin (n + 3) → ℝ²),
IsCcwConvexPolygon v → (∀ i, v i ∈ A) →
(∀ i, dist (v i) (v (i + 1)) = dist (v 0) (v 1)) →
volume (convexHull ℝ (Set.range v)) < 1 := ⊢ ∃ A,
MeasurableSet A ∧
volume A = ⊤ ∧
∀ (n : ℕ) (v : Fin (n + 3) → ℝ²),
IsCcwConvexPolygon v →
(∀ (i : Fin (n + 3)), v i ∈ A) →
(∀ (i : Fin (n + 3)), dist (v i) (v (i + 1)) = dist (v 0) (v 1)) → volume ((convexHull ℝ) (Set.range v)) < 1
All goals completed! 🐙
end Erdos353