Skip to content

Commit

Permalink
Symm (#5)
Browse files Browse the repository at this point in the history
* Symm

* Delete comment
  • Loading branch information
KunhongDu authored Apr 19, 2024
1 parent 43732dd commit c2c03dd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion BonnAnalysis/Dual.lean
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ namespace IsConjExponent

lemma one_le_left (hpq : p.IsConjExponent q) : 1 ≤ p := sorry

lemma symm (hpq : p.IsConjExponent q) : q.IsConjExponent p := sorry
lemma symm (hpq : p.IsConjExponent q) : q.IsConjExponent p where
inv_add_inv_conj := by
rw [add_comm]
exact hpq.inv_add_inv_conj


lemma one_le_right (hpq : p.IsConjExponent q) : 1 ≤ q := hpq.symm.one_le_left

Expand Down

0 comments on commit c2c03dd

Please sign in to comment.