English
The collection of conformal maps on X with the stated domain and composition rules forms a pregroupoid.
Русский
Общий набор конформальных отображений на X вместе с определением областей определения и композиции образуют пре-групподио
LaTeX
$$$\text{ConformalPregroupoid}(X):\text{ pregrouloid on }X$$
Lean4
/-- The pregroupoid of conformal maps. -/
def conformalPregroupoid : Pregroupoid X
where
property f u := ∀ x, x ∈ u → ConformalAt f x
comp {f _} _ _ hf hg _ _ _ x hx := (hg (f x) hx.2).comp x (hf x hx.1)
id_mem x _ := conformalAt_id x
locality _ h x
hx :=
let ⟨_, _, h₂, h₃⟩ := h x hx
h₃ x ⟨hx, h₂⟩
congr hu h hf x hx := (hf x hx).congr hx hu h