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

Added comment on convention #3467

Merged
merged 2 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion docs/src/InvariantTheory/reductive_groups.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ subfield $k$ of $K$ which is supported by OSCAR:

In OSCAR, the basic set-up for a linearly reductive group in the context of Derksen's algorithm is provided by the
function `linearly_reductive_group`. At current state, this only supports rational actions of the special linear group
(in characteristic zero). For the action of this group by linear substitution on forms, an explicit Reynolds operator is
(in characteristic zero). For the action of this group by linear
substitution on, say, $n$-ary forms of degree $d$, an explicit Reynolds operator is
given by Cayley's Omega-process. We show this at work later in this section.


Expand Down
6 changes: 5 additions & 1 deletion experimental/InvariantTheory/src/InvariantTheory.jl
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,11 @@ vector_space_dimension(R::RepresentationLinearlyReductiveGroup) = ncols(R.rep_ma
@doc raw"""
representation_on_forms(G::LinearlyReductiveGroup, d::Int)

If `G` is the special linear group acting by linear substitution on forms of degree `d`, return the corresponding representation.
If `G` is the special linear group acting by linear substitution on, say, `n`-ary forms of degree `d`, return the corresponding representation.

!!! note
In accordance with classical papers, an $n$-ary form of degree $d$ in $K[x_1, \dots, x_n]$ is written as a $K$-linear combination
of the $K$-basis with elements $\binom{n}{I}x^I$. Here, $I = (i_1, \dots, i_n)\in\mathbb Z_{\geq 0}^n$ with $i_1+\dots +i_n =d$.

# Examples
```jldoctest
Expand Down
Loading