Top
Back: 5.1.102 quote
Forward: 5.1.104 random
FastBack: 5. Functions and system variables
FastForward: 6. Tricks and pitfalls
Up: 5.1 Functions
Top: Singular 2-0-4 Manual
Contents: Table of Contents
Index: F. Index
About: About This Document

5.1.103 quotient

Syntax:

quotient ( ideal_expression, ideal_expression )
quotient ( module_expression, module_expression )

Type:

ideal

Syntax:

quotient ( module_expression, ideal_expression )

Type:

module

Purpose:

computes the ideal quotient, resp. module quotient. Let R be the basering, I,J ideals and M a module in ${\tt R}^n$. Then

  • quotient(I,J)= $\{a \in R \mid aJ \subset I\}$,
  • quotient(M,J)= $\{b \in R^n \mid bJ \subset M\}$.
Example:
 
ring r=181,(x,y,z),(c,ls);
ideal id1=maxideal(3);
ideal id2=x2+xyz,y2-z3y,z3+y5xz;
ideal id6=quotient(id1,id2);
id6;
→ id6[1]=z
→ id6[2]=y
→ id6[3]=x
quotient(id2,id1);
→ _[1]=z2
→ _[2]=yz
→ _[3]=y2
→ _[4]=xz
→ _[5]=xy
→ _[6]=x2
module m=x*freemodule(3),y*freemodule(2);
ideal id3=x,y;
quotient(m,id3);
→ _[1]=[1]
→ _[2]=[0,1]
→ _[3]=[0,0,x]

See fglmquot; ideal; module.


Top Back: 5.1.102 quote Forward: 5.1.104 random FastBack: 5. Functions and system variables FastForward: 6. Tricks and pitfalls Up: 5.1 Functions Top: Singular 2-0-4 Manual Contents: Table of Contents Index: F. Index About: About This Document
            User manual for Singular version 2-0-4, October 2002, generated by texi2html.