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

Banach-Mazur Rotation Problem

References:

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 declaration uses 'sorry'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 declaration uses 'sorry'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»