ApCoCoA-1:DA.DiffSupp: Difference between revisions
From ApCoCoAWiki
S schuster (talk | contribs) New page: <command> <title>diffalg.DiffSupp</title> <short_description>Computes the differential support of a differential polynomial.</short_description> <syntax> $diffalg.DiffSupp(F:POLY):... |
S schuster (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
<command> | <command> | ||
<title>diffalg.DiffSupp</title> | <title>diffalg.DiffSupp</title> | ||
<short_description> | <short_description>compute the differential support of a differential polynomial</short_description> | ||
<syntax> | <syntax> | ||
$diffalg.DiffSupp(F:POLY):LIST | $diffalg.DiffSupp(F:POLY):LIST |
Revision as of 08:48, 22 December 2008
diffalg.DiffSupp
compute the differential support of a differential polynomial
Syntax
$diffalg.DiffSupp(F:POLY):LIST
Description
Computes the differential support of the differential polynomial F.
Example
Use Q[x[1..2,0..20]]; F:=x[1,4]^2-x[2,4]^3; $diffalg.DiffSupp(F); ------------------------------- [x[1,4], x[2,4]] -------------------------------