Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Perfect subgroups #847

Merged
merged 5 commits into from
Oct 16, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions src/group-theory/perfect-subgroups.lagda.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# 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.subgroups
open import group-theory.perfect-groups
```

</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
```

A wikidata identifier was not available for this concept.
UlrikBuchholtz marked this conversation as resolved.
Show resolved Hide resolved