-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR defines perfect subgroups. --------- Co-authored-by: Fredrik Bakke <[email protected]>
- Loading branch information
1 parent
c674508
commit c5ba6a3
Showing
2 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Perfect subgroups | ||
|
||
```agda | ||
module group-theory.perfect-subgroups where | ||
``` | ||
|
||
<details><summary>Imports</summary> | ||
|
||
```agda | ||
open import foundation.propositions | ||
open import foundation.universe-levels | ||
|
||
open import group-theory.groups | ||
open import group-theory.perfect-groups | ||
open import group-theory.subgroups | ||
``` | ||
|
||
</details> | ||
|
||
## Idea | ||
|
||
A [subgroup](group-theory.subgroups.md) `H` of a [group](group-theory.groups.md) | ||
`G` is a **perfect subgroup** if it is a | ||
[perfect group](group-theory.perfect-groups.md) on its own. | ||
|
||
## Definitions | ||
|
||
### The predicate of being a perfect subgroup | ||
|
||
```agda | ||
module _ | ||
{l1 l2 : Level} (G : Group l1) (H : Subgroup l2 G) | ||
where | ||
|
||
is-perfect-prop-Subgroup : Prop (l1 ⊔ l2) | ||
is-perfect-prop-Subgroup = is-perfect-prop-Group (group-Subgroup G H) | ||
|
||
is-perfect-Subgroup : UU (l1 ⊔ l2) | ||
is-perfect-Subgroup = type-Prop is-perfect-prop-Subgroup | ||
|
||
is-prop-is-perfect-Subgroup : is-prop is-perfect-Subgroup | ||
is-prop-is-perfect-Subgroup = is-prop-type-Prop is-perfect-prop-Subgroup | ||
``` | ||
|
||
## External links | ||
|
||
A wikidata identifier was not available for this concept. |