/- Copyright 2025 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 FormalConjecturesUtil

Erdős Problem 352

Reference: erdosproblems.com/352

open scoped EuclideanGeometryopen scoped ProbabilityTheory namespace Erdos352

Is there some $c > 0$ such that every measurable $A \subseteq \mathbb{R}^2$ of measure $\geq c$ contains the vertices of a triangle of area 1?

@[category research open, AMS 51] theorem declaration uses 'sorry'erdos_352 : answer(sorry) c > (0: ), A : Set ℝ², MeasurableSet A A c.toEReal ( t : Affine.Triangle ℝ², ( p : Fin 3, t.points p A) EuclideanGeometry.triangle_area (t.points 0) (t.points 1) (t.points 2) = 1) := True c > 0, (A : Set ℝ²), MeasurableSet A ( A) c t, (∀ (p : Fin 3), t.points p A) EuclideanGeometry.triangle_area (t.points 0) (t.points 1) (t.points 2) = 1 All goals completed! 🐙 end Erdos352