Changeset b4a463 in git


Ignore:
Timestamp:
Jul 18, 2006, 2:17:36 PM (18 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
c89c574998a1ffa7816eb2b5e388287e16b1a4b0
Parents:
f04aafa3db2b15cf551661055b7cfbce72c3d342
Message:
*hannes: format, typos in docu


git-svn-id: file:///usr/local/Singular/svn/trunk@9312 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/ainvar.lib

    rf04aaf rb4a463  
    1 // $Id: ainvar.lib,v 1.7 2002-04-12 16:19:41 Singular Exp $
     1// $Id: ainvar.lib,v 1.8 2006-07-18 12:17:36 Singular Exp $
    22/////////////////////////////////////////////////////////////////////////////
    3 version="$Id: ainvar.lib,v 1.7 2002-04-12 16:19:41 Singular Exp $";
     3version="$Id: ainvar.lib,v 1.8 2006-07-18 12:17:36 Singular Exp $";
    44category="Invariant theory";
    55info="
     
    6262proc derivate (matrix m, id)
    6363"USAGE:  derivate(m,id);  m matrix, id poly/vector/ideal
    64 ASSUME:  m is a nx1 matrix, where n = number of variables of the basering
     64ASSUME:  m is an nx1 matrix, where n = number of variables of the basering
    6565RETURN:  poly/vector/ideal (same type as input), result of applying the
    6666         vector field by the matrix m componentwise to id;
     
    274274proc completeReduction(poly p, ideal dom, list #)
    275275"USAGE:   completeReduction(p,I[,q,n]); p poly, I ideal, [q monomial, n int]
    276 RETURN:  a polynomial, the SAGBI reduction of the polynomial p with I
     276RETURN:  a polynomial, the SAGBI reduction of the polynomial p with respect to I
    277277         via the procedure 'reduction' as long as possible
    278278         if n=1, a different algorithm is chosen which is sometimes faster
     
    338338@end format
    339339         with respect to p,q,h. It is defined as follows: set inv = p if p is
    340          invariant, and else as
     340         invariant, and else set
    341341         inv = m(q)^N * sum_i=1..N-1{ (-1)^i*(1/i!)*m^i(p)*(q/m(q))^i }
    342          where m^N(p) = 0,  m^(N-1)(p) != 0;
    343          the result is inv divided by h as much as possible
     342         where m^N(p) = 0,  m^(N-1)(p) != 0; the result is inv divided by h
     343         as often as possible
    344344EXAMPLE: example localInvar; shows an example
    345345"
     
    405405@end format
    406406         i.e. we compute elements in the (invariant) subring generated by id
    407          which are divisible by q and divide them by q as much as possible
    408          the second ideal contains all invariants given before
    409          if n=1, a different algorithm is chosen which is sometimes faster
     407         which are divisible by q and divide them by q as often as possible.
     408         The second ideal contains all invariants given before.
     409         If n=1, a different algorithm is chosen which is sometimes faster
    410410         (default: n=0)
    411411EXAMPLE: example furtherInvar; shows an example
     
    508508         If b<=0, the computation continues until all generators
    509509         of the ring of invariants are computed (should be used only if the
    510          ring of invariants is known to be finitely generated otherwise the
     510         ring of invariants is known to be finitely generated, otherwise the
    511511         algorithm might not stop).
    512512         If r=1 a different reduction is used which is sometimes faster
     
    514514DISPLAY: if pa is given (any string as 5th or 6th argument), the computation
    515515         pauses whenever new invariants are found and displays them
    516 THEORY:  The algorithm to compute the ring of invariants works in char 0
    517          or big enough characteristic. (K,+) acts as the exponential of the
    518          vector field defined by the matrix m. For background see G.-M. Greuel,
    519          G. Pfister, Geometric quotients of unipotent group actions, Proc.
     516THEORY:  The algorithm for computing the ring of invariants works in char 0
     517         or suffiently large characteristic.
     518         (K,+) acts as the exponential of the vector field defined by the
     519         matrix m.
     520         For background see G.-M. Greuel, G. Pfister,
     521         Geometric quotients of unipotent group actions, Proc.
    520522         London Math. Soc. (3) 67, 75-105 (1993).
    521523EXAMPLE: example invariantRing; shows an example
Note: See TracChangeset for help on using the changeset viewer.