[Next][Prev] [Right] [Left] [Up] [Index] [Root]
True if M is the full module of supersingular points and not a submodule.
True if M_1 equals M_2.
True if P equals Q.
True if M_1 is a subset of M_2.
True if the underlying computations on M are done using
Brandt modules.
True if the underlying computations on M are done using
the Mestre-Oesterle method of graphs.
> M := SupersingularModule(11);
> S := CuspidalSubspace(M);
> IsAmbientSpace(S);
false
> IsAmbientSpace(M);
true
> S eq M;
false
> S eq S;
true
> S.1 eq S.1;
true
> S.1 eq M.1 - M.2;
true
> S.1 eq M.1;
false
> S subset M;
true
> UsesBrandt(S);
false
> UsesMestre(S);
true
> M := SupersingularModule(11 : Brandt := true);
> UsesBrandt(M);
true
> UsesMestre(M);
false
[Next][Prev] [Right] [Left] [Up] [Index] [Root]