File tree Expand file tree Collapse file tree
Mathlib/RingTheory/HopfAlgebra Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -66,10 +66,10 @@ local notation "T[" M "]" => TensorAlgebra R M
6666
6767/-- Antipode in `TensorAlgebra R M` as an algebra map. -/
6868def antipode : T[M] →ₗ[R] T[M] := (MulOpposite.opLinearEquiv R).symm.comp
69- (lift R (( MulOpposite.opLinearEquiv R).comp (-( ι R))) ).toLinearMap
69+ (lift R <| ( MulOpposite.opLinearEquiv R).comp <| - ι R).toLinearMap
7070
7171@[simp]
72- lemma antipode_ι_apply (x : M) : antipode R (ι R x) = -( ι R) x := by
72+ lemma antipode_ι_apply (x : M) : antipode R (ι R x) = -ι R x := by
7373 simp [antipode]
7474
7575@[simp]
@@ -78,13 +78,13 @@ theorem antipode_antihom_apply (x y : T[M]) : antipode R (x * y) = antipode R y
7878
7979@[simp]
8080theorem antipode_antihom : antipode R ∘ₗ mul' R T[M] =
81- mul' R T[M] ∘ₗ TensorProduct.comm R T[M] T[M] ∘ₗ (( antipode R) ⊗ₘ ( antipode R) ) := by
81+ mul' R T[M] ∘ₗ TensorProduct.comm R T[M] T[M] ∘ₗ (antipode R ⊗ₘ antipode R) := by
8282 ext
8383 simp
8484
8585@[simp]
8686lemma antipode_algebraMap_apply (r : R) :
87- antipode R (( algebraMap R T[M]) r) = algebraMap R T[M] r := by
87+ antipode R (algebraMap R T[M] r) = algebraMap R T[M] r := by
8888 simp [antipode]
8989
9090open Algebra Bialgebra Coalgebra in
You can’t perform that action at this time.
0 commit comments