1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733
|
% This file was created automatically from ratfun.msk.
% DO NOT EDIT!
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%A ratfun.msk GAP documentation Alexander Hulpke
%A Frank Celler
%%
%A @(#)$Id: ratfun.msk,v 1.57.2.5 2006/09/16 19:02:49 jjm Exp $
%%
%Y (C) 1998 School Math and Comp. Sci., University of St. Andrews, Scotland
%Y Copyright (C) 2002 The GAP Group
%%
\Chapter{Polynomials and Rational Functions}
Let $R$ be a commutative ring-with-one. We call a free associative
algebra $A$ over $R$ a *polynomial ring* over $R$. The free generators of
$A$ are called *indeterminates*, they are usually denoted by
$x_1,x_2,\ldots$. The number of indeterminates is called the *rank* of $A$.
The elements of $A$ are called *polynomials*. Products of
indeterminates are called *monomials*, every
polynomial can be expressed as a finite sum of products of monomials with
ring elements in a form like
$r_{1,0}x_1+r_{1,1}x_1x_2+r_{0,1}x_2+\cdots$ with $r_{i,j}\in R$.
A polynomial ring of rank 1 is called an *univariate* polynomial ring, its
elements are *univariate polynomials*.
Polynomial rings of smaller rank naturally embed in rings of higher rank; if
$S$ is a subring of $R$ then a polynomial ring over $S$ naturally embeds in
a polynomial ring over $R$ of the same rank. Note however that {\GAP} does
not consider $R$ as a subset of a polynomial ring over $R$; for example the
zero of $R$ ($0$) and the zero of the polynomial ring ($0x^0$) are different
objects.
Internally, indeterminates are represented by positive integers, but it is
possible to give names to them to have them printed in a nicer way. Beware,
however that there is not necessarily any relation between the way an
indeterminate is called and the way it is printed. See section
"Indeterminates" for details.
If $R$ is an integral domain, the polynomial ring $A$ over $R$ is an integral domain as well and one can
therefore form its quotient field $Q$. This field is called a *field of
rational functions*. Again $A$ embeds naturally into $Q$ and {\GAP} will
perform this embedding implicitly. (In fact it implements the ring of rational
functions over $R$.) To avoid problems with leading
coefficients, however, $R$ must be a unique factorization domain.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Indeterminates}
{\GAP} implements a polynomial ring with countably many indeterminates.
These indeterminates can be referred to by positive integers. If only a
number <num> of indeterminates is required they default to `[1..<num>]'.
It is possible to assign names to indeterminates. These names only
provide a means for printing the indeterminates in a nice way, but have
not necessary any relations to variable names. Indeterminates that have
not been assigned a name will be printed as ``{`x_<nr>'}''.
It is possible to assign
the *same* name to *different* indeterminates (though it is probably not
a good idea to do so). Asking *twice* for an indeterminate with the name
<nam> will produce *two different* indeterminates!
When asking for indeterminates with certain
names, {\GAP} usually will take the first indeterminates that are not
yet named, name these accordingly and return them. Thus when asking for
named indeterminates, no relation between names and indeterminate
numbers can be guaranteed. The attribute
`IndeterminateNumberOfLaurentPolynomial(<indet>)' will return
the number of the indeterminate <indet>.
\>Indeterminate( <R>, [<nr>] ) O
\>Indeterminate( <R>, [<avoid>] ) O
\>Indeterminate( <R>, <name>[, <avoid>] ) O
\>Indeterminate( <fam>, <nr> ) O
returns indeterminate number <nr> over the ring <R>. If <nr> is not
given it defaults to 1. If the number is not specified a list <avoid> of
indeterminates may be given. The function will return an indeterminate
that is guaranteed to be different from all the indeterminates in
<avoid>. The third usage returns an indeterminate called <name> (also
avoiding the indeterminates in <avoid> if given).
\beginexample
gap> a:=Indeterminate(GF(3));
x_1
gap> x:=Indeterminate(GF(3),"x");
x
gap> Indeterminate(GF(3),"x")=x;
false
gap> y:=Indeterminate(GF(3),"y");z:=Indeterminate(GF(3),"X");
y
X
gap> Indeterminate(GF(3),3);
y
gap> Indeterminate(GF(3),[y,z]);
x
\endexample
\>IndeterminateNumberOfUnivariateRationalFunction( <rfun> ) A
returns the number of the indeterminate in which the univariate rational
function <rfun> is expressed. (This also provides a way to obtain the
number of a given indeterminate.)
A constant rational function might not possess an indeterminate number. In
this case `IndeterminateNumberOfUnivariateRationalFunction' will
default to a value of 1.
Therefore two univariate polynomials may be considered to be in the same
univariate polynomial ring if their indeterminates have the same number
or one if of them is constant. (see also~"CIUnivPols"
and~"IsLaurentPolynomialDefaultRep").
\>IndeterminateOfUnivariateRationalFunction( <rfun> ) A
returns the indeterminate in which the univariate rational
function <rfun> is expressed. (cf.
"IndeterminateNumberOfUnivariateRationalFunction".)
\beginexample
gap> IndeterminateNumberOfUnivariateRationalFunction(z);
4
gap> IndeterminateOfUnivariateRationalFunction(z^5+z);
X
\endexample
\>IndeterminateName( <fam>, <nr> ) O
\>HasIndeterminateName( <fam>, <nr> ) O
\>SetIndeterminateName( <fam>, <nr>, <name> ) O
`SetIndeterminateName' assigns the name <name> to indeterminate <nr>
in the rational functions family <fam>. It issues an error if the
indeterminate was already named.
`IndeterminateName' returns the name of the <nr>-th indeterminate (and
returns `fail' if no name has been assigned).
`HasIndeterminateName' tests whether indeterminate <nr> has already been
assigned a name
\beginexample
gap> IndeterminateName(FamilyObj(x),3);
"y"
gap> HasIndeterminateName(FamilyObj(x),5);
false
gap> SetIndeterminateName(FamilyObj(x),10,"bla");
gap> Indeterminate(GF(3),10);
bla
\endexample
As a convenience there is a special method installed for `SetName' that will
assign a name to an indeterminate.
\beginexample
gap> a:=Indeterminate(GF(3),5);
x_5
gap> SetName(a,"ah");
gap> a^5+a;
ah^5+ah
\endexample
\>CIUnivPols( <upol>, <upol> ) F
This function (whose name stands for
``CommonIndeterminateOfUnivariatePolynomials'') takes two univariate
polynomials as arguments. If both polynomials are given in the same
indeterminate number <indnum> (in this case they are ``compatible'' as
univariate polynomials) it returns <indnum>. In all other cases it
returns `fail'.
`CIUnivPols' also accepts if either polynomial is constant but
formally expressed in another indeterminate, in this situation the
indeterminate of the other polynomial is selected.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Operations for Rational Functions}
The rational functions form a field,
therefore all arithmetic operations are applicable to rational functions.
\>`<f> + <g>'{addition!rational functions}
\>`<f> - <g>'{subtraction!rational functions}
\>`<f> * <g>'{product!rational functions}
\>`<f> / <g>'{quotient!rational functions}
\beginexample
gap> x:=Indeterminate(Rationals,1);;y:=Indeterminate(Rationals,2);;
gap> f:=3+x*y+x^5;;g:=5+x^2*y+x*y^2;;
gap> a:=g/f;
(x_1^2*x_2+x_1*x_2^2+5)/(x_1^5+x_1*x_2+3)
\endexample
Note that the quotient `<f>/<g>' of two polynomials might be represented as
a rational function again. If <g> is known to divide <f> the call
`Quotient(<f>,<g>)' (see~"Quotient") should be used instead.
\>`<f> mod <g>'{mod!Laurent polynomials}
%\>`<f> mod <int>'{mod!integer polynomial}
For two Laurent polynomials <f> and <g>, `<f> mod <g>' is the Euclidean
remainder (see~"EuclideanRemainder") of <f> modulo <g>.
% For a polynomial <f> over the integers and an integer <int>, `<f> mod <int>'
% is the polynomial over the integers obtained by reducing the coefficients
% of <f> modulo <int>.
% Just a remark:
% These two methods would not be compatible if integers would be regarded
% as constant polynomials.
% Therefore, I leave the second method undocumented.
At the moment {\GAP} does not contain a proper multivariate Gcd algorithm.
Therefore it cannot be guaranteed that rational functions will always be
represented as a quotient of coprime polynomials. In certain unfortunate
situations this might lead to a degree explosion.
All polynomials as well as all the univariate polynomials in the same
indeterminate form subrings of this field. If two rational functions are
known to be in the same subring, the result will be expressed as element in
this subring.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Comparison of Rational Functions}
\>`<f> = <g>'{comparison!rational functions}
Two rational functions <f> and <g> are equal if the product
$`Numerator'(<f>)*`Denominator'(<g>)$ equals
$`Numerator'(<g>)*`Denominator'(<f>)$.
\beginexample
gap> x:=Indeterminate(Rationals,"x");;y:=Indeterminate(Rationals,"y");;
gap> f:=3+x*y+x^5;;g:=5+x^2*y+x*y^2;;
gap> a:=g/f;
(x^2*y+x*y^2+5)/(x^5+x*y+3)
gap> b:=(g*f)/(f^2);
(x^7*y+x^6*y^2+5*x^5+x^3*y^2+x^2*y^3+3*x^2*y+3*x*y^2+5*x*y+15)/(x^10+2*x^6*y+6\
*x^5+x^2*y^2+6*x*y+9)
gap> a=b;
true
\endexample
\>`<f> \< <g>'{smaller!rational functions}
The ordering of rational functions is defined in several steps. Monomials
(products of indeterminates) are sorted first by degree, then
lexicographically (with $x_1>x_2$)
(see~"MonomialGrlexOrdering"). Products of monomials
with ring elements (``terms'') are compared first by their monomials and
then by their coefficients.
\beginexample
gap> x>y;
true
gap> x^2*y<x*y^2;
false
gap> x*y<x^2*y;
true
gap> x^2*y < 5* y*x^2;
true
\endexample
Polynomials are compared by comparing the largest terms in turn until they
differ.
\beginexample
gap> x+y<y;
false
gap> x<x+1;
true
\endexample
Rational functions are compared by comparing the polynomial
$`Numerator'(<f>)*`Denominator'(<g>)$ with the polynomial
$`Numerator'(<g>)*`Denominator'(<f>)$. (As the ordering of monomials used by
{\GAP} is invariant under multiplication this is independent of common
factors in numerator and denominator.)
\beginexample
gap> f/g<g/f;
false
gap> f/g<(g*g)/(f*g);
false
\endexample
For univariate polynomials this reduces to an ordering first by total degree
and then lexicographically on the coefficients.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Properties and Attributes of Rational Functions}
\>IsPolynomialFunction( <obj> ) C
\>IsRationalFunction( <obj> ) C
A polynomial function is an element of a polynomial ring (not
necessarily an UFD).
A rational function is an element of the quotient field of a polynomial
ring over an UFD. It is represented as a quotient of two polynomials,
its numerator (see~"NumeratorOfRationalFunction") and
its denominator (see~"DenominatorOfRationalFunction")
\>NumeratorOfRationalFunction( <ratfun> ) A
returns the nominator of the rational function <ratfun>.
As no proper multivariate gcd has been implemented yet, numerators and
denominators are not guaranteed to be reduced!
\>DenominatorOfRationalFunction( <ratfun> ) A
returns the denominator of the rational function <ratfun>.
As no proper multivariate gcd has been implemented yet, numerators and
denominators are not guaranteed to be reduced!
\beginexample
gap> x:=Indeterminate(Rationals,1);;y:=Indeterminate(Rationals,2);;
gap> DenominatorOfRationalFunction((x*y+x^2)/y);
y
gap> NumeratorOfRationalFunction((x*y+x^2)/y);
x^2+x*y
\endexample
\>IsPolynomial( <ratfun> ) P
A polynomial is a rational functions whose denominator is one. (If the
coefficients family forms a field this is equivalent to the denominator
being constant.)
If the base family is not a field, it may be impossible to represent the
quotient of a polynomial by a ring element as a polynomial again, but it
will have to be represented as a rational function.
\beginexample
gap> IsPolynomial((x*y+x^2*y^3)/y);
true
gap> IsPolynomial((x*y+x^2)/y);
false
\endexample
\>AsPolynomial( <poly> ) A
If <poly> is a rational function that is a polynomial this attribute
returns an equal rational function <p> such that <p> is equal to its
numerator and the denominator of <p> is one.
\beginexample
gap> AsPolynomial((x*y+x^2*y^3)/y);
x^2*y^2+x
\endexample
\>IsUnivariateRationalFunction( <ratfun> ) P
A rational function is univariate if its numerator and its denominator
are both polynomials in the same one indeterminate. The attribute
`IndeterminateNumberOfUnivariateRationalFunction' can be used to obtain
the number of this common indeterminate.
\>CoefficientsOfUnivariateRationalFunction( <rfun> ) A
if <rfun> is a univariate rational function, this attribute
returns a list [<ncof>,<dcof>,<val>] where <ncof> and <dcof> are
coefficient lists of univariate polynomials <n> and <d> and a valuation
<val> such that $<rfun>=x^{<val>}\cdot<n>/<d>$ where $x$ is the variable
with the number given by
"IndeterminateNumberOfUnivariateRationalFunction". Numerator and
Denominator are guaranteed to be cancelled.
\>IsUnivariatePolynomial( <ratfun> ) P
A univariate polynomial is a polynomial in only one indeterminate.
\>CoefficientsOfUnivariatePolynomial( <pol> ) A
`CoefficientsOfUnivariatePolynomial' returns the coefficient list
of the polynomial <pol>, sorted in ascending order.
\>IsLaurentPolynomial( <ratfun> ) P
A Laurent polynomial is a univariate rational function whose denominator
is a monomial. Therefore every univariate polynomial is a
Laurent polynomial.
The attribute `CoefficientsOfLaurentPolynomial'
(see~"CoefficientsOfLaurentPolynomial") gives a compact representation as
Laurent polynomial.
\>IsConstantRationalFunction( <ratfun> ) P
A constant rational function is a function whose numerator and
denominator are polynomials of degree 0.
All these tests are applicable to *every* rational function. Depending on the
internal representation of the rational function, however some of these
tests (in particular, univariateness) might be expensive in some cases.
For reasons of performance within algorithms it can be useful to use other
attributes, which give a slightly more technical representation. See
section~"The Representations of Rational Functions" for details.
\>IsPrimitivePolynomial( <F>, <pol> ) O
For a univariate polynomial <pol> of degree $d$ in the indeterminate $X$,
with coefficients in a finite field <F> with $q$ elements, say,
`IsPrimitivePolynomial' returns `true' if
\beginlist%ordered
\item{1.}
<pol> divides $X^{q^d-1} - 1$, and
\item{2.}
for each prime divisor $p$ of $q^d - 1$, <pol> does not divide
$X^{(q^d-1)/p} - 1$,
\endlist
and `false' otherwise.
\>SplittingField( <f> ) A
returns the smallest field which contains the coefficients of <f> and
the roots of <f>.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Univariate Polynomials}
Some of the operations are actually defined on the larger domain of Laurent
polynomials (see "Laurent Polynomials"). For this section you can simply
ignore the word ``Laurent'' if it occurs in a description.
\>UnivariatePolynomial( <ring>, <cofs>[, <ind>] ) O
constructs an univariate polynomial over the ring <ring> in the
indeterminate <ind> with the coefficients given by <coefs>.
\>UnivariatePolynomialByCoefficients( <fam>, <cofs>, <ind> ) O
constructs an univariate polynomial over the coefficients family
<fam> and in the indeterminate <ind> with the coefficients given by
<coefs>. This function should be used in algorithms to create
polynomials as it avoids overhead associated with
`UnivariatePolynomial'.
\>DegreeOfLaurentPolynomial( <pol> ) A
The degree of a univariate (Laurent) polynomial <pol> is the largest
exponent $n$ of a monomial $x^n$ of <pol>.
\beginexample
gap> p:=UnivariatePolynomial(Rationals,[1,2,3,4],1);
4*x^3+3*x^2+2*x+1
gap> UnivariatePolynomialByCoefficients(FamilyObj(1),[9,2,3,4],73);
4*x_73^3+3*x_73^2+2*x_73+9
gap> CoefficientsOfUnivariatePolynomial(p);
[ 1, 2, 3, 4 ]
gap> DegreeOfLaurentPolynomial(p);
3
gap> IndeterminateNumberOfLaurentPolynomial(p);
1
gap> IndeterminateOfLaurentPolynomial(p);
x
\endexample
We remark that some functions for multivariate polynomials (which will be
defined in the following sections) permit a different syntax for univariate
polynomials which drops the requirement to specify the indeterminate.
Examples are `Value', `Discriminant', `Derivative', `LeadingCoefficient' and
`LeadingMonomial':
\beginexample
gap> Value(p,Z(5));
Z(5)^2
gap> LeadingCoefficient(p);
4
gap> Derivative(p);
12*x^2+6*x+2
\endexample
\>RootsOfUPol( <upol> ) F
\>RootsOfUPol( <field>, <upol> ) F
\>RootsOfUPol( "split", <upol> ) F
This function returns a list of all roots of the univariate polynomial
<upol> in its default domain. If <field> is given the roots over <field>
are taken, if the first parameter is the string `"split"' the field is
taken to be the splitting field of the polynomial.
\beginexample
gap> RootsOfUPol(50-45*x-6*x^2+x^3);
[ 10, 1, -5 ]
\endexample
\>UnivariatenessTestRationalFunction( <f> ) F
takes a rational function <f> and tests whether it is univariate or even
a Laurent polynomial. It returns a list
`[<isunivariate>, <indet>, <islaurent>, <cofs>]' where <indet> is the
indeterminate number and <cofs> (if applicable) the coefficients lists.
The list <cofs> is the `CoefficientsOfLaurentPolynomial' if <islaurent>
is `true' and the `CoefficientsOfUnivariateRationalFunction' if
<islaurent> is `false' and <isunivariate> `true'.
As there is no proper multivariate gcd, it might return `fail' for
<isunivariate>.
The info class for univariate polynomials is `InfoPoly'.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Polynomials as Univariate Polynomials in one Indeterminate}
\>DegreeIndeterminate( <pol>, <ind> ) O
\>DegreeIndeterminate( <pol>, <inum> ) O
returns the degree of the polynomial <pol> in the indeterminate <ind>
(respectively indeterminate number <inum>).
\beginexample
gap> f:=x^5+3*x*y+9*y^7+4*y^5*x+3*y+2;
9*y^7+4*x*y^5+x^5+3*x*y+3*y+2
gap> DegreeIndeterminate(f,1);
5
gap> DegreeIndeterminate(f,y);
7
\endexample
\>PolynomialCoefficientsOfPolynomial( <pol>, <ind> ) O
\>PolynomialCoefficientsOfPolynomial( <pol>, <inum> ) O
`PolynomialCoefficientsOfPolynomial' returns the coefficient list
(whose entries are polynomials not involving the indeterminate <ind>)
describing the polynomial <pol> viewed as a polynomial in <ind>.
Instead of <ind> also the indeterminate number <inum> can be given.
\beginexample
gap> PolynomialCoefficientsOfPolynomial(f,2);
[ x^5+2, 3*x+3, 0, 0, 0, 4*x, 0, 9 ]
\endexample
\>LeadingCoefficient( <pol> ) O
returns the leading coefficient (that is the coefficient of the leading
monomial, see~"LeadingMonomial") of the polynomial <pol>.
\>LeadingMonomial( <pol> ) F
returns the leading monomial (with respect to the ordering given by
"MonomialExtGrlexLess" of the polynomial <pol> as a list
containing indeterminate numbers and exponents.
\beginexample
gap> LeadingCoefficient(f,1);
1
gap> LeadingCoefficient(f,2);
9
gap> LeadingMonomial(f);
[ 2, 7 ]
gap> LeadingCoefficient(f);
9
\endexample
\>Derivative( <ufun> ) O
\>Derivative( <ratfun>, <ind> ) O
\>Derivative( <ratfun>, <inum> ) O
returns the derivative $<upoly>'$ of the univariate rational function
<ufun> by its indeterminant. The second version returns the derivative
of <ratfun> by the indeterminate <ind> (respectively indeterminate
number <inum>) when viewing <ratfun> as univariate in <ind>.
\beginexample
gap> Derivative(f,2);
63*y^6+20*x*y^4+3*x+3
\endexample
\>Discriminant( <upol> ) O
\>Discriminant( <pol>, <ind> ) O
\>Discriminant( <pol>, <inum> ) O
returns the discriminant disc($<upoly>$) of the univariate polynomial
<upoly> by its indeterminant. The second version returns the
discriminant of <pol> by the indeterminate <ind> (respectively
indeterminate number <inum>).
\beginexample
gap> Discriminant(f,1);
20503125*y^28+262144*y^25+27337500*y^22+19208040*y^21+1474560*y^17+13668750*y^\
16+18225000*y^15+6075000*y^14+1105920*y^13+3037500*y^10+6489720*y^9+4050000*y^\
8+900000*y^7+62208*y^5+253125*y^4+675000*y^3+675000*y^2+300000*y+50000
\endexample
\>Resultant( <pol1>, <pol2>, <inum> ) O
\>Resultant( <pol1>, <pol2>, <ind> ) O
computes the resultant of the polynomials <pol1> and <pol2> with respect
to the indeterminate <ind> or indeterminate number <inum>.
The resultant considers <pol1> and <pol2> as univariate in <ind> and
returns an element of the corresponding base ring (which might be a
polynomial ring).
\beginexample
gap> Resultant(x^4+y,y^4+x,1);
y^16+y
gap> Resultant(x^4+y,y^4+x,2);
x^16+x
\endexample
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Multivariate Polynomials}
\>Value( <ratfun>, <indets>, <vals>[, <one>] ) O
\>Value( <upol>, <value>[, <one>] ) O
The first variant takes a rational function <ratfun> and specializes the
indeterminates given in <indets> to the values given in <vals>,
replacing the $i$-th indeterminate $<indets>_i$ by $<vals>_i$. If this
specialization results in a constant polynomial, an element of the
coefficient ring is returned. If the specialization would specialize
the denominator of <ratfun> to zero, an error is raised.
A variation is the evaluation at elements of another ring $R$, for which
a multiplication with elements of the coefficient ring of <ratfun> are
defined. In this situation the identity element of $R$ may be given by a
further argument <one> which will be used for $x^0$ for any specialized
indeterminate $x$.
The second version takes an univariate rational function and specializes
the value of its indeterminate to <val>. Again, an optional argument
<one> may be given.
\beginexample
gap> Value(x*y+y+x^7,[x,y],[5,7]);
78167
\endexample
Note that the default values for `one' can lead to different results than
one would expect: For example for a matrix $M$, the values $M+M^0$ and $M+1$
are *different*. As `Value' defaults to the one of the coefficient ring,
when evaluating Matrices in polynomials always the correct `one' should be
given!
\>OnIndeterminates( <poly>, <perm> ) F
A permutation <perm> acts on the multivariate polynomial <poly> by
permuting the indeterminates as it permutes points.
\beginexample
gap> OnIndeterminates(x^7*y+x*y^4,(1,17)(2,28));
x_17^7*x_28+x_17*x_28^4
gap> Stabilizer(Group((1,2,3,4),(1,2)),x*y,OnIndeterminates);
Group([ (1,2), (3,4) ])
\endexample
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Minimal Polynomials}
\indextt{MinimalPolynomial!over a ring}
\>MinimalPolynomial( <R>, <elm>[ , <ind>] ) O
returns the *minimal polynomial* of <elm> over the ring <R>,
expressed in the indeterminate number <ind>.
If <ind> is not given, it defaults to 1.
The minimal polynomial is the monic polynomial of smallest degree with
coefficients in <R> that has value zero at <elm>.
\beginexample
gap> MinimalPolynomial(Rationals,[[2,0],[0,2]]);
x-2
\endexample
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Cyclotomic Polynomials}
\>CyclotomicPolynomial( <F>, <n> ) F
is the <n>-th cyclotomic polynomial over the ring <F>.
\beginexample
gap> CyclotomicPolynomial(Rationals,5);
x^4+x^3+x^2+x+1
\endexample
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Polynomial Factorization}
At the moment {\GAP} provides only methods to factorize univariate
polynomials over finite fields (see Chapter~"Finite Fields") and
over subfields of cyclotomic fields (see Chapter~"Abelian Number Fields").
\>Factors([<R>,]<upoly>[,<opt>])!{of univariate polynomial}
returns a list of the irreducible factors of the univariate polynomial
<upoly> in the polynomial ring <R>. (That is factors over the
`CoefficientsRing' of <R>.)
It is possible to pass a record <opt> as a third
argument. This record can contain the following components:
\beginitems
`onlydegs'&is a set of positive integers. The factorization assumes
that all irreducible factors have a degree in this set.
`stopdegs'&is a set of positive integers. The factorization will stop once a
factor of degree in `stopdegs' has been found and will return the
factorization found so far.
\enditems
\beginexample
gap> f:= CyclotomicPolynomial( GF(2), 7 );
x_1^6+x_1^5+x_1^4+x_1^3+x_1^2+x_1+Z(2)^0
gap> Factors( f );
[ x_1^3+x_1+Z(2)^0, x_1^3+x_1^2+Z(2)^0 ]
gap> Factors( PolynomialRing( GF(8) ), f );
[ x_1+Z(2^3), x_1+Z(2^3)^2, x_1+Z(2^3)^3, x_1+Z(2^3)^4, x_1+Z(2^3)^5,
x_1+Z(2^3)^6 ]
gap> f:= MinimalPolynomial( Rationals, E(4) );
x^2+1
gap> Factors( f );
[ x^2+1 ]
gap> Factors( PolynomialRing( Rationals ), f );
[ x^2+1 ]
gap> Factors( PolynomialRing( CF(4) ), f );
[ x+(-E(4)), x+E(4) ]
\endexample
\>FactorsSquarefree( <pring>, <upol>, <opt> ) O
returns a factorization of the squarefree, monic, univariate polynomial
<upoly> in the polynomial ring <pring>;
<opt> must be a (possibly empty) record of options.
<upol> must not have zero as a root.
This function is used by the factoring algorithms.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Polynomials over the Rationals}
The following functions are only available to polynomials with rational
coefficients:
\>PrimitivePolynomial( <f> ) F
takes a polynomial <f> with rational coefficients and computes a new
polynomial with integral coefficients, obtained by multiplying with the
Lcm of the denominators of the coefficients and casting out the content
(the Gcd of the coefficients). The operation returns a list
[<newpol>,<coeff>] with rational <coeff> such that
`<coeff>\*<newpol>=<f>'.
\>PolynomialModP( <pol>, <p> ) F
for a rational polynomial <pol> this function returns a polynomial over
the field with <p> elements, obtained by reducing the coefficients modulo
<p>.
\>GaloisType( <f>[, <cand>] ) F
Let <f> be an irreducible polynomial with rational coefficients. This
function returns the type of Gal(<f>)
(considered as a transitive permutation group of the roots of <f>). It
returns a number <i> if Gal(<f>) is permutation isomorphic to
`TransitiveGroup(<n>,<i>)' where <n> is the degree of <f>.
Identification is performed by factoring
appropriate Galois resolvents as proposed in \cite{MS85}. This function
is provided for rational polynomials of degree up to 15. However, in some
cases the required calculations become unfeasibly large.
For a few polynomials of degree 14, a complete discrimination is not yet
possible, as it would require computations, that are not feasible with
current factoring methods.
This function requires the transitive groups library to be installed (see
"Transitive Permutation Groups").
\>ProbabilityShapes( <f> ) F
Let <f> be an irreducible polynomial with rational coefficients. This
function returns a list of the most likely type(s) of Gal(<f>)
(see~`GaloisType' -- "GaloisType"), based
on factorization modulo a set of primes.
It is very fast, but the result is only probabilistic.
This function requires the transitive groups library to be installed (see
"Transitive Permutation Groups").
\beginexample
gap> f:=x^9-9*x^7+27*x^5-39*x^3+36*x-8;;
gap> GaloisType(f);
25
gap> TransitiveGroup(9,25);
[1/2.S(3)^3]3
gap> ProbabilityShapes(f);
[ 25 ]
\endexample
The following operations are used by {\GAP} inside the factorization algorithm
but might be of interest also in other contexts.
\>BombieriNorm( <pol> ) F
computes weighted Norm [pol]_2 of <pol> which is a good measure for
factor coeffietients (see \cite{BTW93}).
\>MinimizedBombieriNorm( <f> ) A
This function applies linear Tschirnhaus transformations
($x \mapsto x + i$) to the
polynomial <f>, trying to get the Bombieri norm of <f> small. It returns a
list `[<new_polynomial>, <i_of_transformation>]'.
\>HenselBound( <pol>, [<minpol>, <den>] ) F
returns the Hensel bound of the polynomial <pol>.
If the computation takes place over an algebraic extension, then
the minimal polynomial <minpol> and denominator <den> must be given.
\>OneFactorBound( <pol> ) F
returns the coefficient bound for a single factor of the rational
polynomial <pol>.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Laurent Polynomials}
A univariate polynomial can be written in the form $r_0+r_1x+\cdots+r_nx^n$
with $r_i\in R$. Formally, there is no reason to start with 0, if $m$ is an
integer, we can consider objects of the form
$r_mx^m+r_{m+1}x^{m+1}+\cdots+r_nx^n$. We call these *Laurent polynomials*.
Laurent polynomials also can be considered as quotients of a univariate
polynomial by a power of the indeterminate. The addition and multiplication
of univariate polynomials extends to Laurent polynomials (though it might be
impossible to interpret a Laurent polynomial as a function) and many
functions for univariate polynomials extend to Laurent polynomials (or
extended versions for Laurent polynomials exist).
\>LaurentPolynomialByCoefficients( <fam>, <cofs>, <val> [, <ind>] ) O
constructs a Laurent polynomial over the coefficients
family <fam> and in the indeterminate <ind> (defaulting to 1) with
the coefficients given by <coefs> and valuation <val>.
\>CoefficientsOfLaurentPolynomial( <laurent> ) A
For a Laurent polynomial this function returns a pair `[<cof>, <val>]',
consisting of the coefficient list (in ascending order) <cof> and the
valuation <val> of the Laurent polynomial <laurent>.
\beginexample
gap> p:=LaurentPolynomialByCoefficients(FamilyObj(1),
> [1,2,3,4,5],-2);
5*x^2+4*x+3+2*x^-1+x^-2
gap> NumeratorOfRationalFunction(p);DenominatorOfRationalFunction(p);
5*x^4+4*x^3+3*x^2+2*x+1
x^2
gap> CoefficientsOfLaurentPolynomial(p*p);
[ [ 1, 4, 10, 20, 35, 44, 46, 40, 25 ], -4 ]
\endexample
\>IndeterminateNumberOfLaurentPolynomial( <pol> ) F
Is a synonym for `IndeterminateNumberOfUnivariateRationalFunction'
(see~"IndeterminateNumberOfUnivariateRationalFunction").
\>QuotRemLaurpols( <left>, <right>, <mode> ) F
takes two Laurent polynomials <left> and <right> and computes their
quotient. Depending on the integer variable <mode> it returns:
\beginlist%ordered
\item{1.}
the quotient (there might be some remainder),
\item{2.}
the remainder,
\item{3.}
a list [<q>,<r>] of quotient and remainder,
\item{4.}
the quotient if there is no remainder and `fail' otherwise.
\endlist
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Univariate Rational Functions}
\>UnivariateRationalFunctionByCoefficients( <fam>, <ncof>, <dcof>, <val>[, <ind>] ) O
constructs a univariate rational function over the coefficients
family <fam> and in the indeterminate <ind> (defaulting to 1) with
numerator and denominator coefficients given by <ncof> and <dcof> and
valuation <val>.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Polynomial Rings}
While polynomials depend only on the family of the coefficients, polynomial
rings $A$ are defined over a base ring $R$. A polynomial is an element of
$A$ if and only if all its coefficients are contained in $R$. Besides
providing domains and an easy way to create polynomials, polynomial rings
can affect the behavior of operations like factorization into irreducibles.
\>PolynomialRing( <ring>, <rank>, [<avoid>] ) O
\>PolynomialRing( <ring>, <names>, [<avoid>] ) O
\>PolynomialRing( <ring>, <indets> ) O
\>PolynomialRing( <ring>, <indetnums> ) O
creates a polynomial ring over <ring>. If a positive integer <rank> is
given, this creates the polynomial ring in <rank> indeterminates. These
indeterminates will have the internal index numbers 1 to <rank>. The
second usage takes a list <names> of strings and returns a polynomial
ring in indeterminates labelled by <names>. These indeterminates have
``new'' internal index numbers as if they had been created by calls to
`Indeterminate'. (If the argument <avoid> is given it contains
indeterminates that should be avoided, in this case internal index
numbers are incremented to skip these variables).
In the third version, a
list of indeterminates <indets> is given. This creates the polynomial
ring in the indeterminates <indets>. Finally, the fourth version
specifies indeterminates by their index number.
To get the indeterminates of a polynomial ring use
`IndeterminatesOfPolynomialRing'. (Indeterminates created independently
with `Indeterminate' will usually differ, though they might be given the
same name and display identically -- see section~"Indeterminates").
\>IndeterminatesOfPolynomialRing( <pring> ) A
returns a list of the indeterminates of the polynomial ring <pring>
\>CoefficientsRing( <pring> ) A
returns the ring of coefficients of the polynomial ring <pring>, that is
the ring over which <pring> was defined.
\beginexample
gap> r:=PolynomialRing(GF(7));
GF(7)[x_1]
gap> r:=PolynomialRing(GF(7),3);
GF(7)[x_1,x_2,x_3]
gap> IndeterminatesOfPolynomialRing(r);
[ x_1, x_2, x_3 ]
gap> r2:=PolynomialRing(GF(7),[5,7,12]);
GF(7)[x_5,x_7,x_12]
gap> CoefficientsRing(r);
GF(7)
gap> r:=PolynomialRing(GF(7),3);
GF(7)[x_1,x_2,x_3]
gap> r2:=PolynomialRing(GF(7),3,IndeterminatesOfPolynomialRing(r));
GF(7)[x_4,x_5,x_6]
gap> r:=PolynomialRing(GF(7),["x","y","z","z2"]);
GF(7)[x,y,z,z2]
\endexample
If you need to work with a polynomial ring and its indeterminates the
following two approaches will produce a ring that contains given variables
(see section~"Indeterminates" for details about the internal numbering):
Either, first create the ring and then get the indeterminates as
`IndeterminatesOfPolynomialRing'.
\beginexample
gap> r := PolynomialRing(Rationals,["x","y"]);;
gap> indets := IndeterminatesOfPolynomialRing(r);;
gap> x := indets[1]; y := indets[2];
x
y
\endexample
Alternatively, first create the
indeterminates and then create the ring including these indeterminates.
\beginexample
gap> x:=X(Rationals,"x");;y:=X(Rationals,"y");;
gap> PolynomialRing(Rationals,[x,y]);;
\endexample
As a convenient shortcut, intended mainly for interactive working, the
indeterminates of a polynomial ring 'r' can be accessed as 'r.<i>',
which corresponds exactly to `IndeterminatesOfPolynomialRing(r)[<i>]'
or, if they have names, as 'r.<name>'. *Note* that the number <i> is
*not* an indeterminate number, but simply an index into the
indeterminates list of `r';
\beginexample
gap> r := PolynomialRing(Rationals, ["x", "y"] );;
gap> r.1; r.2; r.x; r.y;
x
y
x
y
gap> IndeterminateNumberOfLaurentPolynomial(r.1);
7
\endexample
As {\GAP} objects polynomials can exist without a polynomial ring being
defined and polynomials cannot be associated to a particular polynomial
ring. (For example dividing a polynomial which is in a polynomial ring over
the integers by another integer will result in a polynomial over the
rationals, not in a rational function over the integers.)
\>IsPolynomialRing( <pring> ) C
is the category of polynomial rings
\>IsFiniteFieldPolynomialRing( <pring> ) C
is the category of polynomial rings over a finite field
(see Chapter~"Finite Fields").
\>IsAbelianNumberFieldPolynomialRing( <pring> ) C
is the category of polynomial rings over a field of cyclotomics
(see the chapters~"Cyclotomic Numbers" and "Abelian Number Fields").
\>IsRationalsPolynomialRing( <pring> ) C
is the category of polynomial rings over the rationals
(see Chapter~"Rational Numbers").
\beginexample
gap> IsPolynomialRing(r);
true
gap> IsFiniteFieldPolynomialRing(r);
false
gap> IsRationalsPolynomialRing(r);
true
\endexample
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Univariate Polynomial Rings}
\>UnivariatePolynomialRing( <R> [, <nr>] ) O
\>UnivariatePolynomialRing( <R> [, <avoid>] ) O
\>UnivariatePolynomialRing( <R>, <name> [, <avoid>] ) O
returns a univariate polynomial ring in the indeterminate <nr> over the
base ring <R>. if <nr> is not given it defaults to 1. If the number is
not specified a list <avoid> of indeterminates may be given. The
function will return a ring in an indeterminate that is guaranteed to be
different from all the indeterminates in <avoid>. The third usage
returns a ring in an indeterminate called <name> (also avoiding the
indeterminates in <avoid> if given).
\>IsUnivariatePolynomialRing( <pring> ) C
is the category of polynomial rings with one indeterminate.
\beginexample
gap> r:=UnivariatePolynomialRing(Rationals,"x");
Rationals[x]
gap> r2:=PolynomialRing(Rationals,["q"]);
Rationals[q]
gap> IsUnivariatePolynomialRing(r);
true
gap> IsUnivariatePolynomialRing(r2);
true
\endexample
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Monomial Orderings}
It is often desirable to consider the monomials within a polynomial to be
arranged with respect to a certain ordering. Such an ordering is called a
*monomial ordering* if it is total, invariant under multiplication with
other monomials and admits no infinite descending chains. For details on
monomial orderings see \cite{coxlittleoshea}.
In {\GAP}, monomial orderings are represented by objects that provide a way
to compare monomials (as polynomials as well as -- for efficiency purposes
within algorithms -- in the internal representation as lists).
Normally the ordering chosen should be *admissible*, i.e. it
must be compatible with products: If $a\<b$ then $ca\<cb$ for all monomials
$a,b$ and $c$.
\>IsMonomialOrdering( <obj> ) C
A monomial ordering is an object representing a monomial ordering. Its
attributes `MonomialComparisonFunction' and
`MonomialExtrepComparisonFun' are actual comparison functions.
\>LeadingMonomialOfPolynomial( <pol>, <ord> ) F
returns the leading monomial (with respect to the ordering <ord>)
of the polynomial <pol>.
\beginexample
gap> x:=X(Rationals,"x");;y:=X(Rationals,"y");;z:=X(Rationals,"z");;
gap> lexord:=MonomialLexOrdering();grlexord:=MonomialGrlexOrdering();
MonomialLexOrdering()
MonomialGrlexOrdering()
gap> f:=2*x+3*y+4*z+5*x^2-6*z^2+7*y^3;
7*y^3+5*x^2-6*z^2+2*x+3*y+4*z
gap> LeadingMonomialOfPolynomial(f,lexord);
x^2
gap> LeadingMonomialOfPolynomial(f,grlexord);
y^3
\endexample
\>LeadingTermOfPolynomial( <pol>, <ord> ) F
returns the leading term (with respect to the ordering <ord>)
of the polynomial <pol>, i.e. the product of leading coefficient and
leading monomial.
\>LeadingCoefficientOfPolynomial( <pol>, <ord> ) O
returns the leading coefficient (that is the coefficient of the leading
monomial, see~"LeadingMonomialOfPolynomial") of the polynomial <pol>.
\beginexample
gap> LeadingTermOfPolynomial(f,lexord);
5*x^2
gap> LeadingTermOfPolynomial(f,grlexord);
7*y^3
gap> LeadingCoefficientOfPolynomial(f,lexord);
5
\endexample
Each monomial ordering provides two functions to compare monomials. These
functions work as ``is less than'', i.e. they return `true' if and only if
the left argument is smaller.
\>MonomialComparisonFunction( <O> ) A
If <O> is an object representing a monomial ordering, this attribute
returns a *function* that can be used to compare or sort monomials (and
polynomials which will be compared by their monomials in decreasing
order) in this order.
\beginexample
gap> MonomialComparisonFunction(lexord);
function( a, b ) ... end
gap> l:=[f,Derivative(f,x),Derivative(f,y),Derivative(f,z)];;
gap> Sort(l,MonomialComparisonFunction(lexord));l;
[ -12*z+4, 21*y^2+3, 10*x+2, 7*y^3+5*x^2-6*z^2+2*x+3*y+4*z ]
\endexample
\>MonomialExtrepComparisonFun( <O> ) A
If <O> is an object representing a monomial ordering, this attribute
returns a *function* that can be used to compare or sort monomials *in
their external representation* (as lists). This comparison variant is
used inside algorithms that manipulate the external representation.
The following monomial orderings are predefined in {\GAP}:
\>MonomialLexOrdering( ) F
\>MonomialLexOrdering( <vari> ) F
This function creates a lexicographic ordering for monomials. Monomials
are compared first by the exponents of the largest variable, then the
exponents of the second largest variable and so on.
The variables are ordered according to their (internal) index, i.e. $x_1$
is larger than $x_2$ and so on.
If <vari> is given, and is a list of variables or variable indices,
instead this arrangement of variables (in descending order; i.e. the
first variable is larger than the second) is
used as the underlying order of variables.
\beginexample
gap> l:=List(Tuples([1..3],3),i->x^(i[1]-1)*y^(i[2]-1)*z^(i[3]-1));
[ 1, z, z^2, y, y*z, y*z^2, y^2, y^2*z, y^2*z^2, x, x*z, x*z^2, x*y, x*y*z,
x*y*z^2, x*y^2, x*y^2*z, x*y^2*z^2, x^2, x^2*z, x^2*z^2, x^2*y, x^2*y*z,
x^2*y*z^2, x^2*y^2, x^2*y^2*z, x^2*y^2*z^2 ]
gap> Sort(l,MonomialComparisonFunction(MonomialLexOrdering()));l;
[ 1, z, z^2, y, y*z, y*z^2, y^2, y^2*z, y^2*z^2, x, x*z, x*z^2, x*y, x*y*z,
x*y*z^2, x*y^2, x*y^2*z, x*y^2*z^2, x^2, x^2*z, x^2*z^2, x^2*y, x^2*y*z,
x^2*y*z^2, x^2*y^2, x^2*y^2*z, x^2*y^2*z^2 ]
gap> Sort(l,MonomialComparisonFunction(MonomialLexOrdering([y,z,x])));l;
[ 1, x, x^2, z, x*z, x^2*z, z^2, x*z^2, x^2*z^2, y, x*y, x^2*y, y*z, x*y*z,
x^2*y*z, y*z^2, x*y*z^2, x^2*y*z^2, y^2, x*y^2, x^2*y^2, y^2*z, x*y^2*z,
x^2*y^2*z, y^2*z^2, x*y^2*z^2, x^2*y^2*z^2 ]
gap> Sort(l,MonomialComparisonFunction(MonomialLexOrdering([z,x,y])));l;
[ 1, y, y^2, x, x*y, x*y^2, x^2, x^2*y, x^2*y^2, z, y*z, y^2*z, x*z, x*y*z,
x*y^2*z, x^2*z, x^2*y*z, x^2*y^2*z, z^2, y*z^2, y^2*z^2, x*z^2, x*y*z^2,
x*y^2*z^2, x^2*z^2, x^2*y*z^2, x^2*y^2*z^2 ]
\endexample
\>MonomialGrlexOrdering( ) F
\>MonomialGrlexOrdering( <vari> ) F
This function creates a degree/lexicographic ordering. In this oredring
monomials are compared first by their total degree, then lexicographically
(see `MonomialLexOrdering').
The variables are ordered according to their (internal) index, i.e. $x_1$
is larger than $x_2$ and so on.
If <vari> is given, and is a list of variables or variable indices,
instead this arrangement of variables (in descending order; i.e. the
first variable is larger than the second) is
used as the underlying order of variables.
\>MonomialGrevlexOrdering( ) F
\>MonomialGrevlexOrdering( <vari> ) F
This function creates a ``grevlex'' ordering. In this ordering monomials
are compared first by total degree and then backwards lexicographically.
(This is different than ``grlex'' ordering with variables reversed.)
The variables are ordered according to their (internal) index, i.e. $x_1$
is larger than $x_2$ and so on.
If <vari> is given, and is a list of variables or variable indices,
instead this arrangement of variables (in descending order; i.e. the
first variable is larger than the second) is
used as the underlying order of variables.
\beginexample
gap> Sort(l,MonomialComparisonFunction(MonomialGrlexOrdering()));l;
[ 1, z, y, x, z^2, y*z, y^2, x*z, x*y, x^2, y*z^2, y^2*z, x*z^2, x*y*z,
x*y^2, x^2*z, x^2*y, y^2*z^2, x*y*z^2, x*y^2*z, x^2*z^2, x^2*y*z, x^2*y^2,
x*y^2*z^2, x^2*y*z^2, x^2*y^2*z, x^2*y^2*z^2 ]
gap> Sort(l,MonomialComparisonFunction(MonomialGrevlexOrdering()));l;
[ 1, z, y, x, z^2, y*z, x*z, y^2, x*y, x^2, y*z^2, x*z^2, y^2*z, x*y*z,
x^2*z, x*y^2, x^2*y, y^2*z^2, x*y*z^2, x^2*z^2, x*y^2*z, x^2*y*z, x^2*y^2,
x*y^2*z^2, x^2*y*z^2, x^2*y^2*z, x^2*y^2*z^2 ]
gap> Sort(l,MonomialComparisonFunction(MonomialGrlexOrdering([z,y,x])));l;
[ 1, x, y, z, x^2, x*y, y^2, x*z, y*z, z^2, x^2*y, x*y^2, x^2*z, x*y*z,
y^2*z, x*z^2, y*z^2, x^2*y^2, x^2*y*z, x*y^2*z, x^2*z^2, x*y*z^2, y^2*z^2,
x^2*y^2*z, x^2*y*z^2, x*y^2*z^2, x^2*y^2*z^2 ]
\endexample
\>EliminationOrdering( <elim> ) F
\>EliminationOrdering( <elim>, <rest> ) F
This function creates an elimination ordering for eliminating the
variables in <elim>. Two monomials are compared first by the exponent
vectors for the variables listed in <elim> (a lexicographic comparison
with respect to the ordering indicated in <elim>).
If these submonomial are equal, the submonomials given by the other
variables are compared by a graded lexicographic ordering (with respect
to the variable order given in <rest>, if called with two parameters).
Both <elim> and <rest> may be a list of variables of a list of variable
indices.
\>PolynomialReduction( <poly>, <gens>, <order> ) F
reduces the polynomial <poly> by the ideal generated by the polynomials
in <gens>, using the order <order> of monomials. Unless <gens> is a
Gr{\accent127 o}bner basis the result is not guaranteed to be unique.
The operation returns a list of length two, the first entry is the
remainder after the reduction. The second entry is a list of quotients
corresponding to <gens>.
Note that the strategy used by `PolynomialReduction' differs from the
standard textbook reduction algorithm, which is provided by
`PolynomialDivisionAlgorithm'.
\>PolynomialReducedRemainder( <poly>, <gens>, <order> ) F
thios operation does the same way as `PolynomialReduction'
(see~"PolynomialReduction") but does not keep track of the actual quotients
and returns only the remainder (it is therfore slightly faster).
\>PolynomialDivisionAlgorithm( <poly>, <gens>, <order> ) F
This function implements the division algorithm for multivariate
polynomials as given in theorem~3 in chapter~2 of \cite{coxlittleoshea}.
(It might be slower than `PolynomialReduction' but the remainders are
guaranteed to agree with the textbook.)
The operation returns a list of length two, the first entry is the
remainder after the reduction. The second entry is a list of quotients
corresponding to <gens>.
\beginexample
gap> bas:=[x^3*y*z,x*y^2*z,z*y*z^3+x];;
gap> pol:=x^7*z*bas[1]+y^5*bas[3]+x*z;;
gap> PolynomialReduction(pol,bas,MonomialLexOrdering());
[ -y*z^5, [ x^7*z, 0, y^5+z ] ]
gap> PolynomialReducedRemainder(pol,bas,MonomialLexOrdering());
-y*z^5
gap> PolynomialDivisionAlgorithm(pol,bas,MonomialLexOrdering());
[ -y*z^5, [ x^7*z, 0, y^5+z ] ]
\endexample
\>MonomialExtGrlexLess( <a>, <b> ) F
implements comparison of monomial in their external representation by a
``grlex'' order with $x_1>x_2$
(This is exactly the same as the ordering by
`MonomialGrlexOrdering()', see~ "Monomial Orderings").
The function takes two
monomials <a> and <b> in expanded form and returns whether the first is
smaller than the second. (This ordering is also used by {\GAP}
internally for representing polynomials as a linear combination of
monomials.)
See section~"The Defining Attributes of Rational Functions" for details
on the expanded form of monomials.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Groebner Bases}
A *Groebner Basis* of an ideal $I$i, in a polynomial ring $R$, with
respect to a monomial ordering, is a set of ideal generators <G> such that
the ideal generated by the leading monomials of all polynomials in <G> is
equal to the ideal generated by the leading monomials of all polynomials
in <I>.
For more details on Groebner bases see \cite{coxlittleoshea}.
\>GroebnerBasis( <L>, <O> ) O
\>GroebnerBasis( <I>, <O> ) O
\>GroebnerBasisNC( <L>, <O> ) O
Let <O> be a monomial ordering and <L> be a list of polynomials that
generate an ideal <I>. This operation returns a Groebner basis of
<I> with respect to the ordering <O>.\\
`GroebnerBasisNC' works like `GroebnerBasis' with the only distinction
that the first argument has to be a list of polynomials and that no test is
performed to check whether the ordering is defined for all occuring
variables.
Note that {\GAP} at the moment only includes
a na{\"\i}ve implementation of Buchberger's algorithm (which is mainly
intended as a teaching tool). It might not be
sufficient for serious problems.
\beginexample
gap> l:=[x^2+y^2+z^2-1,x^2+z^2-y,x-y];;
gap> GroebnerBasis(l,MonomialLexOrdering());
[ x^2+y^2+z^2-1, x^2+z^2-y, x-y, -y^2-y+1, -z^2+2*y-1, 1/2*z^4+2*z^2-1/2 ]
gap> GroebnerBasis(l,MonomialLexOrdering([z,x,y]));
[ x^2+y^2+z^2-1, x^2+z^2-y, x-y, -y^2-y+1 ]
gap> GroebnerBasis(l,MonomialGrlexOrdering());
[ x^2+y^2+z^2-1, x^2+z^2-y, x-y, -y^2-y+1, -z^2+2*y-1 ]
\endexample
\>ReducedGroebnerBasis( <L>, <O> ) O
\>ReducedGroebnerBasis( <I>, <O> ) O
a Groebner basis <B> (see~"GroebnerBasis") is *reduced* if no monomial
in a polynomial in <B> is divisible by the leading monomial of another
polynomial in <B>. This operation computes a Groebner basis with respect
to <O> and then reduces it.
\beginexample
gap> ReducedGroebnerBasis(l,MonomialGrlexOrdering());
[ x-y, z^2-2*y+1, y^2+y-1 ]
gap> ReducedGroebnerBasis(l,MonomialLexOrdering());
[ z^4+4*z^2-1, -1/2*z^2+y-1/2, -1/2*z^2+x-1/2 ]
gap> ReducedGroebnerBasis(l,MonomialLexOrdering([y,z,x]));
[ x^2+x-1, z^2-2*x+1, -x+y ]
\endexample
For performance reasons it can be advantageous to define monomial orderings
once and then to reuse them:
\beginexample
gap> ord:=MonomialGrlexOrdering();;
gap> GroebnerBasis(l,ord);
[ x^2+y^2+z^2-1, x^2+z^2-y, x-y, -y^2-y+1, -z^2+2*y-1 ]
gap> ReducedGroebnerBasis(l,ord);
[ x-y, z^2-2*y+1, y^2+y-1 ]
\endexample
\>StoredGroebnerBasis( <I> ) A
For an ideal <I> in a polynomial ring, this attribute holds a list
[<B>,<O>] where <B> is a Groebner basis for the monomial ordering <O>.
this can be used to test membership or canonical coset representatives.
\>`InfoGroebner' V
This info class gives information about Groebner basis calculations.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Rational Function Families}
All rational functions defined over a ring lie in the same family, the
rational functions family over this ring.
In {\GAP} therefore the family of a polynomial depends only on the family of
the coefficients, all polynomials whose coefficients lie in the same family
are ``compatible''.
\>RationalFunctionsFamily( <fam> ) A
creates a family containing rational functions with coefficients
in <fam>.
All elements of the `RationalFunctionsFamily' are rational functions
(see~"IsRationalFunction").
\>IsPolynomialFunctionsFamily( <obj> ) C
\>IsRationalFunctionsFamily( <obj> ) C
`IsPolynomialFunctionsFamily' is the category of a family of polynomials.
For families over an UFD, the category becomes
`IsRationalFunctionsFamily' (as rational functions and quotients are only
provided for families over an UFD.)
%notest
\beginexample
gap> fam:=RationalFunctionsFamily(FamilyObj(1));
NewFamily( "RationalFunctionsFamily(...)", [ 618, 620 ],
[ 82, 85, 89, 93, 97, 100, 103, 107, 111, 618, 620 ] )
\endexample
\>CoefficientsFamily( <rffam> ) A
If <rffam> has been created as `RationalFunctionsFamily(<cfam>)' this
attribute holds the coefficients family <cfam>.
{\GAP} does *not* embed the base ring in the polynomial ring. While
multiplication and addition of base ring elements to rational functions
return the expected results, polynomials and rational functions are not
equal.
\beginexample
gap> 1=Indeterminate(Rationals)^0;
false
\endexample
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{The Representations of Rational Functions}
{\GAP} uses four representations of rational functions: Rational
functions given by numerator and denominator, polynomials, univariate
rational functions (given by coefficient lists for numerator and denominator
and valuation) and
Laurent polynomials (given by coefficient list and valuation).
These representations do not necessarily reflect mathematical properties:
While an object in the Laurent polynomials representation must be a
Laurent polynomial it might turn out that a rational function given by
numerator and denominator is actually a Laurent polynomial and the property
tests in section~"Properties and Attributes of Rational Functions" will find
this out.
Each representation is associated one or several ``defining attributes''
that give an ``external'' representation
(see~"The Defining Attributes of Rational Functions")
of the representation in the form of lists and are the defining information
that tells a rational function what it is.
{\GAP} also implements methods to compute these attributes for rational
functions in *other* representations, provided it would be possible to
express an *mathematically equal* rational function in the representation
associated with the attribute. (That is one can always get a
numerator/denominator representation of a polynomial while an arbitrary
function of course can compute a polynomial representation only if it is a
polynomial.)
Therefore these attributes can be thought of as ``conceptual''
representations that allow us -- as far as possible --
to consider an object as a rational function, a polynomial or a Laurent
polynomial, regardless of the way it is represented in the computer.
Functions thus usually do not need to care about the representation of
a rational function. Depending on its (known in the context or determined)
properties, they can access the attribute representing the rational function
in the desired way.
Consequentially, methods for rational functions are installed for properties
and not for representations.
When *creating* new rational functions however they must be created in one
of the three representations. In most cases this will be the representation
for which the ``conceptual'' representation in which the calculation was done
is the defining attribute.
Iterated operations (like forming the product over a list) therefore will
tend to stay in the most suitable representation and the calculation of
another conceptual representation (which may be comparatively expensive in
certain circumstances) is not necessary.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{The Defining Attributes of Rational Functions}
In general, rational functions are given in terms of monomials. They are
represented by lists, using numbers (see~"Indeterminates") for the
indeterminates.
\index{Expanded form of monomials}
A monomial is a product of powers of indeterminates. A monomial is
stored as a list (we call this the *expanded form* of the monomial)
of the form `[<inum>,<exp>,<inum>,<exp>,...]' where each <inum>
is the number of an indeterminate and <exp> the corresponding exponent.
The list must be sorted according to the numbers of the indeterminates.
Thus for example, if $x$, $y$ and $z$ are the first three indeterminates,
the expanded form of the monomial $x^5z^8=z^8x^5$ is `[1,5,3,8]'.
\index{External representation of polynomials}
The representation of a polynomials is a list of the form
`[<mon>,<coeff>,<mon>,<coeff>,...]' where <mon> is a monomial in
expanded form (that is given as list) and <coeff> its coefficient. The
monomials must be sorted according to the total degree/lexicographic
order (This is the same as given by the ``grlex'' monomial ordering,
see~"MonomialGrlexOrdering"). We call
this the *external representation* of a polynomial. (The
reason for ordering is that addition of polynomials becomes linear in
the number of monomials instead of quadratic; the reason for the
particular ordering chose is that it is compatible with multiplication
and thus gives acceptable performance for quotient calculations.)
\>IsRationalFunctionDefaultRep( <obj> ) R
is the default representation of rational functions. A rational function
in this representation is defined by the attributes
`ExtRepNumeratorRatFun' and `ExtRepDenominatorRatFun' where
`ExtRepNumeratorRatFun' and `ExtRepDenominatorRatFun' are
both external representations of a polynomial.
\>ExtRepNumeratorRatFun( <ratfun> ) A
returns the external representation of the numerator polynomial of the
rational function <ratfun>. Numerator and Denominator are not guaranteed
to be cancelled against each other.
\>ExtRepDenominatorRatFun( <ratfun> ) A
returns the external representation of the denominator polynomial of the
rational function <ratfun>. Numerator and Denominator are not guaranteed
to be cancelled against each other.
\>ZeroCoefficientRatFun( <ratfun> ) O
returns the zero of the coefficient ring. This might be needed to
represent the zero polynomial for which the external representation of
the numerator is the empty list.
\>IsPolynomialDefaultRep( <obj> ) R
is the default representation of polynomials. A polynomial
in this representation is defined by the components
and `ExtRepNumeratorRatFun' where `ExtRepNumeratorRatFun' is the
external representation of the polynomial.
\>ExtRepPolynomialRatFun( <polynomial> ) A
returns the external representation of a polynomial. The difference to
`ExtRepNumeratorRatFun' is that rational functions might know to be a
polynomial but can still have a non-vanishing denominator. In this case
`ExtRepPolynomialRatFun' has to call a quotient routine.
\>IsLaurentPolynomialDefaultRep( <obj> ) R
This representation is used for Laurent polynomials and univariate
polynomials. It represents a Laurent polynomial via the attributes
`CoefficientsOfLaurentPolynomial'
(see~"CoefficientsOfLaurentPolynomial") and
`IndeterminateNumberOfLaurentPolynomial'
(see~"IndeterminateNumberOfLaurentPolynomial").
The attributes that give a representation of a a rational function as a Laurent polynomial are
`CoefficientsOfLaurentPolynomial' (see~"CoefficientsOfLaurentPolynomial")
and `IndeterminateNumberOfUnivariateRationalFunction'
(see~"IndeterminateNumberOfUnivariateRationalFunction").
Algorithms should use only the attributes `ExtRepNumeratorRatFun',
`ExtRepDenominatorRatFun',
`ExtRepPolynomialRatFun', `CoefficientsOfLaurentPolynomial' and -- if
the univariate function is not constant --
`IndeterminateNumberOfUnivariateRationalFunction' as the low-level
interface to work with a polynomial. They should not refer to the actual
representation used.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Creation of Rational Functions}
The operations `LaurentPolynomialByCoefficients'
(see~"LaurentPolynomialByCoefficients"),
`PolynomialByExtRep' and `RationalFunctionByExtRep' are used to
construct objects in the three basic representations for rational
functions.
\>RationalFunctionByExtRep( <rfam>, <num>, <den> ) F
\>RationalFunctionByExtRepNC( <rfam>, <num>, <den> ) F
constructs a rational function (in the representation
`IsRationalFunctionDefaultRep') in the rational function family <rfam>,
the rational function itself is given by the external representations
<num> and <den> for numerator and denominator.
No cancellation takes place.
The variant `RationalFunctionByExtRepNC' does not perform any test of
the arguments and thus potentially can create illegal objects. It only
should be used if speed is required and the arguments are known to be
in correct form.
\>PolynomialByExtRep( <rfam>, <extrep> ) F
\>PolynomialByExtRepNC( <rfam>, <extrep> ) F
constructs a polynomial (in the representation `IsPolynomialDefaultRep')
in the rational function family <rfam>, the polynomial itself is given
by the external representation <extrep>.
The variant `PolynomialByExtRepNC' does not perform any test of
the arguments and thus potentially can create illegal objects. It only
should be used if speed is required and the arguments are known to be
in correct form.
\beginexample
gap> fam:=RationalFunctionsFamily(FamilyObj(1));;
gap> p:=PolynomialByExtRep(fam,[[1,2],1,[2,1,15,7],3]);
3*y*x_15^7+x^2
gap> q:=p/(p+1);
(3*y*x_15^7+x^2)/(3*y*x_15^7+x^2+1)
gap> ExtRepNumeratorRatFun(q);
[ [ 1, 2 ], 1, [ 2, 1, 15, 7 ], 3 ]
gap> ExtRepDenominatorRatFun(q);
[ [ ], 1, [ 1, 2 ], 1, [ 2, 1, 15, 7 ], 3 ]
\endexample
\>LaurentPolynomialByExtRep( <fam>, <cofs>, <val> , <ind> ) F
\>LaurentPolynomialByExtRepNC( <fam>, <cofs>, <val> , <ind> ) F
creates a Laurent polynomial in the family <fam> with [<cofs>,<val>] as
value of `CoefficientsOfLaurentPolynomial'. No coefficient shifting is
performed. This is the lowest level function to create a Laurent
polynomial but will rely on the coefficients being shifted properly and
will not perform any tests. Unless this is guaranteed for the
parameters, `LaurentPolynomialByCoefficients'
(see~"LaurentPolynomialByCoefficients") should be used.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Arithmetic for External Representations of Polynomials}
The following operations are used internally to perform the arithmetic for
polynomials in their ``external'' representation
(see~"The Defining Attributes of Rational Functions")
as lists.
\>ZippedSum( <z1>, <z2>, <czero>, <funcs> ) O
computes the sum of two external representations of polynomials <z1> and
<z2>. <czero> is the appropriate coefficient zero and <funcs> a list
[ <monomial less>, <coefficient sum> ] containing a monomial comparison
and a coefficient addition function. This list can be found in the
component `<fam>!.zippedSum' of the rational functions family.
Note that <coefficient sum> must be a proper ``summation'' function, not
a function computing differences.
\>ZippedProduct( <z1>, <z2>, <czero>, <funcs> ) O
computes the product of two external representations of polynomials <z1>
and <z2>. <czero> is the appropriate coefficient zero and <funcs> a list
`[<monomial_prod>, <monomial_less>, <coefficient_sum>, <coefficient_prod>]'
containing functions to multiply and compare monomials, to add and to
multiply coefficients. This list can be found in the component
`<fam>!.zippedProduct' of the rational functions family.
\>QuotientPolynomialsExtRep( <fam>, <a>, <b> ) F
Let <a> and <b> the external representations of two polynomials in the
rational functions family <fam>. This function computes the external
representation of the quotient of both polynomials, it returns `fail' if
<b> does not divide <a>.
Functions to perform arithmetic with the coefficient lists of Laurent
polynomials are described in section~"Coefficient List Arithmetic".
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\Section{Cancellation Tests for Rational Functions}
{\GAP} does not contain a multivariate GCD algorithm. The following
operations are used internally to try to keep the denominators as small as
possible
\>RationalFunctionByExtRepWithCancellation( <rfam>, <num>, <den> ) F
constructs a rational function as `RationalFunctionByExtRep' does but
tries to cancel out common factors of numerator and denominator, calling
`TryGcdCancelExtRepPolynomials'.
\>TryGcdCancelExtRepPolynomials( <fam>, <a>, <b> ) F
Let <f> and <g> be two polynomials given by the ext reps <a> and <b>.
This function tries to cancel common factors between <a> and <b> and
returns a list [<ac>,<bc>] of cancelled numerator and denominator ext
rep. As there is no proper multivariate GCD cancellation is not
guaranteed to be optimal.
\>HeuristicCancelPolynomials( <fam>, <ext1>, <ext2> ) O
is called by `TryGcdCancelExtRepPol' to perform the actual work. It will
return either `fail' or a new list [<num>,<den>] of cancelled numerator
and denominator. The cancellation performed is not necessarily optimal.
|