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 @@ -64,27 +64,27 @@ variable (R : Type*) [CommRing R] {M : Type*} [AddCommGroup M] [Module R M]
6464
6565local notation "T[" M "]" => TensorAlgebra R M
6666
67- /-- Antipode in `TensorAlgebra R M` as an algebra map. -/
67+ /-- Antipode in `TensorAlgebra R M` as a linear 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]
7676theorem antipode_antihom_apply (x y : T[M]) : antipode R (x * y) = antipode R y * antipode R x := by
7777 simp [antipode]
7878
7979@[simp]
80- theorem 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
80+ theorem antipode_mul' : antipode R ∘ₗ mul' R T[M] =
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