Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
| Download
GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
Project: cocalc-sagemath-dev-slelievre
Views: 418346############################################################################# ## ## CAP package ## ## Copyright 2014, Sebastian Gutsche, TU Kaiserslautern ## Sebastian Posur, RWTH Aachen ## #! @Chapter Serre Quotients #! @Section Serre Quotients modeled by three arrows ## ############################################################################# DeclareCategory( "IsSerreQuotientCategoryByThreeArrowsObject", IsSerreQuotientCategoryObject ); DeclareCategory( "IsSerreQuotientCategoryByThreeArrowsMorphism", IsSerreQuotientCategoryMorphism ); ############################################## ## ## Attributes for serre category ## ############################################## DeclareFilter( "WasCreatedAsSerreQuotientCategoryByThreeArrows" ); ############################################## ## ## Attributes ## ############################################## ############################################## ## ## Constructor ## ############################################## #! @BeginGroup #! @Description #! Creates a Serre quotient category S with name <A>name</A> out of an Abelian category <A>A</A>. #! The Serre quotient category will be modeled upon the generalized morphisms by three arrows category of <A>A</A> #! If <A>name</A> is not given, a generic name is constructed out of the name of <A>A</A>. #! The argument <A>func</A> must be a unary function on the objects of <A>A</A> deciding the membership in #! the thick subcategory C mentioned above. #! @Arguments A,func[,name] #! @Returns a CAP category DeclareOperation( "SerreQuotientCategoryByThreeArrows", [ IsCapCategory, IsFunction, IsString ] ); DeclareOperation( "SerreQuotientCategoryByThreeArrows", [ IsCapCategory, IsFunction ] ); #! @EndGroup #! @Description #! Given a Serre quotient category <A>A/C</A> modeled by three arrows and an object <A>M</A> in <A>A</A>, #! this constructor returns the corresponding object in the Serre quotient category. #! @Arguments A/C, M #! @Returns an object DeclareOperation( "AsSerreQuotientCategoryByThreeArrowsObject", [ IsCapCategory, IsCapCategoryObject ] ); #! @Description #! Given a Serre quotient category <A>A/C</A> modeled by three arrows and a generalized morphism <A>phi</A> in #! the generalized morphism category <A>A/C</A> is modeled upon, #! this constructor returns the corresponding morphism in the Serre quotient category. #! @Arguments A/C, phi #! @Returns a morphism DeclareOperation( "SerreQuotientCategoryByThreeArrowsMorphism", [ IsCapCategory, IsGeneralizedMorphismByThreeArrows ] ); #! @Description #! Given a Serre quotient category <A>A/C</A> modeled by three arrows and three morphisms $\iota: M' \rightarrow M$, #! $\phi: M' \rightarrow N'$ and $\pi: N \rightarrow N'$ this operation contructs a #! morphism in the Serre quotient category. #! @Arguments A/C, iota, phi, pi #! @Returns a morphism DeclareOperation( "SerreQuotientCategoryByThreeArrowsMorphism", [ IsCapCategory, IsCapCategoryMorphism, IsCapCategoryMorphism, IsCapCategoryMorphism ] ); #! @Description #! Given a Serre quotient category <A>A/C</A> modeled by three arrows and two morphisms $\alpha: M \rightarrow X$ #! and $\beta: X \rightarrow N$ #! this operation constructs the corresponding morphism in the Serre quotient category. #! @Arguments A/C, alpha, beta #! @Returns a morphism DeclareOperation( "SerreQuotientCategoryByThreeArrowsMorphismWithSourceAid", [ IsCapCategory, IsCapCategoryMorphism, IsCapCategoryMorphism ] ); #! @Description #! Given a Serre quotient category <A>A/C</A> modeled by three arrows and two morphisms $\alpha: X \rightarrow M$ #! and $\beta: X \rightarrow N$ #! this operation constructs the corresponding morphism in the Serre quotient category. #! @Arguments A/C, alpha, beta #! @Returns a morphism DeclareOperation( "SerreQuotientCategoryByThreeArrowsMorphismWithRangeAid", [ IsCapCategory, IsCapCategoryMorphism, IsCapCategoryMorphism ] ); #! @Description #! Given a Serre quotient category <A>A/C</A> modeled by three arrows and a morphism <A>phi</A> in <A>A</A>, #! this constructor returns the corresponding morphism in the Serre quotient category. #! @Arguments A/C, phi #! @Returns a morphism DeclareOperation( "AsSerreQuotientCategoryByThreeArrowsMorphism", [ IsCapCategory, IsCapCategoryMorphism ] );