Documentation

Mathlib.Analysis.Complex.Isometry

Isometries of the Complex Plane #

The lemma linear_isometry_complex states the classification of isometries in the complex plane. Specifically, isometries with rotations but without translation. The proof involves:

  1. creating a linear isometry g with two fixed points, g(0) = 0, g(1) = 1
  2. applying linear_isometry_complex_aux to g

The proof of linear_isometry_complex_aux is separated in the following parts:

  1. show that the real parts match up: LinearIsometry.re_apply_eq_re
  2. show that I maps to either I or -I
  3. every z is a linear combination of a + b * I

References #

An element of the unit circle defines a LinearIsometryEquiv from โ„‚ to itself, by rotation.

Instances For
    @[simp]
    theorem rotation_apply (a : Circle) (z : โ„‚) :
    (rotation a) z = โ†‘a * z
    @[simp]
    theorem rotation_trans (a b : Circle) :
    (rotation a).trans (rotation b) = rotation (b * a)

    Takes an element of โ„‚ โ‰ƒโ‚—แตข[โ„] โ„‚ and checks if it is a rotation, returns an element of the unit circle.

    Instances For
      theorem rotation_injective :
      Function.Injective โ‡‘rotation
      theorem LinearIsometry.im_apply_eq_im_or_neg_of_re_apply_eq_re {f : โ„‚ โ†’โ‚—แตข[โ„] โ„‚} (hโ‚‚ : โˆ€ (z : โ„‚), (f z).re = z.re) (z : โ„‚) :
      (f z).im = z.im โˆจ (f z).im = -z.im

      The matrix representation of rotation a is equal to the conformal matrix !![re a, -im a; im a, re a].

      @[simp]

      The determinant of rotation (as a linear map) is equal to 1.

      @[simp]

      The determinant of rotation (as a linear equiv) is equal to 1.