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

Brennan's Conjecture

Reference:

namespace BrennanConjecture open Complex Filter MeasureTheory Set Topology def unitDisk : Set := {z | z < 1}

The standard class $\mathcal{S}$ of normalised univalent functions on $\mathbb{D}$.

structure IsUnivalentNormalized (f : ) : Prop where analyticOn : AnalyticOn f unitDisk injOn : InjOn f unitDisk map_zero : f 0 = 0 deriv_zero : deriv f 0 = 1

$\beta_f(\tau) := \limsup_{r \to 1^-} \frac{\log \int_{-\pi}^{\pi} |f'(re^{i\theta})|^\tau , d\theta}{|\log(1-r)|}$

noncomputable def integralMeansSpectrum (f : ) (τ : ) : := limsup (fun r => Real.log ( θ in Ioc (-Real.pi) Real.pi, deriv f (r exp (Complex.I * θ)) ^ τ) / |Real.log (1 - r)|) (𝓝[Iio 1] (1 : )) noncomputable def universalSpectrum (τ : ) : := sSup {β | f : , IsUnivalentNormalized f β = integralMeansSpectrum f τ} noncomputable def universalSpectrumBounded (τ : ) : := sSup {β | f : , IsUnivalentNormalized f Bornology.IsBounded (f '' unitDisk) β = integralMeansSpectrum f τ} @[category API, AMS 30] theorem declaration uses 'sorry'universalSpectrumBounded_le (τ : ) : universalSpectrumBounded τ universalSpectrum τ := τ:universalSpectrumBounded τ universalSpectrum τ τ:BddAbove {β | f, IsUnivalentNormalized f β = integralMeansSpectrum f τ}τ:{β | f, IsUnivalentNormalized f Bornology.IsBounded (f '' unitDisk) β = integralMeansSpectrum f τ}.Nonemptyτ:{β | f, IsUnivalentNormalized f Bornology.IsBounded (f '' unitDisk) β = integralMeansSpectrum f τ} {β | f, IsUnivalentNormalized f β = integralMeansSpectrum f τ} τ:BddAbove {β | f, IsUnivalentNormalized f β = integralMeansSpectrum f τ} All goals completed! 🐙 τ:{β | f, IsUnivalentNormalized f Bornology.IsBounded (f '' unitDisk) β = integralMeansSpectrum f τ}.Nonempty All goals completed! 🐙 τ:{β | f, IsUnivalentNormalized f Bornology.IsBounded (f '' unitDisk) β = integralMeansSpectrum f τ} {β | f, IsUnivalentNormalized f β = integralMeansSpectrum f τ} τ:f: hf:IsUnivalentNormalized fleft✝:Bornology.IsBounded (f '' unitDisk)integralMeansSpectrum f τ {β | f, IsUnivalentNormalized f β = integralMeansSpectrum f τ}; All goals completed! 🐙 @[category test, AMS 30] theorem declaration uses 'sorry'integralMeansSpectrum_id (τ : ) : integralMeansSpectrum id τ = 0 := τ:integralMeansSpectrum id τ = 0 All goals completed! 🐙

Brennan's conjecture, part 1: $B(-2) = 1$.

@[category research open, AMS 30] theorem declaration uses 'sorry'brennan_universalSpectrum : universalSpectrum (-2) = 1 := universalSpectrum (-2) = 1 All goals completed! 🐙

Brennan's conjecture, part 2: $B_b(-2) = 1$.

@[category research open, AMS 30] theorem declaration uses 'sorry'brennan_universalSpectrumBounded : universalSpectrumBounded (-2) = 1 := universalSpectrumBounded (-2) = 1 All goals completed! 🐙

Brennan's conjecture, part 3: $B(-2) = B_b(-2)$.

@[category API, AMS 30] theorem brennan_spectra_eq : universalSpectrum (-2) = universalSpectrumBounded (-2) := universalSpectrum (-2) = universalSpectrumBounded (-2) All goals completed! 🐙

Brennan's conjecture: $B(-2) = B_b(-2) = 1$.

@[category API, AMS 30] theorem brennan : universalSpectrum (-2) = 1 universalSpectrumBounded (-2) = 1 := brennan_universalSpectrum, brennan_universalSpectrumBounded end BrennanConjecture