Skip to content

Commit c37abb6

Browse files
committed
more style changes
1 parent 40743ea commit c37abb6

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Mathlib/RingTheory/HopfAlgebra/TensorAlgebra.lean

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,27 +64,27 @@ variable (R : Type*) [CommRing R] {M : Type*} [AddCommGroup M] [Module R M]
6464

6565
local 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. -/
6868
def 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]
7676
theorem 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]
8686
lemma 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

9090
open Algebra Bialgebra Coalgebra in

0 commit comments

Comments
 (0)