/-
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 FormalConjecturesUtilBanach-Mazur Rotation Problem
arxiv/math.0110202
A note on Banach--Mazur problem by
mathoverflow/41211 Easy proof of the fact that isotropic spaces are Euclidean
open TopologicalSpace Metric MulActionnamespace Arxiv.«math.0110202»The group of linear isometric equivalences acts on the unit sphere by evaluation.
instance {E : Type*} [NormedAddCommGroup E] [NormedSpace ℝ E] :
MulAction (E ≃ₗᵢ[ℝ] E) (sphere (0 : E) 1) where
smul T x := ⟨T x, mem_sphere_zero_iff_norm.2 <| E:Type u_1inst✝¹:NormedAddCommGroup Einst✝:NormedSpace ℝ ET:E ≃ₗᵢ[ℝ] Ex:↑(sphere 0 1)⊢ ‖T ↑x‖ = 1 All goals completed! 🐙⟩
one_smul _ := rfl
mul_smul _ _ _ := rfl
The Banach--Mazur rotation problem asks whether every separable Banach space whose group of linear isometric equivalences acts transitively on the unit sphere is linearly isometric to a Hilbert space.
@[category research open, AMS 46]
theorem banach_mazur_rotation_problem : answer(sorry) ↔
∀ (E : Type*) [NormedAddCommGroup E] [NormedSpace ℝ E] [CompleteSpace E] [SeparableSpace E]
[IsPretransitive (E ≃ₗᵢ[ℝ] E) (sphere (0 : E) 1)], ∃ (H : Type*) (_ : NormedAddCommGroup H)
(_ : InnerProductSpace ℝ H),
Nonempty (E ≃ₗᵢ[ℝ] H) := ⊢ True ↔
∀ (E : Type u_1) [inst : NormedAddCommGroup E] [inst_1 : NormedSpace ℝ E] [CompleteSpace E] [SeparableSpace E]
[IsPretransitive (E ≃ₗᵢ[ℝ] E) ↑(sphere 0 1)], ∃ H x x_1, Nonempty (E ≃ₗᵢ[ℝ] H)
All goals completed! 🐙Every finite-dimensional real normed space whose isometry group acts transitively on the unit sphere is Euclidean.
@[category research solved, AMS 46]
theorem banach_mazur_rotation_problem.finite_dimensional {E : Type*} [NormedAddCommGroup E]
[NormedSpace ℝ E] [FiniteDimensional ℝ E] [IsPretransitive (E ≃ₗᵢ[ℝ] E) (sphere (0 : E) 1)] :
InnerProductSpaceable E := E:Type u_1inst✝³:NormedAddCommGroup Einst✝²:NormedSpace ℝ Einst✝¹:FiniteDimensional ℝ Einst✝:IsPretransitive (E ≃ₗᵢ[ℝ] E) ↑(sphere 0 1)⊢ InnerProductSpaceable E
All goals completed! 🐙
end Arxiv.«math.0110202»