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 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html401/loose.dtd">
<html>
<!-- Created on April, 24 2010 by texi2html 1.76 -->
<!--
Written by: Lionel Cons <Lionel.Cons@cern.ch> (original author)
Karl Berry <karl@freefriends.org>
Olaf Bachmann <obachman@mathematik.uni-kl.de>
and many others.
Maintained by: Many creative people <dev@texi2html.cvshome.org>
Send bugs and suggestions to <users@texi2html.cvshome.org>
-->
<head>
<title>Maxima 5.21.1 Manual: 32. Symmetries</title>
<meta name="description" content="Maxima 5.21.1 Manual: 32. Symmetries">
<meta name="keywords" content="Maxima 5.21.1 Manual: 32. Symmetries">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="texi2html 1.76">
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
pre.display {font-family: serif}
pre.format {font-family: serif}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: serif; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: serif; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.sansserif {font-family:sans-serif; font-weight:normal;}
ul.toc {list-style: none}
body
{
color: black;
background: white;
margin-left: 8%;
margin-right: 13%;
}
h1
{
margin-left: +8%;
font-size: 150%;
font-family: sans-serif
}
h2
{
font-size: 125%;
font-family: sans-serif
}
h3
{
font-size: 100%;
font-family: sans-serif
}
h2,h3,h4,h5,h6 { margin-left: +4%; }
div.textbox
{
border: solid;
border-width: thin;
/* width: 100%; */
padding-top: 1em;
padding-bottom: 1em;
padding-left: 2em;
padding-right: 2em
}
div.titlebox
{
border: none;
padding-top: 1em;
padding-bottom: 1em;
padding-left: 2em;
padding-right: 2em;
background: rgb(200,255,255);
font-family: sans-serif
}
div.synopsisbox
{
border: none;
padding-top: 1em;
padding-bottom: 1em;
padding-left: 2em;
padding-right: 2em;
background: rgb(255,220,255);
/*background: rgb(200,255,255); */
/* font-family: fixed */
}
pre.example
{
border: 1px solid gray;
padding-top: 1em;
padding-bottom: 1em;
padding-left: 1em;
padding-right: 1em;
/* background: rgb(247,242,180); */ /* kind of sandy */
/* background: rgb(200,255,255); */ /* sky blue */
background-color: #F1F5F9; /* light blue-gray */
/* font-family: "Lucida Console", monospace */
}
div.spacerbox
{
border: none;
padding-top: 2em;
padding-bottom: 2em
}
div.image
{
margin: 0;
padding: 1em;
text-align: center;
}
div.categorybox
{
border: 1px solid gray;
padding-top: 0px;
padding-bottom: 0px;
padding-left: 1em;
padding-right: 1em;
background: rgb(247,242,220);
}
-->
</style>
<link rel="icon" href="http://maxima.sourceforge.net/favicon.ico"/>
</head>
<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<a name="Symmetries"></a>
<a name="SEC140"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="maxima_31.html#SEC139" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#SEC141" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="maxima_31.html#SEC138" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="maxima.html#SEC_Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="maxima_33.html#SEC150" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="maxima.html#SEC_Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="maxima_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="maxima_79.html#SEC331" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="maxima_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h1 class="chapter"> 32. Symmetries </h1>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#SEC141">32.1 Introduction to Symmetries</a></td><td> </td><td align="left" valign="top">
</td></tr>
<tr><td align="left" valign="top"><a href="#SEC142">32.2 Functions and Variables for Symmetries</a></td><td> </td><td align="left" valign="top">
</td></tr>
</table>
<p><a name="Item_003a-Introduction-to-Symmetries"></a>
</p><hr size="6">
<a name="Introduction-to-Symmetries"></a>
<a name="SEC141"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#SEC140" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#SEC142" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#SEC140" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#SEC140" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="maxima_33.html#SEC150" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="maxima.html#SEC_Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="maxima_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="maxima_79.html#SEC331" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="maxima_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h2 class="section"> 32.1 Introduction to Symmetries </h2>
<p><code>sym</code> is a package for working with symmetric groups of polynomials.
</p>
<p>It was written for Macsyma-Symbolics by Annick Valibouze (<a href="http://www-calfor.lip6.fr/~avb/">http://www-calfor.lip6.fr/~avb/</a>).
The algorithms are described in the following papers:
</p>
<ol>
<li>
Fonctions symétriques et changements de bases. Annick Valibouze.
EUROCAL'87 (Leipzig, 1987), 323-332, Lecture Notes in Comput. Sci 378.
Springer, Berlin, 1989.<br>
<a href="http://www.stix.polytechnique.fr/publications/1984-1994.html">http://www.stix.polytechnique.fr/publications/1984-1994.html</a>
</li><li> Résolvantes et fonctions symétriques. Annick Valibouze.
Proceedings of the ACM-SIGSAM 1989 International Symposium on Symbolic
and Algebraic Computation, ISSAC'89 (Portland, Oregon).
ACM Press, 390-399, 1989.<br>
<a href="http://www-calfor.lip6.fr/~avb/DonneesTelechargeables/MesArticles/issac89ACMValibouze.pdf">http://www-calfor.lip6.fr/~avb/DonneesTelechargeables/MesArticles/issac89ACMValibouze.pdf</a>
</li><li> Symbolic computation with symmetric polynomials, an extension to Macsyma.
Annick Valibouze. Computers and Mathematics (MIT, USA, June 13-17, 1989),
Springer-Verlag, New York Berlin, 308-320, 1989.<br>
<a href="http://www.stix.polytechnique.fr/publications/1984-1994.html">http://www.stix.polytechnique.fr/publications/1984-1994.html</a>
</li><li> Théorie de Galois Constructive. Annick Valibouze. Mémoire d'habilitation
à diriger les recherches (HDR), Université P. et M. Curie (Paris VI), 1994.
</li></ol>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Group-theory">Group theory</a>
·
<a href="maxima_95.html#Category_003a-Polynomials">Polynomials</a>
·
<a href="maxima_95.html#Category_003a-Share-packages">Share packages</a>
·
<a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
<p><a name="Item_003a-Functions-and-Variables-for-Symmetries"></a>
</p><hr size="6">
<a name="Functions-and-Variables-for-Symmetries"></a>
<a name="SEC142"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#SEC141" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#SEC143" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#SEC140" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#SEC140" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="maxima_33.html#SEC150" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="maxima.html#SEC_Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="maxima_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="maxima_79.html#SEC331" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="maxima_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h2 class="section"> 32.2 Functions and Variables for Symmetries </h2>
<hr size="6">
<a name="SEC143"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#SEC142" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#SEC144" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#SEC140" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#SEC142" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="maxima_33.html#SEC150" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="maxima.html#SEC_Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="maxima_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="maxima_79.html#SEC331" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="maxima_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h3 class="subsection"> 32.2.1 Changing bases </h3>
<p><a name="Item_003a-comp2pui"></a>
</p><dl>
<dt><u>Function:</u> <b>comp2pui</b><i> (<var>n</var>, <var>L</var>)</i>
<a name="IDX1183"></a>
</dt>
<dd><p>implements passing from the complete symmetric functions given in the list
<var>L</var> to the elementary symmetric functions from 0 to <var>n</var>. If the
list <var>L</var> contains fewer than <var>n+1</var> elements, it will be completed with
formal values of the type <var>h1</var>, <var>h2</var>, etc. If the first element
of the list <var>L</var> exists, it specifies the size of the alphabet,
otherwise the size is set to <var>n</var>.
</p>
<pre class="example">(%i1) comp2pui (3, [4, g]);
2 2
(%o1) [4, g, 2 h2 - g , 3 h3 - g h2 + g (g - 2 h2)]
</pre>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-ele2pui"></a>
</p><dl>
<dt><u>Function:</u> <b>ele2pui</b><i> (<var>m</var>, <var>L</var>)</i>
<a name="IDX1184"></a>
</dt>
<dd><p>goes from the elementary symmetric functions to the complete functions.
Similar to <code>comp2ele</code> and <code>comp2pui</code>.
</p>
<p>Other functions for changing bases: <code>comp2ele</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-ele2comp"></a>
</p><dl>
<dt><u>Function:</u> <b>ele2comp</b><i> (<var>m</var>, <var>L</var>)</i>
<a name="IDX1185"></a>
</dt>
<dd><p>Goes from the elementary symmetric functions to the compete functions.
Similar to <code>comp2ele</code> and <code>comp2pui</code>.
</p>
<p>Other functions for changing bases: <code>comp2ele</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-elem"></a>
</p><dl>
<dt><u>Function:</u> <b>elem</b><i> (<var>ele</var>, <var>sym</var>, <var>lvar</var>)</i>
<a name="IDX1186"></a>
</dt>
<dd><p>decomposes the symmetric polynomial <var>sym</var>, in the variables
contained in the list <var>lvar</var>, in terms of the elementary symmetric
functions given in the list <var>ele</var>. If the first element of
<var>ele</var> is given, it will be the size of the alphabet, otherwise the
size will be the degree of the polynomial <var>sym</var>. If values are
missing in the list <var>ele</var>, formal values of the type <var>e1</var>,
<var>e2</var>, etc. will be added. The polynomial <var>sym</var> may be given in
three different forms: contracted (<code>elem</code> should then be 1, its
default value), partitioned (<code>elem</code> should be 3), or extended
(i.e. the entire polynomial, and <code>elem</code> should then be 2). The
function <code>pui</code> is used in the same way.
</p>
<p>On an alphabet of size 3 with <var>e1</var>, the first elementary symmetric
function, with value 7, the symmetric polynomial in 3 variables whose
contracted form (which here depends on only two of its variables) is
<var>x^4-2*x*y</var> decomposes as follows in elementary symmetric functions:
</p>
<pre class="example">(%i1) elem ([3, 7], x^4 - 2*x*y, [x, y]);
(%o1) 7 (e3 - 7 e2 + 7 (49 - e2)) + 21 e3
+ (- 2 (49 - e2) - 2) e2
(%i2) ratsimp (%);
2
(%o2) 28 e3 + 2 e2 - 198 e2 + 2401
</pre>
<p>Other functions for changing bases: <code>comp2ele</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-mon2schur"></a>
</p><dl>
<dt><u>Function:</u> <b>mon2schur</b><i> (<var>L</var>)</i>
<a name="IDX1187"></a>
</dt>
<dd><p>The list <var>L</var> represents the Schur function <em>S_L</em>: we have
<em>L = [i_1, i_2, ..., i_q]</em>, with <em>i_1 <= i_2 <= ... <= i_q</em>.
The Schur function <em>S_[i_1, i_2, ..., i_q]</em> is the minor
of the infinite matrix <em>h_[i-j]</em>, <em>i <= 1, j <= 1</em>,
consisting of the <em>q</em> first rows and the columns <em>1 + i_1,
2 + i_2, ..., q + i_q</em>.
</p>
<p>This Schur function can be written in terms of monomials by using
<code>treinat</code> and <code>kostka</code>. The form returned is a symmetric
polynomial in a contracted representation in the variables
<em>x_1,x_2,...</em>
</p>
<pre class="example">(%i1) mon2schur ([1, 1, 1]);
(%o1) x1 x2 x3
(%i2) mon2schur ([3]);
2 3
(%o2) x1 x2 x3 + x1 x2 + x1
(%i3) mon2schur ([1, 2]);
2
(%o3) 2 x1 x2 x3 + x1 x2
</pre>
<p>which means that for 3 variables this gives:
</p>
<pre class="example"> 2 x1 x2 x3 + x1^2 x2 + x2^2 x1 + x1^2 x3 + x3^2 x1
+ x2^2 x3 + x3^2 x2
</pre>
<p>Other functions for changing bases: <code>comp2ele</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-multi_005felem"></a>
</p><dl>
<dt><u>Function:</u> <b>multi_elem</b><i> (<var>l_elem</var>, <var>multi_pc</var>, <var>l_var</var>)</i>
<a name="IDX1188"></a>
</dt>
<dd><p>decomposes a multi-symmetric polynomial in the multi-contracted form
<var>multi_pc</var> in the groups of variables contained in the list of lists
<var>l_var</var> in terms of the elementary symmetric functions contained in
<var>l_elem</var>.
</p>
<pre class="example">(%i1) multi_elem ([[2, e1, e2], [2, f1, f2]], a*x + a^2 + x^3,
[[x, y], [a, b]]);
3
(%o1) - 2 f2 + f1 (f1 + e1) - 3 e1 e2 + e1
(%i2) ratsimp (%);
2 3
(%o2) - 2 f2 + f1 + e1 f1 - 3 e1 e2 + e1
</pre>
<p>Other functions for changing bases: <code>comp2ele</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-multi_005fpui"></a>
</p><dl>
<dt><u>Function:</u> <b>multi_pui</b>
<a name="IDX1189"></a>
</dt>
<dd><p>is to the function <code>pui</code> what the function <code>multi_elem</code> is to
the function <code>elem</code>.
</p>
<pre class="example">(%i1) multi_pui ([[2, p1, p2], [2, t1, t2]], a*x + a^2 + x^3,
[[x, y], [a, b]]);
3
3 p1 p2 p1
(%o1) t2 + p1 t1 + ------- - ---
2 2
</pre>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-pui"></a>
</p><dl>
<dt><u>Function:</u> <b>pui</b><i> (<var>L</var>, <var>sym</var>, <var>lvar</var>)</i>
<a name="IDX1190"></a>
</dt>
<dd><p>decomposes the symmetric polynomial <var>sym</var>, in the variables in the
list <var>lvar</var>, in terms of the power functions in the list <var>L</var>.
If the first element of <var>L</var> is given, it will be the size of the
alphabet, otherwise the size will be the degree of the polynomial
<var>sym</var>. If values are missing in the list <var>L</var>, formal values of
the type <var>p1</var>, <var>p2</var> , etc. will be added. The polynomial
<var>sym</var> may be given in three different forms: contracted (<code>elem</code>
should then be 1, its default value), partitioned (<code>elem</code> should be
3), or extended (i.e. the entire polynomial, and <code>elem</code> should then
be 2). The function <code>pui</code> is used in the same way.
</p>
<pre class="example">(%i1) pui;
(%o1) 1
(%i2) pui ([3, a, b], u*x*y*z, [x, y, z]);
2
a (a - b) u (a b - p3) u
(%o2) ------------ - ------------
6 3
(%i3) ratsimp (%);
3
(2 p3 - 3 a b + a ) u
(%o3) ---------------------
6
</pre>
<p>Other functions for changing bases: <code>comp2ele</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-pui2comp"></a>
</p><dl>
<dt><u>Function:</u> <b>pui2comp</b><i> (<var>n</var>, <var>lpui</var>)</i>
<a name="IDX1191"></a>
</dt>
<dd><p>renders the list of the first <var>n</var> complete functions (with the
length first) in terms of the power functions given in the list
<var>lpui</var>. If the list <var>lpui</var> is empty, the cardinal is <var>n</var>,
otherwise it is its first element (as in <code>comp2ele</code> and
<code>comp2pui</code>).
</p>
<pre class="example">(%i1) pui2comp (2, []);
2
p2 + p1
(%o1) [2, p1, --------]
2
(%i2) pui2comp (3, [2, a1]);
2
a1 (p2 + a1 )
2 p3 + ------------- + a1 p2
p2 + a1 2
(%o2) [2, a1, --------, --------------------------]
2 3
(%i3) ratsimp (%);
2 3
p2 + a1 2 p3 + 3 a1 p2 + a1
(%o3) [2, a1, --------, --------------------]
2 6
</pre>
<p>Other functions for changing bases: <code>comp2ele</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-pui2ele"></a>
</p><dl>
<dt><u>Function:</u> <b>pui2ele</b><i> (<var>n</var>, <var>lpui</var>)</i>
<a name="IDX1192"></a>
</dt>
<dd><p>effects the passage from power functions to the elementary symmetric functions.
If the flag <code>pui2ele</code> is <code>girard</code>, it will return the list of
elementary symmetric functions from 1 to <var>n</var>, and if the flag is
<code>close</code>, it will return the <var>n</var>-th elementary symmetric function.
</p>
<p>Other functions for changing bases: <code>comp2ele</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-puireduc"></a>
</p><dl>
<dt><u>Function:</u> <b>puireduc</b><i> (<var>n</var>, <var>lpui</var>)</i>
<a name="IDX1193"></a>
</dt>
<dd><p><var>lpui</var> is a list whose first element is an integer <var>m</var>.
<code>puireduc</code> gives the first <var>n</var> power functions in terms of the
first <var>m</var>.
</p>
<pre class="example">(%i1) puireduc (3, [2]);
2
p1 (p1 - p2)
(%o1) [2, p1, p2, p1 p2 - -------------]
2
(%i2) ratsimp (%);
3
3 p1 p2 - p1
(%o2) [2, p1, p2, -------------]
2
</pre>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-schur2comp"></a>
</p><dl>
<dt><u>Function:</u> <b>schur2comp</b><i> (<var>P</var>, <var>l_var</var>)</i>
<a name="IDX1194"></a>
</dt>
<dd><p><var>P</var> is a polynomial in the variables of the list <var>l_var</var>. Each
of these variables represents a complete symmetric function. In
<var>l_var</var> the <var>i</var>-th complete symmetric function is represented by
the concatenation of the letter <code>h</code> and the integer <var>i</var>:
<code>h<var>i</var></code>. This function expresses <var>P</var> in terms of Schur
functions.
</p>
<pre class="example">(%i1) schur2comp (h1*h2 - h3, [h1, h2, h3]);
(%o1) s
1, 2
(%i2) schur2comp (a*h3, [h3]);
(%o2) s a
3
</pre>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<hr size="6">
<a name="SEC144"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#SEC143" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#SEC145" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#SEC140" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#SEC142" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="maxima_33.html#SEC150" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="maxima.html#SEC_Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="maxima_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="maxima_79.html#SEC331" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="maxima_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h3 class="subsection"> 32.2.2 Changing representations </h3>
<p><a name="Item_003a-cont2part"></a>
</p><dl>
<dt><u>Function:</u> <b>cont2part</b><i> (<var>pc</var>, <var>lvar</var>)</i>
<a name="IDX1195"></a>
</dt>
<dd><p>returns the partitioned polynomial associated to the contracted form
<var>pc</var> whose variables are in <var>lvar</var>.
</p>
<pre class="example">(%i1) pc: 2*a^3*b*x^4*y + x^5;
3 4 5
(%o1) 2 a b x y + x
(%i2) cont2part (pc, [x, y]);
3
(%o2) [[1, 5, 0], [2 a b, 4, 1]]
</pre>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<dl>
<dt><u>Function:</u> <b>contract</b><i> (<var>psym</var>, <var>lvar</var>)</i>
<a name="IDX1196"></a>
</dt>
<dd><p>returns a contracted form (i.e. a monomial orbit under the action of the
symmetric group) of the polynomial <var>psym</var> in the variables contained
in the list <var>lvar</var>. The function <code>explose</code> performs the
inverse operation. The function <code>tcontract</code> tests the symmetry of
the polynomial.
</p>
<pre class="example">(%i1) psym: explose (2*a^3*b*x^4*y, [x, y, z]);
3 4 3 4 3 4 3 4
(%o1) 2 a b y z + 2 a b x z + 2 a b y z + 2 a b x z
3 4 3 4
+ 2 a b x y + 2 a b x y
(%i2) contract (psym, [x, y, z]);
3 4
(%o2) 2 a b x y
</pre>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-explose"></a>
</p><dl>
<dt><u>Function:</u> <b>explose</b><i> (<var>pc</var>, <var>lvar</var>)</i>
<a name="IDX1197"></a>
</dt>
<dd><p>returns the symmetric polynomial associated with the contracted form
<var>pc</var>. The list <var>lvar</var> contains the variables.
</p>
<pre class="example">(%i1) explose (a*x + 1, [x, y, z]);
(%o1) a z + a y + a x + 1
</pre>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-part2cont"></a>
</p><dl>
<dt><u>Function:</u> <b>part2cont</b><i> (<var>ppart</var>, <var>lvar</var>)</i>
<a name="IDX1198"></a>
</dt>
<dd><p>goes from the partitioned form to the contracted form of a symmetric polynomial.
The contracted form is rendered with the variables in <var>lvar</var>.
</p>
<pre class="example">(%i1) part2cont ([[2*a^3*b, 4, 1]], [x, y]);
3 4
(%o1) 2 a b x y
</pre>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-partpol"></a>
</p><dl>
<dt><u>Function:</u> <b>partpol</b><i> (<var>psym</var>, <var>lvar</var>)</i>
<a name="IDX1199"></a>
</dt>
<dd><p><var>psym</var> is a symmetric polynomial in the variables of the list
<var>lvar</var>. This function retturns its partitioned representation.
</p>
<pre class="example">(%i1) partpol (-a*(x + y) + 3*x*y, [x, y]);
(%o1) [[3, 1, 1], [- a, 1, 0]]
</pre>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-tcontract"></a>
</p><dl>
<dt><u>Function:</u> <b>tcontract</b><i> (<var>pol</var>, <var>lvar</var>)</i>
<a name="IDX1200"></a>
</dt>
<dd><p>tests if the polynomial <var>pol</var> is symmetric in the variables of the
list <var>lvar</var>. If so, it returns a contracted representation like the
function <code>contract</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-tpartpol"></a>
</p><dl>
<dt><u>Function:</u> <b>tpartpol</b><i> (<var>pol</var>, <var>lvar</var>)</i>
<a name="IDX1201"></a>
</dt>
<dd><p>tests if the polynomial <var>pol</var> is symmetric in the variables of the
list <var>lvar</var>. If so, it returns its partitioned representation like
the function <code>partpol</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<hr size="6">
<a name="SEC145"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#SEC144" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#SEC146" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#SEC140" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#SEC142" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="maxima_33.html#SEC150" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="maxima.html#SEC_Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="maxima_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="maxima_79.html#SEC331" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="maxima_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h3 class="subsection"> 32.2.3 Groups and orbits </h3>
<p><a name="Item_003a-direct"></a>
</p><dl>
<dt><u>Function:</u> <b>direct</b><i> ([<var>p_1</var>, ..., <var>p_n</var>], <var>y</var>, <var>f</var>, [<var>lvar_1</var>, ..., <var>lvar_n</var>])</i>
<a name="IDX1202"></a>
</dt>
<dd><p>calculates the direct image (see M. Giusti, D. Lazard et A. Valibouze,
ISSAC 1988, Rome) associated to the function <var>f</var>, in the lists of
variables <var>lvar_1</var>, ..., <var>lvar_n</var>, and in the polynomials
<var>p_1</var>, ..., <var>p_n</var> in a variable <var>y</var>. The arity of the
function <var>f</var> is important for the calulation. Thus, if the
expression for <var>f</var> does not depend on some variable, it is useless
to include this variable, and not including it will also considerably
reduce the amount of computation.
</p>
<pre class="example">(%i1) direct ([z^2 - e1* z + e2, z^2 - f1* z + f2],
z, b*v + a*u, [[u, v], [a, b]]);
2
(%o1) y - e1 f1 y
2 2 2 2
- 4 e2 f2 - (e1 - 2 e2) (f1 - 2 f2) + e1 f1
+ -----------------------------------------------
2
(%i2) ratsimp (%);
2 2 2
(%o2) y - e1 f1 y + (e1 - 4 e2) f2 + e2 f1
(%i3) ratsimp (direct ([z^3-e1*z^2+e2*z-e3,z^2 - f1* z + f2],
z, b*v + a*u, [[u, v], [a, b]]));
6 5 2 2 2 4
(%o3) y - 2 e1 f1 y + ((2 e1 - 6 e2) f2 + (2 e2 + e1 ) f1 ) y
3 3 3
+ ((9 e3 + 5 e1 e2 - 2 e1 ) f1 f2 + (- 2 e3 - 2 e1 e2) f1 ) y
2 2 4 2
+ ((9 e2 - 6 e1 e2 + e1 ) f2
2 2 2 2 4
+ (- 9 e1 e3 - 6 e2 + 3 e1 e2) f1 f2 + (2 e1 e3 + e2 ) f1 )
2 2 2 3 2
y + (((9 e1 - 27 e2) e3 + 3 e1 e2 - e1 e2) f1 f2
2 2 3 5
+ ((15 e2 - 2 e1 ) e3 - e1 e2 ) f1 f2 - 2 e2 e3 f1 ) y
2 3 3 2 2 3
+ (- 27 e3 + (18 e1 e2 - 4 e1 ) e3 - 4 e2 + e1 e2 ) f2
2 3 3 2 2
+ (27 e3 + (e1 - 9 e1 e2) e3 + e2 ) f1 f2
2 4 2 6
+ (e1 e2 e3 - 9 e3 ) f1 f2 + e3 f1
</pre>
<p>Finding the polynomial whose roots are the sums <em>a+u</em> where <em>a</em>
is a root of <em>z^2 - e_1 z + e_2</em> and <em>u</em> is a root of <em>z^2 -
f_1 z + f_2</em>.
</p>
<pre class="example">(%i1) ratsimp (direct ([z^2 - e1* z + e2, z^2 - f1* z + f2],
z, a + u, [[u], [a]]));
4 3 2
(%o1) y + (- 2 f1 - 2 e1) y + (2 f2 + f1 + 3 e1 f1 + 2 e2
2 2 2 2
+ e1 ) y + ((- 2 f1 - 2 e1) f2 - e1 f1 + (- 2 e2 - e1 ) f1
2 2 2
- 2 e1 e2) y + f2 + (e1 f1 - 2 e2 + e1 ) f2 + e2 f1 + e1 e2 f1
2
+ e2
</pre>
<p><code>direct</code> accepts two flags: <code>elementaires</code> and
<code>puissances</code> (default) which allow decomposing the symmetric
polynomials appearing in the calculation into elementary symmetric
functions, or power functions, respectively.
</p>
<p>Functions of <code>sym</code> used in this function:
</p>
<p><code>multi_orbit</code> (so <code>orbit</code>), <code>pui_direct</code>, <code>multi_elem</code>
(so <code>elem</code>), <code>multi_pui</code> (so <code>pui</code>), <code>pui2ele</code>, <code>ele2pui</code>
(if the flag <code>direct</code> is in <code>puissances</code>).
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-multi_005forbit"></a>
</p><dl>
<dt><u>Function:</u> <b>multi_orbit</b><i> (<var>P</var>, [<var>lvar_1</var>, <var>lvar_2</var>,..., <var>lvar_p</var>])</i>
<a name="IDX1203"></a>
</dt>
<dd><p><var>P</var> is a polynomial in the set of variables contained in the lists
<var>lvar_1</var>, <var>lvar_2</var>, ..., <var>lvar_p</var>. This function returns the
orbit of the polynomial <var>P</var> under the action of the product of the
symmetric groups of the sets of variables represented in these <var>p</var>
lists.
</p>
<pre class="example">(%i1) multi_orbit (a*x + b*y, [[x, y], [a, b]]);
(%o1) [b y + a x, a y + b x]
(%i2) multi_orbit (x + y + 2*a, [[x, y], [a, b, c]]);
(%o2) [y + x + 2 c, y + x + 2 b, y + x + 2 a]
</pre>
<p>Also see: <code>orbit</code> for the action of a single symmetric group.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-multsym"></a>
</p><dl>
<dt><u>Function:</u> <b>multsym</b><i> (<var>ppart_1</var>, <var>ppart_2</var>, <var>n</var>)</i>
<a name="IDX1204"></a>
</dt>
<dd><p>returns the product of the two symmetric polynomials in <var>n</var>
variables by working only modulo the action of the symmetric group of
order <var>n</var>. The polynomials are in their partitioned form.
</p>
<p>Given the 2 symmetric polynomials in <var>x</var>, <var>y</var>: <code>3*(x + y)
+ 2*x*y</code> and <code>5*(x^2 + y^2)</code> whose partitioned forms are <code>[[3,
1], [2, 1, 1]]</code> and <code>[[5, 2]]</code>, their product will be
</p>
<pre class="example">(%i1) multsym ([[3, 1], [2, 1, 1]], [[5, 2]], 2);
(%o1) [[10, 3, 1], [15, 3, 0], [15, 2, 1]]
</pre>
<p>that is <code>10*(x^3*y + y^3*x) + 15*(x^2*y + y^2*x) + 15*(x^3 + y^3)</code>.
</p>
<p>Functions for changing the representations of a symmetric polynomial:
</p>
<p><code>contract</code>, <code>cont2part</code>, <code>explose</code>, <code>part2cont</code>,
<code>partpol</code>, <code>tcontract</code>, <code>tpartpol</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-orbit"></a>
</p><dl>
<dt><u>Function:</u> <b>orbit</b><i> (<var>P</var>, <var>lvar</var>)</i>
<a name="IDX1205"></a>
</dt>
<dd><p>computes the orbit of the polynomial <var>P</var> in the variables in the list
<var>lvar</var> under the action of the symmetric group of the set of
variables in the list <var>lvar</var>.
</p>
<pre class="example">(%i1) orbit (a*x + b*y, [x, y]);
(%o1) [a y + b x, b y + a x]
(%i2) orbit (2*x + x^2, [x, y]);
2 2
(%o2) [y + 2 y, x + 2 x]
</pre>
<p>See also <code>multi_orbit</code> for the action of a product of symmetric
groups on a polynomial.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-pui_005fdirect"></a>
</p><dl>
<dt><u>Function:</u> <b>pui_direct</b><i> (<var>orbite</var>, [<var>lvar_1</var>, ..., <var>lvar_n</var>], [<var>d_1</var>, <var>d_2</var>, ..., <var>d_n</var>])</i>
<a name="IDX1206"></a>
</dt>
<dd><p>Let <var>f</var> be a polynomial in <var>n</var> blocks of variables <var>lvar_1</var>,
..., <var>lvar_n</var>. Let <var>c_i</var> be the number of variables in
<var>lvar_i</var>, and <var>SC</var> be the product of <var>n</var> symmetric groups of
degree <var>c_1</var>, ..., <var>c_n</var>. This group acts naturally on <var>f</var>.
The list <var>orbite</var> is the orbit, denoted <code><var>SC</var>(<var>f</var>)</code>, of
the function <var>f</var> under the action of <var>SC</var>. (This list may be
obtained by the function <code>multi_orbit</code>.) The <var>di</var> are integers
s.t.
<em>c_1 <= d_1, c_2 <= d_2, ..., c_n <= d_n</em>.
</p>
<p>Let <var>SD</var> be the product of the symmetric groups <em>S_[d_1] x
S_[d_2] x ... x S_[d_n]</em>.
The function <code>pui_direct</code> returns
the first <var>n</var> power functions of <code><var>SD</var>(<var>f</var>)</code> deduced
from the power functions of <code><var>SC</var>(<var>f</var>)</code>, where <var>n</var> is
the size of <code><var>SD</var>(<var>f</var>)</code>.
</p>
<p>The result is in multi-contracted form w.r.t. <var>SD</var>, i.e. only one
element is kept per orbit, under the action of <var>SD</var>.
</p>
<pre class="example">(%i1) l: [[x, y], [a, b]];
(%o1) [[x, y], [a, b]]
(%i2) pui_direct (multi_orbit (a*x + b*y, l), l, [2, 2]);
2 2
(%o2) [a x, 4 a b x y + a x ]
(%i3) pui_direct (multi_orbit (a*x + b*y, l), l, [3, 2]);
2 2 2 2 3 3
(%o3) [2 a x, 4 a b x y + 2 a x , 3 a b x y + 2 a x ,
2 2 2 2 3 3 4 4
12 a b x y + 4 a b x y + 2 a x ,
3 2 3 2 4 4 5 5
10 a b x y + 5 a b x y + 2 a x ,
3 3 3 3 4 2 4 2 5 5 6 6
40 a b x y + 15 a b x y + 6 a b x y + 2 a x ]
(%i4) pui_direct ([y + x + 2*c, y + x + 2*b, y + x + 2*a],
[[x, y], [a, b, c]], [2, 3]);
2 2
(%o4) [3 x + 2 a, 6 x y + 3 x + 4 a x + 4 a ,
2 3 2 2 3
9 x y + 12 a x y + 3 x + 6 a x + 12 a x + 8 a ]
</pre>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<hr size="6">
<a name="SEC146"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#SEC145" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#SEC147" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#SEC140" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#SEC142" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="maxima_33.html#SEC150" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="maxima.html#SEC_Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="maxima_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="maxima_79.html#SEC331" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="maxima_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h3 class="subsection"> 32.2.4 Partitions </h3>
<p><a name="Item_003a-kostka"></a>
</p><dl>
<dt><u>Function:</u> <b>kostka</b><i> (<var>part_1</var>, <var>part_2</var>)</i>
<a name="IDX1207"></a>
</dt>
<dd><p>written by P. Esperet, calculates the Kostka number of the partition
<var>part_1</var> and <var>part_2</var>.
</p>
<pre class="example">(%i1) kostka ([3, 3, 3], [2, 2, 2, 1, 1, 1]);
(%o1) 6
</pre>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-lgtreillis"></a>
</p><dl>
<dt><u>Function:</u> <b>lgtreillis</b><i> (<var>n</var>, <var>m</var>)</i>
<a name="IDX1208"></a>
</dt>
<dd><p>returns the list of partitions of weight <var>n</var> and length <var>m</var>.
</p>
<pre class="example">(%i1) lgtreillis (4, 2);
(%o1) [[3, 1], [2, 2]]
</pre>
<p>Also see: <code>ltreillis</code>, <code>treillis</code> and <code>treinat</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-ltreillis"></a>
</p><dl>
<dt><u>Function:</u> <b>ltreillis</b><i> (<var>n</var>, <var>m</var>)</i>
<a name="IDX1209"></a>
</dt>
<dd><p>returns the list of partitions of weight <var>n</var> and length less than or
equal to <var>m</var>.
</p>
<pre class="example">(%i1) ltreillis (4, 2);
(%o1) [[4, 0], [3, 1], [2, 2]]
</pre>
<p>Also see: <code>lgtreillis</code>, <code>treillis</code> and <code>treinat</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-treillis"></a>
</p><dl>
<dt><u>Function:</u> <b>treillis</b><i> (<var>n</var>)</i>
<a name="IDX1210"></a>
</dt>
<dd><p>returns all partitions of weight <var>n</var>.
</p>
<pre class="example">(%i1) treillis (4);
(%o1) [[4], [3, 1], [2, 2], [2, 1, 1], [1, 1, 1, 1]]
</pre>
<p>See also: <code>lgtreillis</code>, <code>ltreillis</code> and <code>treinat</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-treinat"></a>
</p><dl>
<dt><u>Function:</u> <b>treinat</b><i> (<var>part</var>)</i>
<a name="IDX1211"></a>
</dt>
<dd><p>retruns the list of partitions inferior to the partition <var>part</var> w.r.t.
the natural order.
</p>
<pre class="example">(%i1) treinat ([5]);
(%o1) [[5]]
(%i2) treinat ([1, 1, 1, 1, 1]);
(%o2) [[5], [4, 1], [3, 2], [3, 1, 1], [2, 2, 1], [2, 1, 1, 1],
[1, 1, 1, 1, 1]]
(%i3) treinat ([3, 2]);
(%o3) [[5], [4, 1], [3, 2]]
</pre>
<p>See also: <code>lgtreillis</code>, <code>ltreillis</code> and <code>treillis</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<hr size="6">
<a name="SEC147"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#SEC146" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#SEC148" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#SEC140" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#SEC142" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="maxima_33.html#SEC150" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="maxima.html#SEC_Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="maxima_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="maxima_79.html#SEC331" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="maxima_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h3 class="subsection"> 32.2.5 Polynomials and their roots </h3>
<p><a name="Item_003a-ele2polynome"></a>
</p><dl>
<dt><u>Function:</u> <b>ele2polynome</b><i> (<var>L</var>, <var>z</var>)</i>
<a name="IDX1212"></a>
</dt>
<dd><p>returns the polynomial in <var>z</var> s.t. the elementary symmetric
functions of its roots are in the list <code><var>L</var> = [<var>n</var>,
<var>e_1</var>, ..., <var>e_n</var>]</code>, where <var>n</var> is the degree of the
polynomial and <var>e_i</var> the <var>i</var>-th elementary symmetric function.
</p>
<pre class="example">(%i1) ele2polynome ([2, e1, e2], z);
2
(%o1) z - e1 z + e2
(%i2) polynome2ele (x^7 - 14*x^5 + 56*x^3 - 56*x + 22, x);
(%o2) [7, 0, - 14, 0, 56, 0, - 56, - 22]
(%i3) ele2polynome ([7, 0, -14, 0, 56, 0, -56, -22], x);
7 5 3
(%o3) x - 14 x + 56 x - 56 x + 22
</pre>
<p>The inverse: <code>polynome2ele (<var>P</var>, <var>z</var>)</code>.
</p>
<p>Also see:
<code>polynome2ele</code>, <code>pui2polynome</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-polynome2ele"></a>
</p><dl>
<dt><u>Function:</u> <b>polynome2ele</b><i> (<var>P</var>, <var>x</var>)</i>
<a name="IDX1213"></a>
</dt>
<dd><p>gives the list <code><var>l</var> = [<var>n</var>, <var>e_1</var>, ..., <var>e_n</var>]</code>
where <var>n</var> is the degree of the polynomial <var>P</var> in the variable
<var>x</var> and <var>e_i</var> is the <var>i</var>-the elementary symmetric function
of the roots of <var>P</var>.
</p>
<pre class="example">(%i1) polynome2ele (x^7 - 14*x^5 + 56*x^3 - 56*x + 22, x);
(%o1) [7, 0, - 14, 0, 56, 0, - 56, - 22]
(%i2) ele2polynome ([7, 0, -14, 0, 56, 0, -56, -22], x);
7 5 3
(%o2) x - 14 x + 56 x - 56 x + 22
</pre>
<p>The inverse: <code>ele2polynome (<var>l</var>, <var>x</var>)</code>
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-prodrac"></a>
</p><dl>
<dt><u>Function:</u> <b>prodrac</b><i> (<var>L</var>, <var>k</var>)</i>
<a name="IDX1214"></a>
</dt>
<dd><p><var>L</var> is a list containing the elementary symmetric functions
on a set <var>A</var>. <code>prodrac</code> returns the polynomial whose roots
are the <var>k</var> by <var>k</var> products of the elements of <var>A</var>.
</p>
<p>Also see <code>somrac</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-pui2polynome"></a>
</p><dl>
<dt><u>Function:</u> <b>pui2polynome</b><i> (<var>x</var>, <var>lpui</var>)</i>
<a name="IDX1215"></a>
</dt>
<dd><p>calculates the polynomial in <var>x</var> whose power functions of the roots
are given in the list <var>lpui</var>.
</p>
<pre class="example">(%i1) pui;
(%o1) 1
(%i2) kill(labels);
(%o0) done
(%i1) polynome2ele (x^3 - 4*x^2 + 5*x - 1, x);
(%o1) [3, 4, 5, 1]
(%i2) ele2pui (3, %);
(%o2) [3, 4, 6, 7]
(%i3) pui2polynome (x, %);
3 2
(%o3) x - 4 x + 5 x - 1
</pre>
<p>See also:
<code>polynome2ele</code>, <code>ele2polynome</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-somrac"></a>
</p><dl>
<dt><u>Function:</u> <b>somrac</b><i> (<var>L</var>, <var>k</var>)</i>
<a name="IDX1216"></a>
</dt>
<dd><p>The list <var>L</var> contains elementary symmetric functions of a polynomial
<var>P</var> . The function computes the polynomial whose roots are the
<var>k</var> by <var>k</var> distinct sums of the roots of <var>P</var>.
</p>
<p>Also see <code>prodrac</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<hr size="6">
<a name="SEC148"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#SEC147" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#SEC149" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#SEC140" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#SEC142" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="maxima_33.html#SEC150" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="maxima.html#SEC_Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="maxima_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="maxima_79.html#SEC331" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="maxima_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h3 class="subsection"> 32.2.6 Resolvents </h3>
<p><a name="Item_003a-resolvante"></a>
</p><dl>
<dt><u>Function:</u> <b>resolvante</b><i> (<var>P</var>, <var>x</var>, <var>f</var>, [<var>x_1</var>,..., <var>x_d</var>]) </i>
<a name="IDX1217"></a>
</dt>
<dd><p>calculates the resolvent of the polynomial <var>P</var> in <var>x</var> of degree
<var>n</var> >= <var>d</var> by the function <var>f</var> expressed in the variables
<var>x_1</var>, ..., <var>x_d</var>. For efficiency of computation it is
important to not include in the list <code>[<var>x_1</var>, ..., <var>x_d</var>]</code>
variables which do not appear in the transformation function <var>f</var>.
</p>
<p>To increase the efficiency of the computation one may set flags in
<code>resolvante</code> so as to use appropriate algorithms:
</p>
<p>If the function <var>f</var> is unitary:
</p><ul>
<li>
A polynomial in a single variable,
</li><li>
linear,
</li><li>
alternating,
</li><li>
a sum,
</li><li>
symmetric,
</li><li>
a product,
</li><li>
the function of the Cayley resolvent (usable up to degree 5)
<pre class="example">(x1*x2 + x2*x3 + x3*x4 + x4*x5 + x5*x1 -
(x1*x3 + x3*x5 + x5*x2 + x2*x4 + x4*x1))^2
</pre>
<p>general,
</p></li></ul>
<p>the flag of <code>resolvante</code> may be, respectively:
</p><ul>
<li>
unitaire,
</li><li>
lineaire,
</li><li>
alternee,
</li><li>
somme,
</li><li>
produit,
</li><li>
cayley,
</li><li>
generale.
</li></ul>
<pre class="example">(%i1) resolvante: unitaire$
(%i2) resolvante (x^7 - 14*x^5 + 56*x^3 - 56*x + 22, x, x^3 - 1,
[x]);
" resolvante unitaire " [7, 0, 28, 0, 168, 0, 1120, - 154, 7840,
- 2772, 56448, - 33880,
413952, - 352352, 3076668, - 3363360, 23114112, - 30494464,
175230832, - 267412992, 1338886528, - 2292126760]
3 6 3 9 6 3
[x - 1, x - 2 x + 1, x - 3 x + 3 x - 1,
12 9 6 3 15 12 9 6 3
x - 4 x + 6 x - 4 x + 1, x - 5 x + 10 x - 10 x + 5 x
18 15 12 9 6 3
- 1, x - 6 x + 15 x - 20 x + 15 x - 6 x + 1,
21 18 15 12 9 6 3
x - 7 x + 21 x - 35 x + 35 x - 21 x + 7 x - 1]
[- 7, 1127, - 6139, 431767, - 5472047, 201692519, - 3603982011]
7 6 5 4 3 2
(%o2) y + 7 y - 539 y - 1841 y + 51443 y + 315133 y
+ 376999 y + 125253
(%i3) resolvante: lineaire$
(%i4) resolvante (x^4 - 1, x, x1 + 2*x2 + 3*x3, [x1, x2, x3]);
" resolvante lineaire "
24 20 16 12 8
(%o4) y + 80 y + 7520 y + 1107200 y + 49475840 y
4
+ 344489984 y + 655360000
(%i5) resolvante: general$
(%i6) resolvante (x^4 - 1, x, x1 + 2*x2 + 3*x3, [x1, x2, x3]);
" resolvante generale "
24 20 16 12 8
(%o6) y + 80 y + 7520 y + 1107200 y + 49475840 y
4
+ 344489984 y + 655360000
(%i7) resolvante (x^4 - 1, x, x1 + 2*x2 + 3*x3, [x1, x2, x3, x4]);
" resolvante generale "
24 20 16 12 8
(%o7) y + 80 y + 7520 y + 1107200 y + 49475840 y
4
+ 344489984 y + 655360000
(%i8) direct ([x^4 - 1], x, x1 + 2*x2 + 3*x3, [[x1, x2, x3]]);
24 20 16 12 8
(%o8) y + 80 y + 7520 y + 1107200 y + 49475840 y
4
+ 344489984 y + 655360000
(%i9) resolvante :lineaire$
(%i10) resolvante (x^4 - 1, x, x1 + x2 + x3, [x1, x2, x3]);
" resolvante lineaire "
4
(%o10) y - 1
(%i11) resolvante: symetrique$
(%i12) resolvante (x^4 - 1, x, x1 + x2 + x3, [x1, x2, x3]);
" resolvante symetrique "
4
(%o12) y - 1
(%i13) resolvante (x^4 + x + 1, x, x1 - x2, [x1, x2]);
" resolvante symetrique "
6 2
(%o13) y - 4 y - 1
(%i14) resolvante: alternee$
(%i15) resolvante (x^4 + x + 1, x, x1 - x2, [x1, x2]);
" resolvante alternee "
12 8 6 4 2
(%o15) y + 8 y + 26 y - 112 y + 216 y + 229
(%i16) resolvante: produit$
(%i17) resolvante (x^7 - 7*x + 3, x, x1*x2*x3, [x1, x2, x3]);
" resolvante produit "
35 33 29 28 27 26
(%o17) y - 7 y - 1029 y + 135 y + 7203 y - 756 y
24 23 22 21 20
+ 1323 y + 352947 y - 46305 y - 2463339 y + 324135 y
19 18 17 15
- 30618 y - 453789 y - 40246444 y + 282225202 y
14 12 11 10
- 44274492 y + 155098503 y + 12252303 y + 2893401 y
9 8 7 6
- 171532242 y + 6751269 y + 2657205 y - 94517766 y
5 3
- 3720087 y + 26040609 y + 14348907
(%i18) resolvante: symetrique$
(%i19) resolvante (x^7 - 7*x + 3, x, x1*x2*x3, [x1, x2, x3]);
" resolvante symetrique "
35 33 29 28 27 26
(%o19) y - 7 y - 1029 y + 135 y + 7203 y - 756 y
24 23 22 21 20
+ 1323 y + 352947 y - 46305 y - 2463339 y + 324135 y
19 18 17 15
- 30618 y - 453789 y - 40246444 y + 282225202 y
14 12 11 10
- 44274492 y + 155098503 y + 12252303 y + 2893401 y
9 8 7 6
- 171532242 y + 6751269 y + 2657205 y - 94517766 y
5 3
- 3720087 y + 26040609 y + 14348907
(%i20) resolvante: cayley$
(%i21) resolvante (x^5 - 4*x^2 + x + 1, x, a, []);
" resolvante de Cayley "
6 5 4 3 2
(%o21) x - 40 x + 4080 x - 92928 x + 3772160 x + 37880832 x
+ 93392896
</pre>
<p>For the Cayley resolvent, the 2 last arguments are neutral and the input
polynomial must necessarily be of degree 5.
</p>
<p>See also:
</p>
<p><code>resolvante_bipartite</code>, <code>resolvante_produit_sym</code>,
<code>resolvante_unitaire</code>, <code>resolvante_alternee1</code>, <code>resolvante_klein</code>,
<code>resolvante_klein3</code>, <code>resolvante_vierer</code>, <code>resolvante_diedrale</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-resolvante_005falternee1"></a>
</p><dl>
<dt><u>Function:</u> <b>resolvante_alternee1</b><i> (<var>P</var>, <var>x</var>)</i>
<a name="IDX1218"></a>
</dt>
<dd><p>calculates the transformation
<code><var>P</var>(<var>x</var>)</code> of degree <var>n</var> by the function
<em>product(x_i - x_j, 1 <= i < j <= n - 1)</em>.
</p>
<p>See also:
</p>
<p><code>resolvante_produit_sym</code>, <code>resolvante_unitaire</code>,
<code>resolvante</code> , <code>resolvante_klein</code>, <code>resolvante_klein3</code>,
<code>resolvante_vierer</code>, <code>resolvante_diedrale</code>, <code>resolvante_bipartite</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-resolvante_005fbipartite"></a>
</p><dl>
<dt><u>Function:</u> <b>resolvante_bipartite</b><i> (<var>P</var>, <var>x</var>)</i>
<a name="IDX1219"></a>
</dt>
<dd><p>calculates the transformation of
<code><var>P</var>(<var>x</var>)</code> of even degree <var>n</var> by the function
<em>x_1 x_2 ... x_[n/2] + x_[n/2 + 1] ... x_n</em>.
</p>
<p>See also:
</p>
<p><code>resolvante_produit_sym</code>, <code>resolvante_unitaire</code>,
<code>resolvante</code> , <code>resolvante_klein</code>, <code>resolvante_klein3</code>,
<code>resolvante_vierer</code>, <code>resolvante_diedrale</code>, <code>resolvante_alternee1</code>.
</p>
<pre class="example">(%i1) resolvante_bipartite (x^6 + 108, x);
10 8 6 4
(%o1) y - 972 y + 314928 y - 34012224 y
</pre>
<p>See also:
</p>
<p><code>resolvante_produit_sym</code>, <code>resolvante_unitaire</code>,
<code>resolvante</code>, <code>resolvante_klein</code>, <code>resolvante_klein3</code>,
<code>resolvante_vierer</code>, <code>resolvante_diedrale</code>,
<code>resolvante_alternee1</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-resolvante_005fdiedrale"></a>
</p><dl>
<dt><u>Function:</u> <b>resolvante_diedrale</b><i> (<var>P</var>, <var>x</var>)</i>
<a name="IDX1220"></a>
</dt>
<dd><p>calculates the transformation of <code><var>P</var>(<var>x</var>)</code> by the function
<code><var>x_1</var> <var>x_2</var> + <var>x_3</var> <var>x_4</var></code>.
</p>
<pre class="example">(%i1) resolvante_diedrale (x^5 - 3*x^4 + 1, x);
15 12 11 10 9 8 7
(%o1) x - 21 x - 81 x - 21 x + 207 x + 1134 x + 2331 x
6 5 4 3 2
- 945 x - 4970 x - 18333 x - 29079 x - 20745 x - 25326 x
- 697
</pre>
<p>See also:
</p>
<p><code>resolvante_produit_sym</code>, <code>resolvante_unitaire</code>,
<code>resolvante_alternee1</code>, <code>resolvante_klein</code>, <code>resolvante_klein3</code>,
<code>resolvante_vierer</code>, <code>resolvante</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-resolvante_005fklein"></a>
</p><dl>
<dt><u>Function:</u> <b>resolvante_klein</b><i> (<var>P</var>, <var>x</var>)</i>
<a name="IDX1221"></a>
</dt>
<dd><p>calculates the transformation of <code><var>P</var>(<var>x</var>)</code> by the function
<code><var>x_1</var> <var>x_2</var> <var>x_4</var> + <var>x_4</var></code>.
</p>
<p>See also:
</p>
<p><code>resolvante_produit_sym</code>, <code>resolvante_unitaire</code>,
<code>resolvante_alternee1</code>, <code>resolvante</code>, <code>resolvante_klein3</code>,
<code>resolvante_vierer</code>, <code>resolvante_diedrale</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-resolvante_005fklein3"></a>
</p><dl>
<dt><u>Function:</u> <b>resolvante_klein3</b><i> (<var>P</var>, <var>x</var>)</i>
<a name="IDX1222"></a>
</dt>
<dd><p>calculates the transformation of <code><var>P</var>(<var>x</var>)</code> by the function
<code><var>x_1</var> <var>x_2</var> <var>x_4</var> + <var>x_4</var></code>.
</p>
<p>See also:
</p>
<p><code>resolvante_produit_sym</code>, <code>resolvante_unitaire</code>,
<code>resolvante_alternee1</code>, <code>resolvante_klein</code>, <code>resolvante</code>,
<code>resolvante_vierer</code>, <code>resolvante_diedrale</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-resolvante_005fproduit_005fsym"></a>
</p><dl>
<dt><u>Function:</u> <b>resolvante_produit_sym</b><i> (<var>P</var>, <var>x</var>)</i>
<a name="IDX1223"></a>
</dt>
<dd><p>calculates the list of all product resolvents of the polynomial
<code><var>P</var>(<var>x</var>)</code>.
</p>
<pre class="example">(%i1) resolvante_produit_sym (x^5 + 3*x^4 + 2*x - 1, x);
5 4 10 8 7 6 5
(%o1) [y + 3 y + 2 y - 1, y - 2 y - 21 y - 31 y - 14 y
4 3 2 10 8 7 6 5 4
- y + 14 y + 3 y + 1, y + 3 y + 14 y - y - 14 y - 31 y
3 2 5 4
- 21 y - 2 y + 1, y - 2 y - 3 y - 1, y - 1]
(%i2) resolvante: produit$
(%i3) resolvante (x^5 + 3*x^4 + 2*x - 1, x, a*b*c, [a, b, c]);
" resolvante produit "
10 8 7 6 5 4 3 2
(%o3) y + 3 y + 14 y - y - 14 y - 31 y - 21 y - 2 y + 1
</pre>
<p>See also:
</p>
<p><code>resolvante</code>, <code>resolvante_unitaire</code>,
<code>resolvante_alternee1</code>, <code>resolvante_klein</code>,
<code>resolvante_klein3</code>, <code>resolvante_vierer</code>,
<code>resolvante_diedrale</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-resolvante_005funitaire"></a>
</p><dl>
<dt><u>Function:</u> <b>resolvante_unitaire</b><i> (<var>P</var>, <var>Q</var>, <var>x</var>)</i>
<a name="IDX1224"></a>
</dt>
<dd><p>computes the resolvent of the polynomial <code><var>P</var>(<var>x</var>)</code> by the
polynomial <code><var>Q</var>(<var>x</var>)</code>.
</p>
<p>See also:
</p>
<p><code>resolvante_produit_sym</code>, <code>resolvante</code>,
<code>resolvante_alternee1</code>, <code>resolvante_klein</code>, <code>resolvante_klein3</code>,
<code>resolvante_vierer</code>, <code>resolvante_diedrale</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-resolvante_005fvierer"></a>
</p><dl>
<dt><u>Function:</u> <b>resolvante_vierer</b><i> (<var>P</var>, <var>x</var>)</i>
<a name="IDX1225"></a>
</dt>
<dd><p>computes the transformation of
<code><var>P</var>(<var>x</var>)</code> by the function <code><var>x_1</var> <var>x_2</var> -
<var>x_3</var> <var>x_4</var></code>.
</p>
<p>See also:
</p>
<p><code>resolvante_produit_sym</code>, <code>resolvante_unitaire</code>,
<code>resolvante_alternee1</code>, <code>resolvante_klein</code>, <code>resolvante_klein3</code>,
<code>resolvante</code>, <code>resolvante_diedrale</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<hr size="6">
<a name="SEC149"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#SEC148" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="maxima_33.html#SEC150" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#SEC140" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#SEC142" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="maxima_33.html#SEC150" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="maxima.html#SEC_Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="maxima_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="maxima_79.html#SEC331" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="maxima_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h3 class="subsection"> 32.2.7 Miscellaneous </h3>
<p><a name="Item_003a-multinomial"></a>
</p><dl>
<dt><u>Function:</u> <b>multinomial</b><i> (<var>r</var>, <var>part</var>)</i>
<a name="IDX1226"></a>
</dt>
<dd><p>where <var>r</var> is the weight of the partition <var>part</var>. This function
returns the associate multinomial coefficient: if the parts of
<var>part</var> are <var>i_1</var>, <var>i_2</var>, ..., <var>i_k</var>, the result is
<code><var>r</var>!/(<var>i_1</var>! <var>i_2</var>! ... <var>i_k</var>!)</code>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-permut"></a>
</p><dl>
<dt><u>Function:</u> <b>permut</b><i> (<var>L</var>)</i>
<a name="IDX1227"></a>
</dt>
<dd><p>returns the list of permutations of the list <var>L</var>.
</p>
<div class=categorybox>
<p>Categories: <a href="maxima_95.html#Category_003a-Package-sym">Package sym</a>
·
<a href="maxima_95.html#Category_003a-Lists">Lists</a>
</p>
</div>
</dd></dl>
<p><a name="Item_003a-Groups"></a>
</p><hr size="6">
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#SEC140" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="maxima_33.html#SEC150" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="maxima.html#SEC_Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="maxima_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="maxima_79.html#SEC331" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="maxima_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<p>
<font size="-1">
This document was generated by <em>Robert Dodier</em> on <em>April, 24 2010</em> using <a href="http://texi2html.cvshome.org/"><em>texi2html 1.76</em></a>.
</font>
<br>
</p>
</body>
</html>
|