Top
Back: A.16 Cyclic roots
Forward: A.18 Invariants of a finite group
FastBack: A. Examples
FastForward: B. Polynomial data
Up: A. Examples
Top: Singular 2-0-4 Manual
Contents: Table of Contents
Index: F. Index
About: About This Document

A.17 G_a -Invariants

We work in characteristic 0 and use the Lie algebra generated by one vector field of the form $\sum x_i \partial /\partial x_{i+1}$.

 
  LIB "ainvar.lib";
  int n=5;
  int i;
  ring s=32003,(x(1..n)),wp(1,2,3,4,5);
  // definition of the vector field m=sum m[i,1]*d/dx(i)
  matrix m[n][1];
  for (i=1;i<=n-1;i=i+1)
  {
     m[i+1,1]=x(i);
  }
  // computation of the ring of invariants
  ideal in=invariantRing(m,x(2),x(1),0);
  in;   //invariant ring is generated by 5 invariants
→ in[1]=x(1)
→ in[2]=x(2)^2-2*x(1)*x(3)
→ in[3]=x(3)^2-2*x(2)*x(4)+2*x(1)*x(5)
→ in[4]=x(2)^3-3*x(1)*x(2)*x(3)+3*x(1)^2*x(4)
→ in[5]=x(3)^3-3*x(2)*x(3)*x(4)-15997*x(1)*x(4)^2+3*x(2)^2*x(5)-6*x(1)*x(3)\
   *x(5)
  ring q=32003,(x,y,z,u,v,w),dp;
  matrix m[6][1];
  m[2,1]=x;
  m[3,1]=y;
  m[5,1]=u;
  m[6,1]=v;
  // the vector field is: xd/dy+yd/dz+ud/dv+vd/dw
  ideal in=invariantRing(m,y,x,0);
  in; //invariant ring is generated by 6 invariants
→ in[1]=x
→ in[2]=u
→ in[3]=v2-2uw
→ in[4]=zu-yv+xw
→ in[5]=yu-xv
→ in[6]=y2-2xz

Top Back: A.16 Cyclic roots Forward: A.18 Invariants of a finite group FastBack: A. Examples FastForward: B. Polynomial data Up: A. Examples 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.