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

documentation of IsPrimitive improved #3363

Merged
merged 2 commits into from Mar 21, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/ref/grpoper.xml
Expand Up @@ -99,7 +99,7 @@ in the following ways:
actually induces a homomorphism
and the results are unpredictable if this is not the case.
</Item>
<Mark><C>OrbitsDomain</C><M>( extset )</M></Mark>
<Mark><C>OrbitsDomain</C><M>( xset )</M></Mark>
fingolfin marked this conversation as resolved.
Show resolved Hide resolved
<Item>
A third variant is to call the operation with an external set,
which then provides <M>G</M>, <M>\Omega</M> and <M>\mu</M>.
Expand Down
30 changes: 25 additions & 5 deletions lib/oprt.gd
Expand Up @@ -1769,10 +1769,11 @@ OrbitsishOperation( "Earns", OrbitsishReq, false, NewAttribute );
## <M>D</M> if and only if for every pair of points <M>d, e \in D</M>
## there is an element <M>g</M> in <A>G</A> such that <M>d^g = e</M>.
## <P/>
## For permutation groups, the syntax <C>IsTransitive(<A>G</A>)</C> is also
## permitted and tests whether the group is transitive on the points moved
## by it, that is the group <M>\langle (2,3,4),(2,3) \rangle</M>
## is transitive (on 3 points).
## For a permutation groups <A>G</A>, one may also invoke this as
## <C>IsTransitive(<A>G</A>)</C>, which tests whether the group is
## transitive with respect to its natural action on the points moved by it.
## For example the group <M>\langle (2,3,4),(2,3) \rangle</M>
## is transitive on the three points 2, 3, 4.
## </Description>
## </ManSection>
## <#/GAPDoc>
Expand All @@ -1783,13 +1784,16 @@ OrbitsishOperation( "IsTransitive", OrbitsishReq, false, NewProperty );
#############################################################################
##
#O IsPrimitive( <G>, <Omega>[, <gens>, <acts>][, <act>] )
#P IsPrimitive( <G> )
#P IsPrimitive( <xset> )
##
## <#GAPDoc Label="IsPrimitive">
## <ManSection>
## <Heading>IsPrimitive</Heading>
## <Oper Name="IsPrimitive" Arg='G, Omega[, gens, acts][, act]'
## Label="for a group, an action domain, etc."/>
## <Prop Name="IsPrimitive" Arg='G'
## Label="for a permutation group"/>
## <Prop Name="IsPrimitive" Arg='xset'
## Label="for an external set"/>
##
Expand All @@ -1799,7 +1803,23 @@ OrbitsishOperation( "IsTransitive", OrbitsishReq, false, NewProperty );
## <P/>
## <Index>primitive</Index>
## An action is <E>primitive</E> if it is transitive and the action admits
## no nontrivial block systems. See&nbsp;<Ref Sect="Block Systems"/>.
## no nontrivial block systems. See&nbsp;<Ref Sect="Block Systems"/> for
## the definition of block systems.
## <P/>
## For a permutation groups <A>G</A>, one may also invoke this as
## <C>IsPrimitive(<A>G</A>)</C>, which tests whether the group is
## primitive with respect to its natural action on the points moved by it.
## For example the group <M>\langle (2,3,4),(2,3) \rangle</M>
## is primitive on the three points 2, 3, 4.
## <P/>
## For an explanation of the meaning of all the inputs, please refer to
## &nbsp;<Ref Sect="About Group Actions"/>.
## <P/>
## <E>Note:</E> This operation does not tell whether a matrix group is
## primitive in the sense of preserving a direct sum of vector spaces.
## To do this use <C>IsPrimitiveMatrixGroup</C> or
## <C>IsPrimitive</C> from the package <Package>IRREDSOL</Package>.
##
## <Example><![CDATA[
## gap> IsPrimitive(g,Orbit(g,(1,2)(3,4)));
## true
Expand Down