Conformal Maps #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
A continuous linear map between real normed spaces X
and Y
is conformal_at
some point x
if it is real differentiable at that point and its differential is_conformal_linear_map
.
Main definitions #
conformal_at
: the main definition of conformal mapsconformal
: maps that are conformal at every pointconformal_factor_at
: the conformal factor of a conformal map at some point
Main results #
- The conformality of the composition of two conformal maps, the identity map and multiplications by nonzero constants
conformal_at_iff_is_conformal_map_fderiv
: an equivalent definition of the conformality of a map
In analysis.calculus.conformal.inner_product
:
conformal_at_iff
: an equivalent definition of the conformality of a map
In geometry.euclidean.angle.unoriented.conformal
:
conformal_at.preserves_angle
: if a map is conformal atx
, then its differential preserves all angles atx
Tags #
conformal
Warning #
The definition of conformality in this file does NOT require the maps to be orientation-preserving. Maps such as the complex conjugate are considered to be conformal.
A map f
is said to be conformal if it has a conformal differential f'
.
Equations
- conformal_at f x = ∃ (f' : X →L[ℝ] Y), has_fderiv_at f f' x ∧ is_conformal_map f'
A function is a conformal map if and only if its differential is a conformal linear map
A map f
is conformal if it's conformal at every point.
Equations
- conformal f = ∀ (x : X), conformal_at f x