Skip to content

Commit 45b0606

Browse files
authored
Merge pull request #9 from arajasek/asr/resolve-sorries
feat: S2_MaximalAbelianSubgroups: resolve 2 sorries
2 parents 3c27f28 + 47c2107 commit 45b0606

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

ClassificationOfSubgroups/Ch6_MaximalAbelianSubgroupClassEquation/S2_MaximalAbelianSubgroup.lean

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1533,11 +1533,17 @@ theorem A_subgroupOf_normalizer_MulEquiv_conj_A_subgroupOf_conj_quot_eq
15331533
· intro hy
15341534
simp [mem_subgroupOf] at hy ⊢
15351535
rw [← A_eq_conj_A'] at h
1536-
sorry
1536+
rcases h with ⟨b, hb, bx⟩
1537+
simpa [mul_assoc, ← bx] using
1538+
(A.mul_mem_cancel_left hb).mpr
1539+
((A.mul_mem_cancel_right (A.inv_mem hb)).mpr hy)
15371540
· intro hy
15381541
simp [mem_subgroupOf] at hy ⊢
15391542
rw [← A_eq_conj_A'] at h
1540-
sorry
1543+
rcases h with ⟨b, hb, bx⟩
1544+
simp [mul_assoc, ← bx] at hy
1545+
apply (A.mul_mem_cancel_left hb).mp at hy
1546+
exact (A.mul_mem_cancel_right (A.inv_mem hb)).mp hy
15411547
· simp only [subtype_apply, mem_subgroupOf]
15421548
rwa [← mem_inv_pointwise_smul_iff, ← MonoidHom.map_inv, A_eq_conj_A']
15431549
· simp only [subtype_apply, MulAut.smul_def, conj_apply]

0 commit comments

Comments
 (0)