Skip to content

Commit

Permalink
feat(linear_algebra/quadratic_form/complex): all non-degenerate quadr…
Browse files Browse the repository at this point in the history
…atic forms over ℂ are equivalent (#10951)
  • Loading branch information
eric-wieser committed Dec 21, 2021
1 parent b434a0d commit 55f575f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/linear_algebra/quadratic_form/complex.lean
Expand Up @@ -80,4 +80,10 @@ theorem equivalent_sum_squares {M : Type*} [add_comm_group M] [module ℂ M]
let ⟨w, ⟨hw₁⟩⟩ := Q.equivalent_weighted_sum_squares_units_of_nondegenerate' hQ in
⟨hw₁.trans (isometry_sum_squares_units w)⟩

/-- All nondegenerate quadratic forms on the complex numbers are equivalent. -/
theorem complex_equivalent {M : Type*} [add_comm_group M] [module ℂ M]
[finite_dimensional ℂ M] (Q₁ Q₂ : quadratic_form ℂ M) (hQ₁ : (associated Q₁).nondegenerate)
(hQ₂ : (associated Q₂).nondegenerate) : equivalent Q₁ Q₂ :=
(Q₁.equivalent_sum_squares hQ₁).trans (Q₂.equivalent_sum_squares hQ₂).symm

end quadratic_form

0 comments on commit 55f575f

Please sign in to comment.