Skip to content

Commit

Permalink
Add missing Abelian groups docs (#1631)
Browse files Browse the repository at this point in the history
  • Loading branch information
paemurru authored Oct 2, 2024
1 parent bdeaacb commit a5801c7
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 2 deletions.
6 changes: 5 additions & 1 deletion docs/Build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ using Pkg, Nemo, Documenter, DocumenterVitepress, DocumenterCitations
"elliptic_curves/basics.md",
"elliptic_curves/finite_fields.md",
"elliptic_curves/number_fields.md",],
"Abelian groups" => "abelian/introduction.md",
"Abelian groups" => [ "abelian/introduction.md",
"abelian/elements.md",
"abelian/maps.md",
"abelian/structural.md",
],
"Class field theory" => "class_fields/intro.md",
"Misc" => ["FacElem.md",
"sparse/intro.md",
Expand Down
6 changes: 6 additions & 0 deletions docs/src/manual/abelian/elements.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
```@meta
CurrentModule = Hecke
DocTestSetup = quote
using Hecke
end
```
## Elements
Elements in a finitely generated abelian group are of type `FinGenAbGroupElem`
and are always given as a linear combination of the generators.
Expand Down
1 change: 1 addition & 0 deletions docs/src/manual/abelian/introduction.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```@meta
CurrentModule = Hecke
DocTestSetup = quote
using Hecke
end
Expand Down
9 changes: 8 additions & 1 deletion docs/src/manual/abelian/maps.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
```@meta
CurrentModule = Hecke
DocTestSetup = quote
using Hecke
end
```
## Maps
Maps between abelian groups are mainly of type `FinGenAbGroupHom`. They
allow normal map operations such as `image`, `preimage`, `domain`, `codomain`
and can be created in a variety of situations.
## Maps

Maps between abelian groups can be constructed via
- images of the generators
- pairs of elements
Expand Down
6 changes: 6 additions & 0 deletions docs/src/manual/abelian/structural.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
```@meta
CurrentModule = Hecke
DocTestSetup = quote
using Hecke
end
```
## Structural Computations
Abelian groups support a wide range of structural operations such as
- enumeration of subgroups
Expand Down

0 comments on commit a5801c7

Please sign in to comment.