Goto Chapter: Top 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 Ind
 [Top of Book]  [Contents]   [Previous Chapter]   [Next Chapter] 

9 Category of graded rows and category of graded columns
 9.1 Constructors
 9.2 Attributes
 9.3 GAP Categories
 9.4 Tools to simplify code

9 Category of graded rows and category of graded columns

9.1 Constructors

9.1-1 CategoryOfGradedColumns
‣ CategoryOfGradedColumns( R )( attribute )

Returns: a category

The argument is a homalg graded ring \(R\). The output is the category of graded columns over \(R\).

9.1-2 CategoryOfGradedRows
‣ CategoryOfGradedRows( R )( attribute )

Returns: a category

The argument is a homalg graded ring \(R\). The output is the category of graded rows over \(R\).

9.1-3 GradedRow
‣ GradedRow( degree_list, R )( operation )

Returns: an object

The arguments are a list of degrees and a homalg graded ring \(R\). The list of degrees must be of the form [ [ \(d_1\), \(n_1\) ], [ \(d_2\), \(n_2\) ], ... ] where \(d_i\) are degrees, i.e. elements in the degree group of \(R\) and the \(n_i\) are non-negative integers. Currently there are two formats that are supported to enter the degrees. Either one can enter them as lists of integers, say \(d_1 = [ 1,1,0,2 ]\), or they can be entered as Homalg_Module_Elements of the degree group of \(R\). In either case, the result is the graded row associated to the degrees \(d_i\) and their multiplicities \(n_i\).

9.1-4 GradedRow
‣ GradedRow( degree_list, R )( operation )

Returns: an object

As 'GradedRow', but the boolean (= third argument) allows to switch off checks on the input data. If this boolean is set to true, then the input checks are performed and otherwise they are not. Calling this constructor with 'false' is therefore suited for high performance applications.

9.1-5 GradedColumn
‣ GradedColumn( degree_list, R )( operation )

Returns: an object

The arguments are a list of degrees and a homalg graded ring \(R\). The list of degrees must be of the form [ [ \(d_1\), \(n_1\) ], [ \(d_2\), \(n_2\) ], ... ] where \(d_i\) are degrees, i.e. elements in the degree group of \(R\) and the \(n_i\) are non-negative integers. Currently there are two formats that are supported to enter the degrees. Either one can enter them as lists of integers, say \(d_1 = [ 1,1,0,2 ]\), or they can be entered as Homalg_Module_Elements of the degree group of \(R\). In either case, the result is the graded column associated to the degrees \(d_i\) and their multiplicities \(n_i\).

9.1-6 GradedColumn
‣ GradedColumn( degree_list, R )( operation )

Returns: an object

As 'GradedColumn', but the boolean (= third argument) allows to switch off checks on the input data. If this boolean is set to true, then the input checks are performed and otherwise they are not. Calling this constructor with 'false' is therefore suited for high performance applications.

9.1-7 GradedRowOrColumnMorphism
‣ GradedRowOrColumnMorphism( S, M, T )( operation )

Returns: a morphism in \(\mathrm{Hom}(S,T)\)

The arguments are an object \(S\) in the category of graded rows or columns over a homalg graded ring \(R\), a homalg matrix \(M\) over \(R\) and another graded row or column \(T\) over \(R\). The output is the morphism \(S \rightarrow T\) in the category of graded rows and columns over \(R\), whose underlying matrix is given by \(M\).

9.1-8 GradedRowOrColumnMorphism
‣ GradedRowOrColumnMorphism( S, M, T )( operation )

Returns: a morphism in \(\mathrm{Hom}(S,T)\)

As 'GradedRowOrColumnMorphism', but carries a fourth input parameter. If this boolean is set to false, then no checks on the input a performed. That option is therefore better suited for high performance applications.

9.2 Attributes

9.2-1 UnderlyingHomalgGradedRing
‣ UnderlyingHomalgGradedRing( A )( attribute )

Returns: a homalg graded ring

The argument is a graded row or column \(A\) over a homalg graded ring \(R\). The output is then the graded ring \(R\).

9.2-2 DegreeList
‣ DegreeList( A )( attribute )

Returns: a list

The argument is a graded row or column \(A\) over a homalg graded ring \(R\). The output is the degree_list of this object. To handle degree_lists most easily, degree_lists are redcued whenever an object is added to the category. E.g. the input degree_list [ [ \(d_1\), 1 ], [ \(d_1\), 1 ] ] will be turned into [ [ \(d_1\), 2 ] ].

9.2-3 RankOfObject
‣ RankOfObject( A )( attribute )

Returns: an integer

The argument is a graded row or column over a homalg graded ring \(R\). The output is the rank of this module.

9.2-4 UnderlyingHomalgGradedRing
‣ UnderlyingHomalgGradedRing( alpha )( attribute )

Returns: a homalg graded ring

The argument is a morphism \(\alpha\) in the category of graded rows or columns over a homalg graded ring \(R\). The output is the homalg graded ring \(R\).

9.2-5 UnderlyingHomalgMatrix
‣ UnderlyingHomalgMatrix( alpha )( attribute )

Returns: a matrix over a homalg graded ring

The argument is a morphism \(\alpha\) in the category of graded rows or columns over a homalg graded ring \(R\). The output is the underlying homalg matrix over \(R\).

9.3 GAP Categories

9.3-1 IsGradedRowOrColumn
‣ IsGradedRowOrColumn( object )( filter )

Returns: true or false

The GAP category of graded rows and columns over a graded ring \(R\).

9.3-2 IsGradedRow
‣ IsGradedRow( object )( filter )

Returns: true or false

The GAP category of graded rows over a graded ring \(R\).

9.3-3 IsGradedColumn
‣ IsGradedColumn( object )( filter )

Returns: true or false

The GAP category of graded columns over a graded ring \(R\).

9.3-4 IsGradedRowOrColumnMorphism
‣ IsGradedRowOrColumnMorphism( object )( filter )

Returns: true or false

The GAP category of morphisms of graded rows and columns over a graded ring \(R\).

9.3-5 IsGradedRowMorphism
‣ IsGradedRowMorphism( object )( filter )

Returns: true or false

The GAP category of morphisms of graded rows over a graded ring \(R\).

9.3-6 IsGradedColumnMorphism
‣ IsGradedColumnMorphism( object )( filter )

Returns: true or false

The GAP category of morphisms of graded columns over a graded ring \(R\).

9.4 Tools to simplify code

9.4-1 DeduceMapFromMatrixAndRangeForGradedRows
‣ DeduceMapFromMatrixAndRangeForGradedRows( m, R )( operation )

Returns: a morphism

The argument is a homalg_matrix m and a graded row R. We then consider the module map induced from m with range R. This operation then deduces the source of this map and returns the map in the category of graded rows if the degrees of the source are uniquely determined.

9.4-2 DeduceSomeMapFromMatrixAndRangeForGradedRows
‣ DeduceSomeMapFromMatrixAndRangeForGradedRows( m, R )( operation )

Returns: a morphism

The argument is a homalg_matrix m and a graded row R. This operation deduces the source of some map with matrix m and range R and returns the map in the category of graded rows.

9.4-3 DeduceMapFromMatrixAndSourceForGradedRows
‣ DeduceMapFromMatrixAndSourceForGradedRows( m, S )( operation )

Returns: a morphism

The argument is a homalg_matrix m and a graded row S. We then consider the module map induced from m with source S. This operation then deduces the range of this map and returns the map in the category of graded rows if the degrees of the range are uniquely determined.

9.4-4 DeduceSomeMapFromMatrixAndSourceForGradedRows
‣ DeduceSomeMapFromMatrixAndSourceForGradedRows( m, S )( operation )

Returns: a morphism

The argument is a homalg_matrix m and a graded row S. This operation deduces the range of some map with matrix m and source S and returns the map in the category of graded rows.

9.4-5 DeduceMapFromMatrixAndRangeForGradedCols
‣ DeduceMapFromMatrixAndRangeForGradedCols( m, R )( operation )

Returns: a morphism

The argument is a homalg_matrix m and a graded column R. We then consider the module map induced from m with range R. This operation then deduces the source of this map and returns the map in the category of graded columns if the degrees of the source are uniquely determined.

9.4-6 DeduceSomeMapFromMatrixAndRangeForGradedCols
‣ DeduceSomeMapFromMatrixAndRangeForGradedCols( m, R )( operation )

Returns: a morphism

The argument is a homalg_matrix m and a graded column R. This operation deduces the source of some map with matrix m and range R and returns the map in the category of graded columns.

9.4-7 DeduceMapFromMatrixAndSourceForGradedCols
‣ DeduceMapFromMatrixAndSourceForGradedCols( m, S )( operation )

Returns: a morphism

The argument is a homalg_matrix m and a graded column S. We then consider the module map induced from m with source S. This operation then deduces the range of this map and returns the map in the category of graded columns if the degrees of the range are uniquely determined.

9.4-8 DeduceSomeMapFromMatrixAndSourceForGradedCols
‣ DeduceSomeMapFromMatrixAndSourceForGradedCols( m, S )( operation )

Returns: a morphism

The argument is a homalg_matrix m and a graded column S. This operation deduces the range of some map with matrix m and source S and returns the map in the category of graded columns.

9.4-9 UnzipDegreeList
‣ UnzipDegreeList( S )( operation )

Returns: a list

Given a graded row or column S, the degrees are stored in compact form. For example, the degrees [ 1, 1, 1, 1 ] #! is stored internally as [ 1, 4 ]. The second argument is thus the multipicity with which three degree 1 appears. Still, it can be useful at times to also go in the opposite direction, i.e. to take the compact form [ #! 1, 4 ] and turn it into [ 1, 1, 1, 1 ]. This is performed by this operation and the obtained extended degree #! list is returned.

 [Top of Book]  [Contents]   [Previous Chapter]   [Next Chapter] 
Goto Chapter: Top 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 Ind

generated by GAPDoc2HTML