-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b3f16df
commit 86ae0b9
Showing
6 changed files
with
267 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
"Lie Algebras" => [ | ||
"introduction.md", | ||
"lie_algebras.md", | ||
"ideals_and_subalgebras.md", | ||
"modules.md", | ||
], | ||
] |
65 changes: 65 additions & 0 deletions
65
experimental/LieAlgebras/docs/src/ideals_and_subalgebras.md
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,65 @@ | ||
```@meta | ||
CurrentModule = Oscar | ||
DocTestSetup = quote | ||
using Oscar | ||
end | ||
``` | ||
|
||
# Ideals and Lie subalgebras | ||
|
||
Ideals and Lie subalgebras are represented by the types `LieAlgebraIdeal` and | ||
`LieSubalgebra` respectively. | ||
They are used similarly in most cases. | ||
|
||
## Functions | ||
|
||
### Ideals | ||
|
||
```@docs | ||
dim(::LieAlgebraIdeal) | ||
basis(::LieAlgebraIdeal) | ||
basis(::LieAlgebraIdeal, ::Int) | ||
Base.in(::LieAlgebraElem, ::LieAlgebraIdeal) | ||
bracket(::LieAlgebraIdeal{C,LieT}, ::LieAlgebraIdeal{C,LieT}) where {C<:RingElement,LieT<:LieAlgebraElem{C}} | ||
normalizer(::LieAlgebra, ::LieAlgebraIdeal) | ||
centralizer(::LieAlgebra, ::LieAlgebraIdeal) | ||
``` | ||
|
||
### Lie subalgebras | ||
|
||
```@docs | ||
dim(::LieSubalgebra) | ||
basis(::LieSubalgebra) | ||
basis(::LieSubalgebra, ::Int) | ||
Base.in(::LieAlgebraElem, ::LieSubalgebra) | ||
bracket(::LieSubalgebra{C,LieT}, ::LieSubalgebra{C,LieT}) where {C<:RingElement,LieT<:LieAlgebraElem{C}} | ||
normalizer(::LieAlgebra, ::LieSubalgebra) | ||
centralizer(::LieAlgebra, ::LieSubalgebra) | ||
is_self_normalizing(S::LieSubalgebra) | ||
``` | ||
|
||
## Constructors | ||
|
||
### Ideals | ||
|
||
```@docs | ||
ideal(::LieAlgebra, ::Vector; is_basis::Bool=false) | ||
ideal(::LieAlgebra{C}, ::LieAlgebraElem{C}) where {C<:RingElement} | ||
ideal(::LieAlgebra) | ||
``` | ||
|
||
### Lie subalgebras | ||
|
||
```@docs | ||
sub(::LieAlgebra, ::Vector; is_basis::Bool=false) | ||
sub(::LieAlgebra{C}, ::LieAlgebraElem{C}) where {C<:RingElement} | ||
sub(::LieAlgebra) | ||
``` | ||
|
||
## Conversions | ||
|
||
```@docs | ||
lie_algebra(::LieSubalgebra) | ||
lie_algebra(::LieAlgebraIdeal) | ||
sub(::LieAlgebra{C}, ::LieAlgebraIdeal{C}) where {C<:RingElement} | ||
``` |
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
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
Oops, something went wrong.