This repository was archived by the owner on Jul 24, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed
src/group_theory/group_action Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -342,11 +342,19 @@ attribute [to_additive add_action.quotient_action] mul_action.quotient_action
342
342
343
343
variables {β}
344
344
345
- @[simp, to_additive] lemma quotient.smul_mk [quotient_action β H] (a : β) (x : α) :
346
- (a • quotient_group.mk x : α ⧸ H) = quotient_group.mk (a • x ) := rfl
345
+ @[simp, to_additive] lemma quotient.smul_mk [quotient_action β H] (b : β) (a : α) :
346
+ (b • quotient_group.mk a : α ⧸ H) = quotient_group.mk (b • a ) := rfl
347
347
348
- @[simp, to_additive] lemma quotient.smul_coe [quotient_action β H] (a : β) (x : α) :
349
- (a • x : α ⧸ H) = ↑(a • x) := rfl
348
+ @[simp, to_additive] lemma quotient.smul_coe [quotient_action β H] (b : β) (a : α) :
349
+ (b • a : α ⧸ H) = ↑(b • a) := rfl
350
+
351
+ @[simp, to_additive] lemma quotient.mk_smul_out' [quotient_action β H] (b : β) (q : α ⧸ H) :
352
+ quotient_group.mk (b • q.out') = b • q :=
353
+ by rw [←quotient.smul_mk, quotient_group.out_eq']
354
+
355
+ @[simp, to_additive] lemma quotient.coe_smul_out' [quotient_action β H] (b : β) (q : α ⧸ H) :
356
+ ↑(b • q.out') = b • q :=
357
+ quotient.mk_smul_out' H b q
350
358
351
359
end quotient_action
352
360
You can’t perform that action at this time.
0 commit comments