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
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%W guide.tex ANUPQ standalone documentation Eamonn O'Brien
%%
%%
%W Greg Gamble made a number of modifications: updated it for LaTeX2e;
%W added a table of contents, cross-references and an examples appendix;
%W updated the bibliography and Eamonn's address, improved some of the
%W descriptions, re-arranged it slightly and updated it for changes made
%W for Versions 1.5 and 1.6. The file needs to be latex-ed three times
%W to obtain a correct `.dvi' file.
%%
\documentclass[12pt]{article}
%
%page layout - A4 paper is 210mm by 297mm.
%
\hoffset -25truemm
\oddsidemargin=30truemm %
\evensidemargin=25truemm % inner margin of 30mm, outer 25mm
\textwidth=155truemm %
\voffset -25truemm
\topmargin=22truemm % top margin of 25mm
\headheight=0truemm % no head
\headsep=0truemm % no head
\textheight=246truemm % bottom margin of 25mm, page nos. inside
%
\def\pq{the $p$-quotient implementation}
\begin{document}
\title{A guide to the ANU {\it p}-Quotient Program\\Version 1.9}
\author{Eamonn O'Brien}
\date{January 2012}
\maketitle
\tableofcontents
\pagebreak
\begin{abstract}
\addcontentsline{toc}{section}{\numberline{}Abstract}
The ANU {\it p}-Quotient Program (pq) provides access to implementations
of an algorithm to construct a power-commutator presentation (pcp) for
a {\it p}-group and of an algorithm to generate descriptions of
{\it p}-groups. It also allows access to an implementation
of an algorithm which can be used to construct a ``canonical"
pcp for a $p$-group and via this construction it allows a user
to determine whether two $p$-groups are isomorphic. The latter
can be used to generate a description of its automorphism group.
\end{abstract}
\section{Program content}\label{sec:prog-content}
The ANU {\it p}-Quotient Program (pq) is named for the $p$-quotient algorithm
that it first implemented. Now, via menus it provides access to implementations
of all the following algorithms:
\begin{enumerate}
\item
A \emph{$p$-quotient algorithm} to compute a power-commutator presentation
for a $p$-group. The algorithm implemented here is based on that
described in Newman and O'Brien (1996), Havas and Newman (1980),
and papers referred to there.
Another description of the algorithm appears in Vaughan-Lee (1990b).
A FORTRAN implementation of this algorithm was programmed by
Alford \& Havas. The basic data structures of that implementation
are retained.
The current implementation incorporates the following features:
\begin{enumerate}
\item[a.]
collection from the left (see Vaughan-Lee, 1990b);
Vaughan-Lee's implementation of this collection
algorithm is used in the program;
\item[b.]
an improved consistency algorithm (see Vaughan-Lee, 1982);
\item[c.]
new exponent law enforcement and power routines;
\item[d.]
closing of relations under the action of automorphisms;
\item[e.]
some formula evaluation.
\end{enumerate}
\item
A \emph{$p$-group generation algorithm} to generate descriptions of $p$-groups.
The algorithm implemented here is based on the algorithms described in
Newman (1977) and O'Brien (1990). A FORTRAN implementation of this
algorithm was earlier developed by Newman \& O'Brien.
\item
A \emph{standard presentation algorithm} used to compute a canonical
power-commutator presentation of a $p$-group. The algorithm
implemented here is described in O'Brien (1994).
\item
An algorithm which can be used to compute the \emph{automorphism group} of
a $p$-group. The algorithm implemented here is described in O'Brien (1995).
\end{enumerate}
The anu-pq program is written in traditional C and contains about
22000 lines of code.
It was developed in a SUN OS environment and has been ported successfully
to each of Solaris, AIX and Ultrix environments. The interface and
input/output facilities of the program are rudimentary. Interfaces
have been developed which allow parts of this program to be called
from within the computational group theory system {\sf GAP}.
This program is supplied as a package within {\sf GAP}.
The link from {\sf GAP} to pq is described in the manual
for {\sf GAP} 3.4 or in the manual found in the \texttt{doc} directory
in the case of the {\sf GAP}~4 package {\sf ANUPQ}; all of the
necessary code can be found in the \texttt{gap} directory of these
distributions.
The program is also distributed as part of Quotpic.
Version 1.9 of the anu-pq program (i.e.~the version you are currently reading
the documentation for) is configured to call {\sf GAP}, at least version
4.5, to compute stabilisers when needed.
The FORTRAN version of this program was known as the
Nilpotent Quotient Program.
\section{Installing pq}\label{sec:pq-install}
To install pq just follow the instructions for installing the {\sf ANUPQ}
package, i.e. in the directory above, do:
\begin{quote}
\verb|./configure|\\
\verb|make| \textit{TARGET} \verb|GAP=|\textit{GAPPATH}
\end{quote}
If you are running Linux you may omit \textit{TARGET}. The path
\textit{GAPPATH} should be the path of a \emph{shell script} that runs
{\sf GAP} 4 with packages {\sf AutPGrp} (at least version 1.5) and
{\sf ANUPQ} (at least version 3.1)
installed. If the {\sf ANUPQ} and/or {\sf AutPGrp} packages are not installed
in the \texttt{pkg} directory of the {\sf GAP} 4 distribution, then
the \texttt{-l} option (last line of the \emph{shell script} previously
mentioned) \emph{must} be set to be a semicolon-separated list of
paths of the main {\sf GAP} directory and the path of the \texttt{pkg}
directory containing those packages of {\sf ANUPQ} and {\sf AutPGrp}
that are missing from the {\sf GAP} 4 distribution \texttt{pkg} directory.
The anu-pq program only needs {\sf GAP} for computing stabilisers when you
answer ``No'' (\texttt{0}) to the question
``\texttt{PAG-generating sequence for automorphism group?}''.
If you neglect to add: ``\verb|GAP=|\textit{GAPPATH}'' to the \verb|make|
command, never mind; the anu-pq program first checks to see if the environment
variable \verb|ANUPQ_GAP_EXEC| is set. For \texttt{csh} doing:
\begin{quote}
\verb|setenv ANUPQ_GAP_EXEC| \textit{GAPPATH}
\end{quote}
%
is essentially equivalent to including: \verb|GAP=|\textit{GAPPATH}
in the \verb|make| command. If you use a different shell just use the
appropriate syntax for setting environment variables for your shell.
A good test for checking that you have installed pq correctly is to try
the example in Appendix~\ref{sec:pgrp-gen-eg}.
\section{Organisation}
Access to the implementations of each algorithm mentioned in
Section~\ref{sec:prog-content} is provided via menus.
The \emph{$p$-quotient algorithm} machinery is provided by the
``Basic Menu for {\it p}-Quotient Program" and
the ``Advanced {\it p}-Quotient Menu";
access to the \emph{$p$-group generation algorithm} implementation is
provided via the main ``Menu for {\it p}-Group Generation'' and the
``Advanced Menu for {\it p}-Group Generation"; and finally the
\emph{standard presentation algorithm} and \emph{automorphism group algorithm}
implementations may be accessed via the ``Standard Presentation Menu".
By default, the anu-pq program opens with the Basic Menu [for {\it p}-Quotient
Program] (see~\ref{sec:basic-menu}), which provides ``basic'' options for
the {\it p}-Quotient algorithm and via options \texttt{8} and \texttt{9}
gives (immediate) access to two further menus,
namely the Advanced {\it p}-Quotient Menu
(see~\ref{sec:advanced-pq-menu}) and the (main)
Menu for {\it p}-Group Generation (see~\ref{sec:pgrp-gen-main-menu}),
respectively. The main Menu for {\it p}-Group Generation provides
access to a further menu: the Advanced Menu for {\it p}-Group Generation
(see~\ref{sec:pgrp-gen-advanced-menu}).
If the anu-pq program is invoked with the \texttt{-i} switch (see
Section~\ref{sec:runtime}), the program opens with the
Standard Presentation Menu (see Section~\ref{sec:stnd-pres-menu})
which gives one immediate access to the
standard presentation and automorphism group machinery
and via option \texttt{7} access to the Basic Menu
and hence the other menus.
To cleanly exit the anu-pq program one must retrace one's path through the menus
(by typing the number of the option that exits each menu or \texttt{0}).
Exiting the menu that the anu-pq program opened with (either the Basic Menu
or the Standard Presentation Menu), exits the anu-pq program.
The Basic Menu, the main Menu for {\it p}-Group Generation and
the Standard Presentation Menu
are designed particularly for the new or occasional user;
levels of control by the user are low, but there is little
attendant risk of obtaining inaccurate information. The Advanced menus
are designed for the knowledgeable user with specialised needs; they
allow the user to make almost all decisions, provide little protection
and if pre-requisite information for an option to succeed
(e.g. a pc presentation for the group) is not in place, the pq will
invariably exit horribly.
Each menu is discussed in more detail later. See
Section~\ref{sec:conventions} for the conventions
that apply to these menus.
\pagebreak
\section{Runtime parameters}\label{sec:runtime}
The program may be invoked with the following runtime parameters:
\enlargethispage*{1\baselineskip}
\begin{description}
% An idea which may or may not be implemented
%\item[\texttt{-2}\hspace*{1em}]
% Gives the experimental Level 2 (non-menu) interface, which is
% being designed to supersede the usage of the other runtime parameter
% switches (except for \texttt{-v}) when pq is used with {\sf GAP} 4.
\item[\texttt{-b}\hspace*{1em}]
A ``basic" format can be used to input a group presentation.
See~\ref{sec:basic-fmt}.
\item[\texttt{-G}\hspace*{1em}]
This option is used by {\sf GAP} 4. It is essentially equivalent
to setting the switches \texttt{-g -i -k} simultaneously, except
that it uses {\sf GAP}'s iostream to direct requests to {\sf GAP}
to compute stabilisers when necessary.
\item[\texttt{-g}\hspace*{1em}]
If groups are generated using $p$-group generation, then
their presentations are written to a file
in a {\sf GAP} compatible format.
The name of the file may be selected using the \texttt{-w} option;
the default is \texttt{GAP\_library}.
\item[\texttt{-i}\hspace*{1em}]
This provides access to the Standard Presentation Menu,
which can be used to construct the standard presentation
of a given $p$-group.
\item[\texttt{-k}\hspace*{1em}]
The presentation may be defined and supplied using certain
key words. Examples of this format can be found in those
files in the \texttt{examples} directory whose names commence with
\texttt{keywords\_}. This option cannot be used with \texttt{-b}.
\item[\texttt{-s} {\it integer}]\ \\
All computations of power-commutator presentations occur
in an integer array, $y$ -- the space of this array, by
default 1000000, is set to {\em integer}. See the discussion
on strategies to minimise time and space later in this document.
\item[\texttt{-v}\hspace*{1em}]
Gives the version of the ANU {\it p}-Quotient program and exits.
\item[\texttt{-w} {\it file}]\ \\
Group descriptions are written in {\sf GAP}
format to {\em file}. \texttt{-g}
must be used in conjunction with this parameter.
\end{description}
If the program is compiled using the \texttt{RUN\_TIME} option, then
there are two additional runtime options:
\begin{description}
\item[\texttt{-c}\hspace*{1em}]
The maximum exponent-$p$ class to be considered.
\item[\texttt{-d}\hspace*{1em}]
A bound on the number of defining generators.
\end{description}
\pagebreak
\section{Conventions}\label{sec:conventions}
\subsection{Menu Conventions}
The following conventions apply for all menus.
\begin{itemize}
\item
Typing the integer identifying an option selects that option.
\item
At a number of points in running the program, you will
be asked questions or prompted for input. A non-zero integer response
signifies a positive response to the question; a response of \texttt{0} (zero)
is a negative response.
In this guide, a ``Yes" means a non-zero integer response;
a ``No" is a zero response.
\item
For each menu, the option \texttt{-1} lists the menu,
and \texttt{0} exits the menu.
To cleanly exit the anu-pq program one must retrace one's path through the menus
(by typing the number of the option that exits each menu or \texttt{0}).
Exiting the menu that the anu-pq program opened with (either the Basic Menu
or the Standard Presentation Menu), exits the anu-pq program.
\item If the program cannot open a file for any reason, it simply
reports this and if not running interactively exits.
\item Input from the first occurrence of a ``\texttt{\#}" symbol to the
end of that line is interpreted as a comment and is ignored.
\end{itemize}
Language used in the menus for the construction of the pcp
follows that used in Havas \& Newman (1980) and
Newman \& O'Brien (1996);
that in the {\it p}-group generation menus follows O'Brien (1990);
that in the standard presentation menu follows O'Brien (1994).
\subsection{Word input}\label{sec:word-input}
The performance of the program is significantly enhanced if
it can store the defining relations in their unexpanded form.
It is currently only possible to store a supplied relation in its
unexpanded form if the relation is either a power OR a commutator,
and the components of the power or commutator are only
defining generators or their inverses. Hence, it is frequently
appropriate for the user to introduce redundant generators into
the supplied presentation.
There are two formats available for supplying
generators and relations: the ``default format''
(see Section~\ref{sec:def-fmt}) and the ``basic format''
(see Section~\ref{sec:basic-fmt}). Examples of the usage of both formats
can be found in the \texttt{examples} directory.
\subsubsection{The default format for word input}\label{sec:def-fmt}
Under the default format, a user is prompted for a list of
generators, which must be supplied as a set.
The user is then prompted for a defining set of relations,
again supplied as a set.
Any combination of relations and relators may be supplied.
Note, however, you may NOT use relations of the form $u = v = w$.
Relations are separated by commas, $\wedge$ is used for powers and
conjugation, \texttt{[} and \texttt{]} are used to indicate the beginning
and end of a commutator, and \texttt{1} is the identity of the group.
The following are examples of valid input for relations:
\newcommand{\wedg}{$\mathtt{\wedge}$}
\begin{flushleft}
\quad\verb|{x |{\wedg}\verb| 5 = [x, y, y], z |{\wedg}\verb| x = 1, z * y * x * z |{\wedg}\verb| -1 = 1}|\\
\quad\verb|{a3 * [a2, a1], a4 |{\wedg}\verb| a1 * a3 |{\wedg}\verb| a2 * [a2, a1 |{\wedg}\verb| -1, a4, a1 |{\wedg}\verb| 7] = 1}|
\end{flushleft}
\subsubsection{The basic format for word input}\label{sec:basic-fmt}
The basic format is selected at start-up via the \texttt{-b} switch
(see Section~\ref{sec:runtime}).
In the pcp, the defining generators and the pcp generators are
labeled as positive integers; in each case they commence at 1.
Inverses of generators are labelled by the corresponding negative number.
The format for word input is the following:
\begin{displaymath}
\textit{Exp}\; \textit{Gen}_1\; \textit{Gen}_2 \ldots \mathtt{;}
\end{displaymath}
where ``\textit{Exp}" is the exponent;
if $\textit{Gen}_i$ is a positive integer, it represents the corresponding
generator of the group; if it is a negative integer, it represents
the inverse of that generator. Word input is terminated by a ``\texttt{;}".
Entries in the word can be separated by any positive
number of spaces.
Defining relations may only be supplied as relations -- not as relators.
Each side of the relation is supplied as a word using the above
format. Where the input is a power of a left-normed commutator, the
following simpler format may be used
\begin{displaymath}
\textit{Exp}\; \texttt{[} \textit{Gen}_1\; \textit{Gen}_2 \ldots \texttt{];}
\end{displaymath}
where \texttt{[} and \texttt{]} are used to indicate the beginning and end
of the commutator. As for the default format, entries in the commutator can
be separated by an optional number of spaces.
The identity word is indicated by supplying a word with exponent \texttt{0}
-- ``\texttt{0;}" is sufficient.
Examples of acceptable input are the following:
\begin{itemize}
\item The input ``\texttt{5 2 1 -3 4;}"
represents the word $(2 \times 1 \times 3^{-1} \times 4)^5$.
\item The input ``\texttt{3 [2 1 1 3];}" represents
the commutator power $[2,\; 1,\; 1,\; 3]^3$.
\end{itemize}
Under the basic format, the program only accepts input of
either type in a word; you may not combine them. This may affect
how you supply the defining relations for the presentation.
\subsubsection{Advanced menu word input}
Words are supplied as input to options to the Advanced menus
on a number of occasions. Usually,
these are words in the pcp generators of the group.
Under the default format, the $n$ pcp generators of the group
are, for convenience, automatically labelled as
$\mathtt{x1, x2, \ldots, x}n$.
All words in the pcp generators are then supplied as words
in $\mathtt{x1, \ldots, x}n$, using the format prescribed above
for the defining relators. Word input is terminated by a ``\texttt{;}".
A few options allow input involving the defining generators.
The $m$ defining generators of the group are also automatically
labelled as $\mathtt{x1, x2, \ldots, x}m$. All words in the defining
generators are then supplied as words in $\mathtt{x1, \ldots, x}m$,
using the format prescribed above for the defining relators.
As before, word input is terminated by a ``\texttt{;}".
If you use the basic input format, then all words are
supplied as specified in the basic format discussion.
\subsection{Input and output facilities}
Currently, facilities exist to save the computed presentation to file
and to later restore and restart the computation. The files are saved and
restored using the ``\texttt{fread}" and ``\texttt{fwrite}" facilities,
respectively.
For both save and restore, the user supplies a name for the file,
which can be any valid (UNIX or VMS) name. In the case of writing to file,
the program does not query the user before overwriting
an existing file -- it is the user's responsibility to prevent
such situations from occurring.
\section{The {\it p}-Quotient implementation}
\subsection{Basic Menu for {\it p}-Quotient Program}\label{sec:basic-menu}
The default opening menu obtained on running the program is listed below.
\begin{verbatim}
Basic Menu for p-Quotient Program
----------------------------------
1. Compute pc presentation
2. Save presentation to file
3. Restore presentation from file
4. Display presentation of group
5. Set print level
6. Calculate next class
7. Compute p-covering group
8. Advanced p-quotient menu
9. (Main) menu for p-group generation
10. Exit from p-quotient program
\end{verbatim}
We now discuss each of these options.
\begin{description}
\item[\texttt{1.\ Compute pc presentation}]\ \\
When you select this option, you will be given the following sequence
of prompts for input. [If you start the anu-pq program with the \texttt{-k}
switch (see Section~\ref{sec:runtime}), you will not be prompted;
instead you must supply input in the form:
\begin{quote}
\textit{keyword} \textit{value}
\end{quote}
where \textit{value} is the input you would otherwise have been prompted
for. The last input for this option must also be terminated by a semicolon
(\texttt{;}). Some data have default values if omitted, and there is no
restriction on the order in which the data are supplied. The keyword
\textit{keyword} needed and default value if there is one, for the
corresponding \texttt{-k} input is given in square brackets after describing
each prompt (but not after describing the prompts obtained when the pq
program is called with \texttt{-b} --- the \texttt{-k} and \texttt{-b}
switches cannot be used together). Actually, only the first 3 letters
of each keyword are significant; so, in fact, \texttt{prime}, for example,
may be abbreviated to \texttt{pri}.]
%
\begin{description}
\item[\texttt{Input group identifier:}]\ \\
you may supply any sequence of characters,
excluding spaces, as a valid identifier for the group.
[keyword: \texttt{name}, default: \texttt{G}.]
\item[\texttt{Input prime:}]\ \\
supply the prime $p$ used in computing the {\it p}-quotient.
[keyword: \texttt{prime}.]
\item[\texttt{Input maximum class:}]\ \\
supply the maximum exponent-{\it p} class of the quotient to be constructed.
[keyword: \texttt{classbound}, default: \texttt{10}.]
\item[\texttt{Input print level:}]\ \\
see option \texttt{5} below.
[keyword: \texttt{outputlevel}, default: \texttt{1}.]
\end{description}
%
If the default format is used (i.e.\ pq was not called with the \texttt{-b}
switch) then you will be prompted as follows.
%
\begin{description}
\item[\texttt{Input generating set}]\hspace*{-0.5em}\verb| (in { }):|\\
supply generating set.
[keyword: \texttt{generators}.]
\item[\texttt{Input defining set of relations}]\hspace*{-0.5em}\verb| (in { }):|\\
supply defining set of relations.
[keyword: \texttt{relators}, default: \verb|{}|.]
\end{description}
%
Otherwise, if the basic format is used (i.e.\ pq was called with the
\texttt{-b} switch; see Section~\ref{sec:runtime}), you will not be
prompted; instead you must supply input in the) then you will be given the
following prompts.
%
\begin{description}
\item[\texttt{Input number of generators:}]\ \\
supply number of defining generators.
\item[\texttt{Input number of relations:}]\ \\
supply number of defining relations.
\end{description}
%
Then (i.e.\ with or without the \texttt{-b} switch) you will be prompted
%
\enlargethispage*{1\baselineskip}
\begin{description}
\item[\texttt{Input exponent law (0 if none):}]\ \\
if the group is to satisfy a particular exponent law, supply a positive
value for that exponent.
[keyword: \texttt{exponentlaw}, default: \texttt{0}.]
\end{description}
%
In the basic format case, you will finally also be prompted to input each
relation for the group (if any).
\item[\texttt{2.\ Save presentation to file}]\ \\
prompts for file name, saves group presentation to file.
\item[\texttt{3.\ Restore presentation from file}]\ \\
prompts for file name, restores group presentation from that file if it exists.
\item[\texttt{4.\ Display presentation of group}]\ \\
displays group presentation;
detail depends on print level; if level is one, then display order
of group, otherwise display full pcp.
\item[\texttt{5.\ Set print level}]\ \\
ranges from 0, providing no output, to 3;
1, the default, provides minimal output.
\item[\texttt{6.\ Calculate next class}]\ \\
calculates pcp for quotient having one class greater than the
class of the existing group.
\item[\texttt{7.\ Compute p-covering group}]\ \\
\item[\texttt{8.\ Advanced p-quotient menu}]\ \\
provides access to the ``Advanced Menu" (intended for experts)
for user manipulation of the presentation.
\item[\texttt{9.\ (Main) menu for p-group generation}]\ \\
provides access to the main menu for {\it p}-group generation.
\item[\texttt{10.\ Exit from p-quotient program}]\ \\
causes the anu-pq program to exit, or if pq was called with the \texttt{-i}
switch (see Section~\ref{sec:runtime}) exits to the Standard Presentation
Menu. Selecting option \texttt{0} performs the same function.
\end{description}
\subsection{Advanced {\it p}-Quotient Menu}\label{sec:advanced-pq-menu}
The advanced {\it p}-quotient menu, given below, is selected by
choosing option \texttt{8} from the Basic Menu (see~\ref{sec:basic-menu}).
\begin{verbatim}
Advanced p-Quotient Menu
-------------------------
1. Do individual collection
2. Solve the equation ax = b for x
3. Calculate commutator
4. Display group presentation
5. Set print level
6. Set up tables for next class
7. Insert tails for some or all classes
8. Check consistency for some or all classes
9. Collect defining relations
10. Carry out exponent checks
11. Eliminate redundant generators
12. Revert to presentation for previous class
13. Set maximal occurrences for pcp generators
14. Set metabelian flag
15. Carry out an individual consistency calculation
16. Carry out compaction
17. Carry out echelonisation
18. Supply and/or extend automorphisms
19. Close relations under automorphism actions
20. Print structure of a range of pcp generators
21. Display automorphism actions on generators
23. Collect word in defining generators
24. Compute commutator of defining generators
25. Write presentation to file in GAP format
26. Write compact description of group to file
27. Evaluate certain formulae
28. Evaluate action specified on defining generators
29. Evaluate Engel (p - 1)-identity
30. Process contents of relation file
31. Exit to basic menu
\end{verbatim}
\section{The {\it p}-Group Generation implementation}
\subsection{Required input}
The required input is the {\it p}-covering group of the starting group,
together with a description of the automorphism group of the {\it p}-covering
group.
Before you commence to construct descendants,
you should construct or restore its {\it p}-covering group,
using the appropriate options of the Basic Menu (see~\ref{sec:basic-menu}).
It is the user's responsibility to do this -- no check is performed.
\subsection{The automorphism group description}\label{sec:autgp-desc}
You must also supply a description of its automorphism group,
which is done by selecting option \texttt{1} of either
of the menus for {\it p}-group generation
(see~\ref{sec:pgrp-gen-main-menu} or~\ref{sec:pgrp-gen-advanced-menu}).
This description is the action of each automorphism on each of the
pcp generators of the Frattini quotient of the group.
The action is described by a vector of exponents -- the length
of the vector is the number of pcp generators of the group,
its entries are the powers of each of these generators
which occur in the image.
Where the automorphism group is soluble, a PAG-generating system should
be supplied which works up a composition series for the group via
cyclic factors of prime order. In such cases, the calculations may be
carried out completely within pq. If the soluble
group machinery is selected by the user, but a PAG-generating system is
not supplied, then the program will give wrong information.
If the automorphism group is insoluble or a PAG-generating sequence
is not supplied, a call is made by the program to one {\sf GAP},
which computes stabilisers of particular orbit representatives.
If the automorphism group of any of the intermediate (reduced)
{\it p}-covering groups is found to be soluble, a PAG-generating sequence
is computed by {\sf GAP} and handed back to pq. The soluble machinery
is now automatically invoked for the rest of the computation.
\subsection{Saving group descriptions}
The constructed groups of a particular class, $c$, are saved to a file,
whose name is obtained by concatenating:
\textit{starting-group-identifier} and $c$, where
\textit{starting-group-identifier} is the group identifier defined at option
\texttt{1} of the Basic Menu (see Section~\ref{sec:basic-menu})
e.g.~if you use the \texttt{-k} switch (see Section~\ref{sec:runtime})
when you started the anu-pq program and settled for the default group identifier
\texttt{G} then for class 2, the groups will be saved to a file with name:
\texttt{G\_class2}. As before, the
program does not query the user before overwriting an existing file.
\subsection{The (Main) Menu for {\it p}-Group Generation}
\label{sec:pgrp-gen-main-menu}
The main Menu for {\it p}-Group Generation, given below, is selected by
choosing option \texttt{9} from the Basic Menu (see~\ref{sec:basic-menu}).
\pagebreak
\begin{verbatim}
Menu for p-Group Generation
-----------------------------
1. Read automorphism information for starting group
2. Extend and display automorphisms
3. Specify input file and group number
4. List group presentation
5. Construct descendants
6. Advanced p-group generation menu
7. Exit to basic menu
\end{verbatim}
We now describe the options given by this menu.
\begin{description}
\item[\texttt{1.\ Read automorphism information for starting group}]\ \\
first prompts for the following:
\begin{description}
\item[\texttt{Input the number of automorphisms:}]\ \\
You must provide the number of automorphisms generating the automorphism
group of the starting group. Then you will be prompted for the action
of each automorphism on the pcp generators of the Frattini quotient of the
group, after which you will be prompted:
\item[\texttt{Input number of soluble generators for automorphism group:}]\ \\
If you enter a positive integer $n$ you will then be prompted for the
relative order of each of those $n$ automorphisms.
\end{description}
%
\item[\texttt{2.\ Extend and display automorphisms}]\ \\
compute the extensions of these automorphisms to act on the pcp generators
of the {\it p}-covering group and display the results.
\item[\texttt{3.\ Specify input file and group number}]\ \\
prompts for the input file name and the group number.
\item[\texttt{4.\ List group presentation}]\ \\
display at output level 3 the presentation for the group.
\item[\texttt{5.\ Construct descendants}]\ \\
we discuss this option in detail in Section~\ref{sec:constr-desc}.
\item[\texttt{6.\ Advanced p-group generation menu}]\ \\
provides access to the ``Advanced Menu"
for user-controlled construction and manipulation.
\item[\texttt{7.\ Exit to basic menu}]\ \\
returns the user to the Basic Menu (see~\ref{sec:basic-menu}).
Selecting option \texttt{0} performs the same function.
\end{description}
\subsection{Construct descendants option}\label{sec:constr-desc}
Here we discuss option \texttt{5} of the (main) {\it p}-group generation
menu (see~\ref{sec:pgrp-gen-main-menu}).
If you select this option you receive a number of questions or prompts
for input. Those prompts/questions are as follows.
\begin{description}
\item[\texttt{Input class bound on descendants:}]\ \\
you must supply a positive integer greater than the class
of the starting group, and which is an upper bound
on the class of the descendants constructed.
\item[\texttt{Construct all descendants?}]\ \\
If you enter a ``Yes" response (by entering a non-zero integer)
you are asked:
\begin{description}
\item[\texttt{Set an order bound for descendants?}]\ \\
If you answer ``Yes" you are further prompted (if you answer
``No" (i.e.\ \texttt{0}) you are not so prompted):
\begin{description}
\item[\texttt{Input order bound on descendants:}]\ \\
and the integer order bound you input will apply in addition to
the class bound selected.
\end{description}
\end{description}
If you responded ``No" to the ``\texttt{Construct all descendants?}'' query
and the class increase is one you are prompted:
\begin{description}
\item[\texttt{Input step size:}]\ \\
and a positive integer is expected.
\end{description}
If you responded ``No" to the ``\texttt{Construct all descendants?}'' query
and the class increase is greater than one you are prompted as follows:
\begin{description}
\item[\texttt{Constant step size?}]\ \\
If you answer ``Yes" you are prompted:
\begin{description}
\item[\texttt{Input step size:}]\ \\
and a positive integer is expected.
\end{description}
If you answer ``No" to ``\texttt{Constant step size?}'' you are prompted:
\begin{description}
\item[\texttt{Input $n$ step sizes:}]\ \\
for some integer $n$, and you must enter $n$ positive
integers separated by spaces.
\end{description}
\end{description}
\item[\texttt{PAG-generating sequence for automorphism group?}]\ \\
This determines the algorithm used in constructing the orbits
and stabilisers of representative allowable subgroups
(see~\ref{sec:min-time-space}).
Whether you answer ``Yes" or ``No" you are then asked:
\item[\texttt{Default algorithm?}]\ \\
A ``Yes" here constructs immediate descendants using the smallest possible
characteristic initial segment subgroups in the {\it p}-multiplicator.
This minimises the degree of the permutation group constructed.
If you answer ``No", then you will be prompted/asked:
\begin{description}
\item[\texttt{Rank of the initial segment subgroup?}]\ \\
If you want to proceed as in the default, respond ``\texttt{0}";
otherwise any positive value is accepted. If the value is
larger than the rank of the {\it p}-multiplicator, the program
takes this upper bound as the selected value. The initial segment
subgroup determined by this response is characteristically
closed by the program.
If your answer to
``\texttt{PAG-generating sequence for automorphism group?}"
was a ``Yes", then
you will receive the following further question.
\begin{description}
\item[\texttt{Space efficient computation?}]\ \\
By default, all of the permutations constructed are stored.
If you answer ``Yes", at any one time only one permutation is
stored, consequently reducing the amount of space significantly.
However, the time taken in computing the automorphism group
of each descendant is also significantly increased.
\end{description}
Then you will prompted/asked the following:
\begin{description}
\item[\texttt{Completely process terminal descendants?}]\ \\
By default, automorphism groups are computed for and descriptions of
capable groups only are saved to file.
If you wish to compute automorphism groups and save descriptions of
all descendants to file, then answer ``Yes". In this case,
for both terminal and capable groups, the automorphism group is
saved to file; if capable, the pcp of the {\it p}-covering group
is saved; if terminal, the pcp for the group.
\item[\texttt{Input exponent law (0 if none):}]\ \\
If you wish to construct only those immediate descendants
which satisfy a particular exponent law, supply that exponent; if
you do not wish to enforce an exponent law, supply \texttt{0}.
\item[\texttt{Enforce metabelian law?}]\ \\
If you answer ``Yes", you seek to ensure that all of the immediate
descendants constructed have the following property -- if any one of them
is used as a starting group to a later iteration, only the metabelian
immediate descendants (if any) of this group are constructed.
For this requirement to be enforceable, the starting group for
this iteration must also have that property. To ensure that the
starting group has that property, construct its $p$-covering group
after having first set the metabelian flag via option \texttt{14} of
the Advanced $p$-Quotient Menu (see~\ref{sec:advanced-pq-menu}).
\end{description}
\end{description}
\item[\texttt{Do you want default output?}]\ \\
If you answer ``Yes", minimal output is displayed for each group:
its identifier, the ranks of its {\it p}-multiplicator and nucleus,
the number of its immediate descendants of each order, and, if there are any,
the number of its capable immediate descendants.
For many applications, the default output obtained by ``Yes" is sufficient.
If not, then by answering ``No" you are asked whether you want the
default output for each of the following categories:
permutation group, orbits, group descriptions, automorphism group
descriptions, or if you want an algorithm trace. Answering ``No" to
any of these questions (except for the last)
leads to further questions, each requiring a ``Yes"/``No" answer,
about what additional information you desire
(or don't want) for the category. The following are the questions that
result from a ``No" response to ``\texttt{Do you want default output?}":
\enlargethispage*{1\baselineskip}
\begin{description}
\item[\texttt{Do you want default permutation group output?}]\ \\
A ``No" leads to the further questions:
\begin{description}
\item[\texttt{Print degree of permutation group?}]
\item[\texttt{Print extended automorphisms?}]
\item[\texttt{Print automorphism matrices?}]
\item[\texttt{Print permutations?}]
\end{description}
\item[\texttt{Do you want default orbit output?}]\ \\
A ``No" leads to the further questions:
\begin{description}
\item[\texttt{Summary of orbit information?}]
\item[\texttt{Complete listing of orbits?}]
\end{description}
\item[\texttt{Do you want default group output?}]\ \\
A ``No" leads to the further questions:
\begin{description}
\item[\texttt{Print standard matrix of allowable subgroup?}]
\item[\texttt{Presentation of reduced p-covering groups?}]
\item[\texttt{Presentation of immediate descendants?}]
\item[\texttt{Print nuclear rank of descendants?}]
\item[\texttt{Print p-multiplicator rank of descendants?}]
\end{description}
\item[\texttt{Do you want default automorphism group output?}]\ \\
A ``No" leads to the further questions:
\begin{description}
\item[\texttt{Print commutator matrix?}]
\item[\texttt{Automorphism group description of descendants?}]
\item[\texttt{Automorphism group order of descendants?}]
\end{description}
\item[\texttt{Do you want algorithm trace output?}]\ \\
This last question is designed to permit
one to trace the intermediate stages of the algorithm.
\end{description}
\end{description}
After the above dialogue, the pq binary will commence constructing
descendants. At the commencement of the application, each starting group
is checked to determine whether it meets the selected step size
order, and class criteria. If it does not, a message is displayed
stating that this starting group is invalid.
%\newpage
\enlargethispage*{2\baselineskip}
\subsection{Advanced Menu for {\it p}-Group Generation}
\label{sec:pgrp-gen-advanced-menu}
\begin{verbatim}
Advanced Menu for p-Group Generation
-------------------------------------
1. Read automorphism information for starting group
2. Extend and display automorphisms
3. Specify input file and group number
4. List group presentation
5. Carry out intermediate stage calculation
6. Compute definition sets & find degree
7. Construct permutations of subgroups under automorphisms
8. Compute and list orbit information
9. Process all orbit representatives
10. Process individual orbit representative
11. Compute label for standard matrix of subgroup
12. Compute standard matrix for subgroup from label
13. Find image of allowable subgroup under automorphism
14. Find rank of closure of initial segment subgroup
15. List representative and orbit for supplied label
16. Write compact descriptions of generated groups to file
17. Find automorphism classes of elements of vector space
18. Exit to main p-group generation menu
\end{verbatim}
\subsection{Strategies to minimise time and space}\label{sec:min-time-space}
Where a PAG-generating sequence is supplied (i.e.\ the question
``\texttt{PAG-generating sequence for automorphism group?}" is answered with
a ``Yes"; see~\ref{sec:constr-desc}), the minimum space
requirement is achieved by supplying ``\texttt{0}" and ``Yes",
respectively, to the questions:
``\texttt{Rank of the initial segment subgroup?}" and
``\texttt{Space efficient computation?}".
This space efficiency is achieved at the cost of some additional
time in computing the stabilisers of orbit representatives.
However, if you simply wish to compute orbits, it is the
best overall strategy, both from space and time considerations.
The ``efficient space" option is currently available only
where a PAG-generating sequence is supplied.
In general, the most efficient time performance is obtained by
taking the default algorithm (answering ``Yes" to
``\texttt{Default algorithm?}; see~\ref{sec:constr-desc}). This also
gives significant space saving over most other strategies.
As mentioned earlier, the workspace size used in computing pcps --
that is, the size of the array $y$ -- may be passed as a command
line argument to the program at invocation. Much of the storage used in the
implementation of {\it p}-group generation is separate from that
allocated for $y$. Hence, if the program is to be used to
generate group descriptions, it is probably sensible
to invoke the program with a workspace size of no more than
$100\;000$ rather than its default value, \texttt{PQSPACE}
(which is defined in the header file, \texttt{constants.h}).
See also the discussion on this point in the \texttt{README} file.
\section{The Standard Presentation and\\ Automorphism Group implementation}
\label{sec:stnd-pres-menu}
The Standard Presentation Menu allows a user
to input a finite presentation for a group, to construct
a ``standard" presentation for a specified $p$-quotient of the group,
and also to construct a description of the automorphism group of the $p$-group.
To access this menu, you need to run the anu-pq program
with the \texttt{-i} run-time parameter switch (see~\ref{sec:runtime}).
The appropriate way to view the standard presentation algorithm is the
following.
The pcp constructed by supplying a finite presentation to
the $p$-quotient algorithm depends on the supplied presentation.
The standard presentation of a $p$-group obtained using
the standard presentation algorithm is independent of the
supplied presentation. Hence it allows us to determine whether
two $p$-groups are isomorphic.
In its most general form, the ``standard" presentation
of a $p$-group is obtained by constructing a description of this
group using the $p$-group generation algorithm.
The standard presentation of a class 1 $p$-quotient
is identical to that obtained from the $p$-quotient.
A user can choose to take the presentation returned
from the $p$-quotient implementation to class $k$
as an acceptable ``standard" presentation up to that
class and then proceed to standardise the presentation
from class $k + 1$ to some desired later class.
This is particularly relevant if the user is seeking
to verify that two groups are isomorphic.
It may turn out that the two pcps
constructed by \pq\ are identical up to class $k$.
Since the standardisation procedure is significantly more
expensive than a call to \pq, it makes sense in such
situations to begin to standardise only from class $k + 1$ onwards.
However, the user must supply as input a description
of the automorphism group of the class $k$ $p$-quotient
-- which may be more difficult to obtain for larger $k$.
In checking for isomorphism, it also makes sense
to standardise each of the presentations,
class by class. The standard presentations
at the end of each class should be compared --
if they are distinct, then the groups are non-isomorphic.
In order to facilitate this, the program writes a
file containing necessary details of the standard presentation and the
automorphism group of the group up to the end of the specified class
-- this file can be used as input to the program later to
continue the standardisation procedure.
A generating set for a supplement to the inner automorphisms of the
group is stored there; each generator is described by an $n \times n$
matrix whose exponents represent the image of each of the $n$
pcp generators of the standard presentation.
\begin{verbatim}
Standard Presentation Menu
-----------------------------
1. Supply start information
2. Compute standard presentation to supplied class
3. Save presentation to file
4. Display presentation
5. Set print level for construction
6. Compare two presentations stored in files
7. Call basic menu for p-Quotient program
8. Compute the isomorphism
9. Exit from program
\end{verbatim}
We now describe each of these options.
\begin{description}
\item[\texttt{1.\ Supply start information}]\ \\
you must supply a finite presentation
for the $p$-group; the queries are identical to that used in
option \texttt{1} of the Basic Menu [for $p$-Quotient Program]
(see~\ref{sec:basic-menu}). All of the valid formats for
supplying a presentation can be accessed,
using the \texttt{-b} or \texttt{-k} run-time switches
(see Section~\ref{sec:runtime}).
If the class supplied is $c$, then standardisation
(selected under option \texttt{2}) begins at class $c + 1$ only.
In general the supplied value for the class will be one --
however, see the preceding discussion.
A pcp for the class $c$ $p$-quotient of the group
is now computed using the \pq.
\item[\texttt{2.\ Compute standard presentation to supplied class}]\ \\
If, when selecting this option, you haven't previously selected
option \texttt{1} to supply a finite presentation, then
you will be prompted:
%
\begin{description}
\item[\texttt{Enter input file name for group information:}]\ \\
The assumption is that such a file containing the presentation and
automorphism information for the $p$-group was generated from a previous
run of the Standard Presentation algorithm. If you don't supply a
valid filename the anu-pq program bails out of option \texttt{2}.
\end{description}
%
Whether or not you have previously selected option \texttt{1},
you will then be prompted:
\begin{description}
\item[\texttt{Enter output file name for group information:}]\ \\
The file whose name you choose can be used as input
later to continue the construction of the standard pcp.
Then you will be asked:
\item[\texttt{Standardise presentation to what class?}]\ \\
The start class is one greater than the class of the $p$-quotient
selected using option \texttt{1} or that stored on the input file.
Here you should specify the end class for the standardisation procedure.
\end{description}
If you selected option \texttt{1} to supply a finite presentation,
you will now be prompted for automorphism information --
in exactly the same manner as under option \texttt{1} of
the main Menu for $p$-Group Generation (see~\ref{sec:pgrp-gen-main-menu}),
and then also asked whether the supplied description
is a PAG-generating sequence or not:
\begin{description}
\item[\texttt{PAG-generating sequence for automorphism group?}]
\end{description}
\item[\texttt{3.\ Save presentation to file}]\ \\
\item[\texttt{4.\ Display presentation}]\ \\
print out the standard presentation to the current class.
\item[\texttt{5.\ Set print level for construction}]\ \\
ranges from 0 to 2.
At print level 0, only timing information is printed.
At print level 1, the standard presentation at the end
of each class is also printed.
At print level 2, full detail of the construction is
reported. The default print level is 1.
\item[\texttt{6.\ Compare two presentations stored in files}]\ \\
supply the names of two data files containing these
presentations; a check will be run to determine if the
presentations are identical.
This comparison facility may be applied to any two
pcps -- not just standard ones.
\item[\texttt{7.\ Call basic menu for p-Quotient program}]\ \\
provides access to the Basic Menu for $p$-Quotient program
(see~\ref{sec:basic-menu}).
\item[\texttt{8.\ Compute the isomorphism}]\ \\
computes the mapping from the user-supplied generators
to the generators for the standard presentation.
\item[\texttt{9.\ Exit from program}]\ \\
causes the anu-pq program to exit.
Selecting option \texttt{0} performs the same function.
\end{description}
Various files, all having prefixes ``\texttt{ISOM\_}", are first created and
then deleted by pq while executing the standard presentation algorithm.
\section{Warning}
Pay attention to the results, and where possible confirm
their correctness with other established sources.
\pagebreak
\appendix
\section{Examples}
\subsection{A Basic Menu example}
The following example exercises options within the Basic Menu
(see~\ref{sec:basic-menu}). When the anu-pq program is used without any switches
(see Section~\ref{sec:runtime}), it opens with the Basic Menu.
\begin{verbatim}
Basic Menu for p-Quotient Program
----------------------------------
1. Compute pc presentation
2. Save presentation to file
3. Restore presentation from file
4. Display presentation of group
5. Set print level
6. Calculate next class
7. Compute p-covering group
8. Advanced p-quotient menu
9. (Main) menu for p-group generation
10. Exit from p-quotient program
Select option: 1 #we want to enter a pc presentation
Input group identifier: 2gp #something meaningful
Input prime: 2 #it's a 2-group
Input maximum class: 6
Input print level (0-3): 1 #minimal output
Input generating set (in { }): {a, b}
Input defining set of relations (in { }): { [b, a, a], (a * b * a)^4 }
Input exponent law (0 if none): 0
Lower exponent-2 central series for 2gp
Group: 2gp to lower exponent-2 central class 1 has order 2^2
Group: 2gp to lower exponent-2 central class 2 has order 2^5
Group: 2gp to lower exponent-2 central class 3 has order 2^8
Group: 2gp to lower exponent-2 central class 4 has order 2^11
Group: 2gp to lower exponent-2 central class 5 has order 2^15
Group: 2gp to lower exponent-2 central class 6 has order 2^19
Computation of presentation took 0.02 seconds
Select option: 2 #save option
Enter output file name: 2GP #file name
Presentation written to file
Select option: 0 #exit
Exiting from ANU p-Quotient Program
Total user time in seconds is 0.02
\end{verbatim}
This is essentially example \texttt{2gp} in the \texttt{examples} directory
(except some of our \texttt{\#}\textit{comment}s are different).
If the binary for the anu-pq program is \texttt{pq}, then
\begin{quote}
\verb|pq < 2gp|
\end{quote}
executes the example non-interactively, with something similar to the above
output to the screen, minus the menu. Note that
the menus from the anu-pq program are only displayed when it is used interactively.
A script file for the anu-pq program (like \texttt{2gp}) should contain the
responses that the anu-pq program will expect, in the correct sequence.
\subsection{A {\it p}-Group Generation example}\label{sec:pgrp-gen-eg}
The following example is essentially \verb|pga_3gp| from the
\texttt{examples} directory, except again we have modified the comments,
and we have also answered ``No'' to the ``PAG-generating sequence'' question,
so that {\sf GAP} is called to compute stabilisers. If the pq binary is
unable to find {\sf GAP} or finds {\sf GAP 3} instead of {\sf GAP} 4 the
program will die horribly at this point. (See Section~\ref{sec:pq-install}
if you run into problemsm, at this point.)
For this example (which generates all groups with lower exponent-3 series of
shape 2-2-3-1), the anu-pq program is invoked without any of the switches
of Section~\ref{sec:runtime}.
\begin{verbatim}
[..Basic Menu omitted here..]
Select option: 1 #set up group presentation
Input group identifier: c3c3
Input prime: 3
Input maximum class: 1
Input print level (0-3): 1
Input generating set (in { }): {a, b}
Input defining set of relations (in { }): {}
Input exponent law (0 if none): 0
Lower exponent-3 central series for c3c3
Group: c3c3 to lower exponent-3 central class 1 has order 3^2
Computation of presentation took 0.00 seconds
Select option: 7 #compute its 3-covering group
Group: c3c3 to lower exponent-3 central class 2 has order 3^5
Computation of 3-covering group took 0.00 seconds
Select option: 9 #enter p-group generation
Menu for p-Group Generation
-----------------------------
1. Read automorphism information for starting group
2. Extend and display automorphisms
3. Specify input file and group number
4. List group presentation
5. Construct descendants
6. Advanced p-group generation menu
7. Exit to basic menu
Select option: 1 #to supply automorphisms
Input the number of automorphisms: 5
Now enter the data for automorphism 1
Input 2 exponents for image of pcp generator 1: 2 0
Input 2 exponents for image of pcp generator 2: 0 2
Now enter the data for automorphism 2
Input 2 exponents for image of pcp generator 1: 0 2
Input 2 exponents for image of pcp generator 2: 1 0
Now enter the data for automorphism 3
Input 2 exponents for image of pcp generator 1: 1 2
Input 2 exponents for image of pcp generator 2: 2 2
Now enter the data for automorphism 4
Input 2 exponents for image of pcp generator 1: 1 0
Input 2 exponents for image of pcp generator 2: 2 1
Now enter the data for automorphism 5
Input 2 exponents for image of pcp generator 1: 2 0
Input 2 exponents for image of pcp generator 2: 0 1
Input number of soluble generators for automorphism group: 0
Select option: 5 #to construct descendants
Input class bound on descendants: 4
Construct all descendants? 0 #i.e. ``No''
Constant step size? 0 #i.e. ``No''
Input 3 step sizes: 2 3 1
PAG-generating sequence for automorphism group? 0 #i.e. ``No''
Do you want default algorithm? 1 #i.e. ``Yes''
Do you want default output? 1 #i.e. ``Yes''
**************************************************
Starting group: c3c3
Order: 3^2
Nuclear rank: 3
3-multiplicator rank: 3
Now calling GAP to compute stabiliser...
true
#I Order of GL subgroup is 48
#I No. of soluble autos is 0
#I dim U = 1 dim N = 3 dim M = 3
#I nice stabilizer with perm rep
Now calling GAP to compute stabiliser...
true
#I Order of GL subgroup is 48
#I No. of soluble autos is 0
#I dim U = 1 dim N = 3 dim M = 3
#I nice stabilizer with perm rep
# of immediate descendants of order 3^4 is 3
# of capable immediate descendants is 3
**************************************************
3 capable groups saved on file c3c3_class2
**************************************************
Starting group: c3c3 #1;2
Order: 3^4
Nuclear rank: 2
3-multiplicator rank: 3
Group c3c3 #1;2 is an invalid starting group
**************************************************
Starting group: c3c3 #2;2
Order: 3^4
Nuclear rank: 3
3-multiplicator rank: 4
# of immediate descendants of order 3^7 is 4
# of capable immediate descendants is 4
**************************************************
Starting group: c3c3 #3;2
Order: 3^4
Nuclear rank: 2
3-multiplicator rank: 3
Group c3c3 #3;2 is an invalid starting group
**************************************************
4 capable groups saved on file c3c3_class3
**************************************************
Starting group: c3c3 #2;2 #1;3
Order: 3^7
Nuclear rank: 4
3-multiplicator rank: 5
# of immediate descendants of order 3^8 is 16
# of capable immediate descendants is 11
**************************************************
Starting group: c3c3 #2;2 #2;3
Order: 3^7
Nuclear rank: 3
3-multiplicator rank: 4
# of immediate descendants of order 3^8 is 13
# of capable immediate descendants is 9
**************************************************
Starting group: c3c3 #2;2 #3;3
Order: 3^7
Nuclear rank: 3
3-multiplicator rank: 4
# of immediate descendants of order 3^8 is 13
# of capable immediate descendants is 9
**************************************************
Starting group: c3c3 #2;2 #4;3
Order: 3^7
Nuclear rank: 3
3-multiplicator rank: 4
# of immediate descendants of order 3^8 is 7
# of capable immediate descendants is 5
**************************************************
34 capable groups saved on file c3c3_class4
Construction of descendants took 69.95 seconds
Select option: 0 #exit to basic menu (same as option 7)
Exiting from p-group generation
Select option: 0 #exit program (same as option 9)
Exiting from ANU p-Quotient Program
Total user time in seconds is 69.95
\end{verbatim}
\subsection{A Standard Presentation Menu example}
The following example is similar to what is provided by the file \verb|2gp|
in the \texttt{isom} directory, except we have added comments, we
have not used the \texttt{-k} (keywords) runtime switch and to reduce the
output we have only computed the standard presentation to class 3 (instead
of class 10, as in the \verb|2gp| example).
For this example, the anu-pq program is invoked with the \texttt{-i} runtime
switch (see Section~\ref{sec:runtime}), which gives us access to the
Standard Presentation Menu (see Section~\ref{sec:stnd-pres-menu}).
\begin{verbatim}
Standard Presentation Menu
-----------------------------
1. Supply start information
2. Compute standard presentation to supplied class
3. Save presentation to file
4. Display presentation
5. Set print level for construction
6. Compare two presentations stored in files
7. Call p-Quotient menu
8. Compute the isomorphism
9. Exit from program
Select option: 1 #input group info.
Input group identifier: G
Input prime: 2
Input maximum class: 1
Input print level (0-3): 1 #just minimal output
Input generating set (in { }): {a, b}
Input defining set of relations (in { }): {a^4, b^4 = [b, a, a]}
Input exponent law (0 if none): 0
Lower exponent-2 central series for G
Group: G to lower exponent-2 central class 1 has order 2^2
Class 1 2-quotient and its 2-covering group computed in 0.02 seconds
Select option: 2 #for standard presentation
Enter output file name for group information: 2gp-st
Standardise presentation to what class? 3
Input the number of automorphisms: 2
Now enter the data for automorphism 1
Input 2 exponents for image of pcp generator 1: 0 1
Input 2 exponents for image of pcp generator 2: 1 1
Now enter the data for automorphism 2
Input 2 exponents for image of pcp generator 1: 0 1
Input 2 exponents for image of pcp generator 2: 1 0
PAG-generating sequence for automorphism group? 1 #i.e. ``Yes''
Starting group has order 2^2; its automorphism group order is 6
The standard presentation for the class 2 2-quotient is
Group: G #1;3 to lower exponent-2 central class 2 has order 2^5
Non-trivial powers:
.1^2 = .4
.2^2 = .5
Non-trivial commutators:
[ .2, .1 ] = .3
Its automorphism group has order 384
Computing standard presentation for class 2 took 0.08 seconds
The standard presentation for the class 3 2-quotient is
Group: G #1;3 to lower exponent-2 central class 3 has order 2^8
Non-trivial powers:
.1^2 = .4
.2^2 = .5
.3^2 = .6 .8
.5^2 = .6
Non-trivial commutators:
[ .2, .1 ] = .3
[ .3, .1 ] = .6
[ .3, .2 ] = .7
[ .4, .2 ] = .8
[ .5, .1 ] = .6 .7 .8
Its automorphism group has order 4096
Computing standard presentation for class 3 took 0.12 seconds
Select option: 0 #exit (option 9 does this also)
\end{verbatim}
\subsection{A keywords example}
To use keywords you must use the \texttt{-k} runtime switch
(see Section~\ref{sec:runtime}). For this example we are again
using the Standard Presentation Menu; so we also use the \texttt{-i} runtime
switch. The example is \verb|2gp.com| from the \texttt{isom} directory.
If the binary for the anu-pq program is \texttt{pq}, then
\begin{quote}
\verb|pq -i -k < 2gp.com|
\end{quote}
in the \texttt{isom} directory yields something like the following output.
(The keywords are used in option \texttt{1}; note the ``\texttt{;}''
indicating all remaining data for that option should take default values.)
\begin{verbatim}
[..Standard Presentation Menu omitted here..]
Select option: 1 #set up start information
prime 2 #keyword `prime'
class 2 #keyword `class'
generators {a, b} #keyword `generators'
relations {a^4, b^2 = [b, a, b]}; #keyword `relations' (NB: closing `;')
Lower exponent-2 central series for G
Group: G to lower exponent-2 central class 1 has order 2^2
Group: G to lower exponent-2 central class 2 has order 2^4
Class 2 2-quotient and its 2-covering group computed in 0.00 seconds
Select option: 2 #standardise presentation
Enter output file name for group information: Standard
Standardise presentation to what class? 10
Input the number of automorphisms: 3
Now enter the data for automorphism 1
Input 4 exponents for image of pcp generator 1: 1 0 0 1
Input 4 exponents for image of pcp generator 2: 0 1 0 0
Now enter the data for automorphism 2
Input 4 exponents for image of pcp generator 1: 1 0 0 0
Input 4 exponents for image of pcp generator 2: 0 1 0 1
Now enter the data for automorphism 3
Input 4 exponents for image of pcp generator 1: 1 1 1 0
Input 4 exponents for image of pcp generator 2: 0 1 1 1
PAG-generating sequence for automorphism group? 1
Starting group has order 2^4; its automorphism group order is at most 96
The standard presentation for the class 3 2-quotient is
Group: G #1;2 to lower exponent-2 central class 3 has order 2^6
Non-trivial powers:
.1^2 = .4
.2^2 = .5
.3^2 = .6
Non-trivial commutators:
[ .2, .1 ] = .3
[ .3, .1 ] = .5
[ .3, .2 ] = .6
[ .4, .2 ] = .5 .6
Its automorphism group has order at most 384
Computing standard presentation for class 3 took 0.05 seconds
The standard presentation for the class 4 2-quotient is
Group: G #1;1 to lower exponent-2 central class 4 has order 2^7
[..265 lines omitted here..]
The standard presentation for the class 10 2-quotient is
Group: G #1;4 to lower exponent-2 central class 10 has order 2^24
[..93 lines omitted here..]
Its automorphism group has order at most 25769803776
Computing standard presentation for class 10 took 0.27 seconds
Select option: 4 #display standard presentation for class 10 2-quotient
Group: G #1;4 to lower exponent-2 central class 10 has order 2^24
Non-trivial powers:
.1^2 = .4
.2^2 = .5 .11 .13 .17 .24
.3^2 = .6 .7 .10 .11 .12 .13 .14 .17 .20 .21 .22
.5^2 = .8 .11 .19 .20 .21
.6^2 = .10 .14 .16 .18 .22 .23 .24
.7^2 = .10 .12 .21 .22 .24
.8^2 = .12 .15
.9^2 = .12 .17 .20 .22 .23
.10^2 = .15 .18
.11^2 = .15 .20 .24
.12^2 = .18 .21
.13^2 = .18 .24
.14^2 = .18 .23
.15^2 = .21
.17^2 = .21
Non-trivial commutators:
[ .2, .1 ] = .3
[ .3, .1 ] = .5
[ .3, .2 ] = .6
[..71 lines omitted here..]
[ .20, .2 ] = .23
Select option: 0 #exit
Exiting from ANU p-Quotient Program
Total user time in seconds is 1.13
\end{verbatim}
\subsection{A basic format Advanced {\it p}-Group Generation example}
With the following example we demonstrate both the use of the \texttt{-b}
runtime switch (see Section~\ref{sec:runtime}) and we exercise an
Advanced menu. To do something equivalent to what we give below,
(assuming the pq binary is \texttt{pq}) do:
\begin{quote}
\verb|pq -b < pga_interactive|
\end{quote}
in the \texttt{examples} directory.
\begin{verbatim}
[..Basic Menu omitted here..]
Select option: 1 #set up group presentation
Input group identifier: Nott #our group will be the Nottingham group
Input prime: 5
Input maximum class: 3
Input print level (0-3): 1 #minimal output
Input number of generators: 2 #this is the prompt we get with -b
Input number of relations: 3 #(ditto)
Input exponent law (0 if none): 0
5 1; #this is the ``basic format'' (-b switch)
The input word is 5 1
Input right-hand side of relation:
0;
The input word is 0
Input left-hand side of relation:
5 2;
The input word is 5 2
Input right-hand side of relation:
0;
The input word is 0
Input left-hand side of relation:
1 [2 1 2];
The input word is 1 [ 2 1 2 ]
Input right-hand side of relation:
0; #the final ``basic format'' input needed
The input word is 0
Lower exponent-5 central series for Nott
Group: Nott to lower exponent-5 central class 1 has order 5^2
Group: Nott to lower exponent-5 central class 2 has order 5^3
Group: Nott to lower exponent-5 central class 3 has order 5^4
Computation of presentation took 0.00 seconds
Select option: 7 #compute 5-covering group
Group: Nott to lower exponent-5 central class 4 has order 5^8
Computation of 5-covering group took 0.00 seconds
Select option: 2 #save presentation
Enter output file name: Nott
Presentation written to file
Select option: 9 #to (Main) p-Group Generation Menu
Menu for p-Group Generation
-----------------------------
1. Read automorphism information for starting group
2. Extend and display automorphisms
3. Specify input file and group number
4. List group presentation
5. Construct descendants
6. Advanced p-group generation menu
7. Exit to basic menu
Select option: 1 #define aut. group
Input the number of automorphisms: 6
Now enter the data for automorphism 1
Input 4 exponents for image of pcp generator 1: 1 0 0 0
Input 4 exponents for image of pcp generator 2: 0 1 0 1
Now enter the data for automorphism 2
Input 4 exponents for image of pcp generator 1: 1 1 0 0
Input 4 exponents for image of pcp generator 2: 0 1 0 0
Now enter the data for automorphism 3
Input 4 exponents for image of pcp generator 1: 1 0 0 0
Input 4 exponents for image of pcp generator 2: 0 4 0 0
Now enter the data for automorphism 4
Input 4 exponents for image of pcp generator 1: 1 0 0 0
Input 4 exponents for image of pcp generator 2: 0 2 0 0
Now enter the data for automorphism 5
Input 4 exponents for image of pcp generator 1: 4 0 0 0
Input 4 exponents for image of pcp generator 2: 0 1 0 0
Now enter the data for automorphism 6
Input 4 exponents for image of pcp generator 1: 2 0 0 0
Input 4 exponents for image of pcp generator 2: 0 1 0 0
Input number of soluble generators for automorphism group: 0
Select option: 5 #construct descendants
Input class bound on descendants: 4
Construct all descendants? 0 #i.e. ``No''
Input step size: 1
PAG-generating sequence for automorphism group? 1 #``Yes''
Do you want default algorithm? 0 #``No''
Rank of the initial segment subgroup? 4
Space efficient computation? 0 #``No''
Completely process terminal descendants? 0 #``No''
Input exponent law (0 if none): 0
Enforce metabelian law? 0 #``No''
Do you want default output? 1 #``Yes''
**************************************************
Starting group: Nott
Order: 5^4
Nuclear rank: 1
5-multiplicator rank: 4
# of immediate descendants of order 5^5 is 9
# of capable immediate descendants is 2
**************************************************
2 capable groups saved on file Nott_class4
Construction of descendants took 0.02 seconds
Select option: 3 #restore group
Enter input file name: Nott_class4
Which group? 1
Select option: 6 #get Advanced p-Group Gen'n Menu
Advanced Menu for p-Group Generation
-------------------------------------
1. Read automorphism information for starting group
2. Extend and display automorphisms
3. Specify input file and group number
4. List group presentation
5. Carry out intermediate stage calculation
6. Compute definition sets & find degree
7. Construct permutations of subgroups under automorphisms
8. Compute and list orbit information
9. Process all orbit representatives
10. Process individual orbit representative
11. Compute label for standard matrix of subgroup
12. Compute standard matrix for subgroup from label
13. Find image of allowable subgroup under automorphism
14. Find rank of closure of initial segment subgroup
15. List representative and orbit for supplied label
16. Write compact descriptions of generated groups to file
17. Find automorphism classes of elements of vector space
18. Exit to main p-group generation menu
Select option: 6 #find degree
Input step size: 2
Rank of the initial segment subgroup? 3
Input exponent law (0 if none): 0
Degree of permutation group is 25
Select option: 7 #compute permutations
PAG-generating sequence for automorphism group? 1
Space efficient computation? 0
Print automorphism matrices? 0
Print permutations? 0
Time to compute permutations is 0.00 seconds
Select option: 8 #compute orbits
PAG-generating sequence for automorphism group? 1 #``Yes''
Space efficient computation? 0 #``No''
Summary of orbit information? 1 #``Yes''
Complete listing of orbits? 0 #``No''
Time to compute orbits is 0.00 seconds
Orbit Length Representative
1 5 1
2 20 2
Select option: 9 #compute stabilisers
PAG-generating sequence for automorphism group? 1 #``Yes''
Space efficient computation? 0 #``No''
Completely process terminal descendants? 0 #``No''
Input exponent law (0 if none): 0
Enforce metabelian law? 0 #``No''
Print standard matrix of allowable subgroup? 0 #``No''
Presentation of reduced p-covering groups? 0 #``No''
Presentation of immediate descendants? 0 #``No''
Print nuclear rank of descendants? 0 #``No''
Print p-multiplicator rank of descendants? 0 #``No''
Print commutator matrix? 0 #``No''
Automorphism group description of descendants? 0 #``No''
Automorphism group order of descendants? 0 #``No''
Enter output file name: X
Time to process representative is 0.02 seconds
Select option: 3 #restore reduced p-covering group
Enter input file name: X
Which group? 1
Select option: 4 #display presentation
Group: Nott #1;1 to lower exponent-5 central class 5 has order 5^9
Class 1
1 is defined on image of defining generator 1
2 is defined on image of defining generator 2
Class 2
3 is defined on [2, 1] = 2 1
Class 3
4 is defined on [3, 1] = 2 1 1
Class 4
5 is defined on [4, 1] = 2 1 1 1
Class 5
6 is defined on [5, 1] = 2 1 1 1 1
7 is defined on [5, 2] = 2 1 1 1 2
8 is defined on 1^5 = 1 1
9 is defined on 2^5 = 2 2
Non-trivial powers:
.1^5 = .8
.2^5 = .9
Non-trivial commutators:
[ .2, .1 ] = .3
[ .3, .1 ] = .4
[ .4, .1 ] = .5
[ .4, .2 ] = .7
[ .4, .3 ] = .7^4
[ .5, .1 ] = .6
[ .5, .2 ] = .7
Select option: 5 #intermediate stage computation
Input step size: 2
PAG-generating sequence for automorphism group? 1 #``Yes''
Do you want default algorithm? 1 #``Yes''
Do you want default output? 1 #``Yes''
Input output file name: XX
**************************************************
Starting group: Nott #1;1
Order: 5^5
Nuclear rank: 2
5-multiplicator rank: 4
# of immediate descendants of order 5^7 is 40
# of capable immediate descendants is 5
Time for intermediate stage is 0.07 seconds
Select option: 0 #exit through 3 levels of menus
Exiting from advanced p-group generation menu
Select option: 0
Exiting from p-group generation
Select option: 0
Exiting from ANU p-Quotient Program
Total user time in seconds is 0.10
\end{verbatim}
\section{Changes}
\begin{description}
\item[\texttt{Version 1.9}]\ \\
Fixes made to warnings in C code by Max Horn.
\item[\texttt{Version 1.8}]\ \\
\textsf{GAP} link code updated for \textsf{GAP} 4.4.
\item[\texttt{Version 1.7}]\ \\
Binomial coefficient algorithm modified to avoid overflow.
\item[\texttt{Version 1.6}]\ \\
In main Menu for {\it p}-Group Generation, when asking for
automorphisms, now ask for the number of soluble automorphisms
and their relative orders when there are any.
\item[\texttt{Version 1.5}]\ \\
Added the \texttt{-G} option for use with \textsf{GAP} and the
\texttt{-v} option.
\end{description}
\pagebreak
\section*{\centering References}
\addcontentsline{toc}{section}{\numberline{}References}
\begin{description}
\item George Havas and M.F.\ Newman (1980), ``Application of computers to
questions like those of Burnside", {\it Burnside Groups} (Bielefeld, 1977),
{\it Lecture Notes in Math.\ }{\bf 806}, pp.\ 211-230.
Springer-Verlag, Berlin, Heidelberg, New York.
\item M.F.\ Newman (1977), ``Determination of groups of prime-power order",
{\it Group Theory} (Canberra, 1975). {\it Lecture Notes in Math.\ }{\bf 573},
pp.\ 73--84.
Springer-Verlag.
\item M.F.\ Newman and E.A. O'Brien (1996),
``Application of computers to questions like those of Burnside, {II}",
{\it Internat.\ J.\ Algebra Comput}. {\bf 6}, 593-605.
\item E.A.\ O'Brien (1990), ``The {\it p}-group generation
algorithm", {\it J.\ Symbolic Comput.} {\bf 9}, 677-698.
\item E.A.\ O'Brien (1994), ``Isomorphism testing
for \mbox{{\it p}-groups}", {\it J. Symbolic Comput.} {\bf 17},
133--147.
\item E.A.\ O'Brien (1995), ``Computing automorphism groups for
{\it p}-groups", {\it Computational Algebra and Number Theory}
(Sydney, 1992), pp.\ 83--90. Kluwer Academic Publishers, Dordrecht.
\item M.R. Vaughan-Lee (1982), ``An Aspect of the Nilpotent
Quotient Algorithm", {\it Computational Group Theory}
(Durham, 1982), pp. 76--83. Academic Press.
\item Michael Vaughan-Lee (1990a), ``The Restricted Burnside Problem",
{\it London Mathematical Society monographs (New Ser.)} {\bf 5}.
Clarendon Press, New York, Oxford.
\item M.R. Vaughan-Lee (1990b), ``Collection from the left",
{\it J. Symbolic Comput.} {\bf 9}, 725--733.
\end{description}
%\vspace*{0.5cm}
\noindent
Eamonn A.\ O'Brien \\
Department of Mathematics \\
University of Auckland \\
Private Bag 92019, Auckland, New Zealand
\vspace*{0.25cm}
\noindent
E-mail address: obrien@math.auckland.ac.nz
\vspace*{0.35cm}
\noindent
Last revised by Eamonn O'Brien: August 2001\hfil\break\noindent
Revised February 2002 (v1.5 GG), February 2004 (v1.6 GG),\hfil\break
\hspace*{2em}November 2011 (v1.9 MH), January 2012 (v1.9 GG)
\end{document}
|