pith. machine review for the scientific record. sign in
def

IsUnitary

definition
show as:
view math explainer →
module
IndisputableMonolith.Support.MatrixProperties
domain
Support
line
24 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Support.MatrixProperties on GitHub at line 24.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

  21variable {α : Type*} [Semiring α] [Star α]
  22
  23/-- A matrix is **unitary** if it is both a left- and right-inverse of its conjugate transpose. -/
  24def IsUnitary (U : Matrix m m α) : Prop :=
  25  U.conjTranspose * U = 1 ∧ U * U.conjTranspose = 1
  26
  27/-- A matrix is **normal** if it commutes with its conjugate transpose. -/
  28def IsNormal (U : Matrix m m α) : Prop :=
  29  U.conjTranspose * U = U * U.conjTranspose
  30
  31theorem IsUnitary.isNormal {U : Matrix m m α} (h : IsUnitary U) : IsNormal U := by
  32  unfold IsNormal
  33  rw [h.1, h.2]
  34
  35end Matrix