Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/GAP/pkg/linearalgebraforcap/examples/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 17.8.2025 mit Größe 950 B image not shown  

Quelle  Liftable.g   Sprache: unbekannt

 
#! @Chapter Examples and Tests

#! @Section Liftable

LoadPackage( "LinearAlgebraForCAP" );

#! @Example
field := HomalgFieldOfRationals( );;
vec := MatrixCategory( field );;
V := MatrixCategoryObject( vec, 1 );;
W := MatrixCategoryObject( vec, 2 );;
alpha := VectorSpaceMorphism( V, HomalgMatrix( [ [ 1, -1 ] ], 1, 2, field ), W );;
beta := VectorSpaceMorphism( W, HomalgMatrix( [ [ 1, 2 ], [ 3, 4 ] ], 2, 2, field ), W );;
IsLiftable( alpha, beta );
#! true
IsLiftable( beta, alpha );
#! false
IsLiftableAlongMonomorphism( beta, alpha );
#! true
gamma := VectorSpaceMorphism( W, HomalgMatrix( [ [ 1 ], [ 1 ] ], 2, 1, field ), V );;
IsColiftable( beta, gamma );
#! true
IsColiftable( gamma, beta );
#! false
IsColiftableAlongEpimorphism( beta, gamma );
#! true
PreCompose( PreInverseForMorphisms( gamma ), gamma ) = IdentityMorphism( V );
#! true
PreCompose( alpha, PostInverseForMorphisms( alpha ) ) = IdentityMorphism( V );
#! true
#! @EndExample

[ Dauer der Verarbeitung: 0.22 Sekunden  (vorverarbeitet)  ]