11.1.2.1 HeckeSubmodule Objects

class HeckeSubmodule
Submodule of a Hecke module.
HeckeSubmodule( ambient, submodule, [dual_free_module=True], [check=None])

Instances of class HeckeSubmodule have the following methods (in addition to inherited methods and special methods):

ambient_hecke_module,$  $ complement,$  $ degeneracy_map,$  $ dual_free_module,$  $ free_module,$  $ intersection,$  $ is_ambient,$  $ is_new,$  $ is_old,$  $ is_submodule,$  $ linear_combination_of_basis,$  $ new_submodule,$  $ nonembedded_free_module,$  $ old_submodule,$  $ rank,$  $ submodule,$  $ submodule_from_nonembedded_module

Further documentation:

complement( [bound=None])

Return the largest Hecke-stable complement of this space.

degeneracy_map( level, [t=1])

The t-th degeneracy map from self to the space of ambient modular symbols of the given level. The level of self must be a divisor or multiple of level, and t must be a divisor of the quotient.

INPUT:
    level -- int, the level of the codomain of the map (positive int).
    t  -- int, the parameter of the degeneracy map, i.e., the map is
          related to f(q) |--> f(q^t).
          
OUTPUT:
    A linear function from self to the space of modular symbols
    of given level with the same weight, character, sign,
    etc., as this space.

dual_free_module( [bound=True], [anemic=None])

Compute embedded dual free module if possible. In general this won't be possible, e.g., if this space is not Hecke equivariant, possibly if it is not cuspidal, or if the characteristic is not 0. In all these cases we raise a RuntimeError exception.

intersection( other)

Returns the intersection of self and other, which must both lie in a common ambient space of modular symbols.

sage: M = ModularSymbols(43, sign=1)
sage: A = M[0] + M[1]
sage: B = M[1] + M[2]
sage: A.dimension(), B.dimension()
(2, 3)

sage: C = A.intersection(B); C.dimension()
1

is_new( [p=None])

Returns True if this Hecke module is p-new. If p is None, returns True if it is new.

is_old( [p=None])

Returns True if this Hecke module is p-old. If p is None, returns True if it is old.

is_submodule( V)

Returns True if and only if self is a submodule of V.

linear_combination_of_basis( v)

Return the linear combination of the basis of self given by the entries of v.

new_submodule( [p=None])

Return the new or p-new submodule of this space of modular symbols.

old_submodule( [p=None])

Return the old or p-old submodule of this space of modular symbols.

submodule( M, [Mdual=True], [check=None])

Construct a submodule of self from the embedded free module M.

submodule_from_nonembedded_module( V, [Vdual=True], [check=None])

INPUT:
    V -- submodule of ambient free module of the same rank as the
         rank of self.
OUTPUT:
    Hecke submodule of self

Instances of class HeckeSubmodule also have the following special methods:

__add__,$  $ __call__,$  $ __cmp__,$  $ __repr__,$  $ _compute_atkin_lehner_matrix,$  $ _compute_dual_hecke_matrix,$  $ _compute_hecke_matrix,$  $ _set_dual_free_module,$  $ _set_dual_free_module_from_nonembedded_module

Further documentation:

__call__( x, [check=False])

Coerce x into the ambient module and checks that x is in this submodule.

_set_dual_free_module_from_nonembedded_module( V)

INPUT:
    V -- submodule of ambient free module of the same rank as the
         rank of self.
OUTPUT:
    Hecke submodule of self

See About this document... for information on suggesting changes.