File: chapBib_mj.html

package info (click to toggle)
gap 4.15.1-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 110,212 kB
  • sloc: ansic: 97,261; xml: 48,343; cpp: 13,946; sh: 4,900; perl: 1,650; javascript: 255; makefile: 252; ruby: 9
file content (1601 lines) | stat: -rw-r--r-- 78,545 bytes parent folder | download
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
<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<script type="text/javascript"
  src="https://cdn.jsdelivr.net/npm/mathjax@2/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<title>GAP (ref) - References</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="generator" content="GAPDoc2HTML" />
<link rel="stylesheet" type="text/css" href="manual.css" />
<script src="manual.js" type="text/javascript"></script>
<script type="text/javascript">overwriteStyle();</script>
</head>
<body class="chapBib"  onload="jscontent()">


<div class="chlinktop"><span class="chlink1">Goto Chapter: </span><a href="chap0_mj.html">Top</a>  <a href="chap1_mj.html">1</a>  <a href="chap2_mj.html">2</a>  <a href="chap3_mj.html">3</a>  <a href="chap4_mj.html">4</a>  <a href="chap5_mj.html">5</a>  <a href="chap6_mj.html">6</a>  <a href="chap7_mj.html">7</a>  <a href="chap8_mj.html">8</a>  <a href="chap9_mj.html">9</a>  <a href="chap10_mj.html">10</a>  <a href="chap11_mj.html">11</a>  <a href="chap12_mj.html">12</a>  <a href="chap13_mj.html">13</a>  <a href="chap14_mj.html">14</a>  <a href="chap15_mj.html">15</a>  <a href="chap16_mj.html">16</a>  <a href="chap17_mj.html">17</a>  <a href="chap18_mj.html">18</a>  <a href="chap19_mj.html">19</a>  <a href="chap20_mj.html">20</a>  <a href="chap21_mj.html">21</a>  <a href="chap22_mj.html">22</a>  <a href="chap23_mj.html">23</a>  <a href="chap24_mj.html">24</a>  <a href="chap25_mj.html">25</a>  <a href="chap26_mj.html">26</a>  <a href="chap27_mj.html">27</a>  <a href="chap28_mj.html">28</a>  <a href="chap29_mj.html">29</a>  <a href="chap30_mj.html">30</a>  <a href="chap31_mj.html">31</a>  <a href="chap32_mj.html">32</a>  <a href="chap33_mj.html">33</a>  <a href="chap34_mj.html">34</a>  <a href="chap35_mj.html">35</a>  <a href="chap36_mj.html">36</a>  <a href="chap37_mj.html">37</a>  <a href="chap38_mj.html">38</a>  <a href="chap39_mj.html">39</a>  <a href="chap40_mj.html">40</a>  <a href="chap41_mj.html">41</a>  <a href="chap42_mj.html">42</a>  <a href="chap43_mj.html">43</a>  <a href="chap44_mj.html">44</a>  <a href="chap45_mj.html">45</a>  <a href="chap46_mj.html">46</a>  <a href="chap47_mj.html">47</a>  <a href="chap48_mj.html">48</a>  <a href="chap49_mj.html">49</a>  <a href="chap50_mj.html">50</a>  <a href="chap51_mj.html">51</a>  <a href="chap52_mj.html">52</a>  <a href="chap53_mj.html">53</a>  <a href="chap54_mj.html">54</a>  <a href="chap55_mj.html">55</a>  <a href="chap56_mj.html">56</a>  <a href="chap57_mj.html">57</a>  <a href="chap58_mj.html">58</a>  <a href="chap59_mj.html">59</a>  <a href="chap60_mj.html">60</a>  <a href="chap61_mj.html">61</a>  <a href="chap62_mj.html">62</a>  <a href="chap63_mj.html">63</a>  <a href="chap64_mj.html">64</a>  <a href="chap65_mj.html">65</a>  <a href="chap66_mj.html">66</a>  <a href="chap67_mj.html">67</a>  <a href="chap68_mj.html">68</a>  <a href="chap69_mj.html">69</a>  <a href="chap70_mj.html">70</a>  <a href="chap71_mj.html">71</a>  <a href="chap72_mj.html">72</a>  <a href="chap73_mj.html">73</a>  <a href="chap74_mj.html">74</a>  <a href="chap75_mj.html">75</a>  <a href="chap76_mj.html">76</a>  <a href="chap77_mj.html">77</a>  <a href="chap78_mj.html">78</a>  <a href="chap79_mj.html">79</a>  <a href="chap80_mj.html">80</a>  <a href="chap81_mj.html">81</a>  <a href="chap82_mj.html">82</a>  <a href="chap83_mj.html">83</a>  <a href="chap84_mj.html">84</a>  <a href="chap85_mj.html">85</a>  <a href="chap86_mj.html">86</a>  <a href="chap87_mj.html">87</a>  <a href="chapBib_mj.html">Bib</a>  <a href="chapInd_mj.html">Ind</a>  </div>

<div class="chlinkprevnexttop">&nbsp;<a href="chap0_mj.html">[Top of Book]</a>&nbsp;  <a href="chap0_mj.html#contents">[Contents]</a>&nbsp;  &nbsp;<a href="chap87_mj.html">[Previous Chapter]</a>&nbsp;  &nbsp;<a href="chapInd_mj.html">[Next Chapter]</a>&nbsp;  </div>

<p id="mathjaxlink" class="pcenter"><a href="chapBib.html">[MathJax off]</a></p>
<p><a id="X7A6F98FD85F02BFE" name="X7A6F98FD85F02BFE"></a></p>

<h3>References</h3>


<p><a id="biBAMW82" name="biBAMW82"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=679157">AMW82</a></span>]   <b class='BibAuthor'>Arrell, D. G., Manrai, S. and Worboys, M. F.</b> (<span class='BibEditor'>Campbell, C. M. and Robertson, E. F.</span>, Eds.),
 <i class='BibTitle'>A procedure for obtaining simplified defining relations for a
              subgroup</i>,
  in  <i class='BibBooktitle'>Groups–St Andrews 1981 (St Andrews, 1981)</i>,
 <span class='BibPublisher'>Cambridge Univ. Press</span>,
 <span class='BibSeries'>London Math. Soc. Lecture Note Ser.</span>,
 <em class='BibVolume'>71</em>,
 <span class='BibAddress'>Cambridge</span>
 (<span class='BibYear'>1982</span>),
 <span class='BibPages'>155–159</span>.
</p>


<p><a id="biBAR84" name="biBAR84"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=760644">AR84</a></span>]   <b class='BibAuthor'>Arrell, D. G. and Robertson, E. F.</b> (<span class='BibEditor'>Atkinson, M. D.</span>, Ed.),
 <i class='BibTitle'>A modified Todd-Coxeter algorithm</i>,
  in  <i class='BibBooktitle'>Computational group theory (Durham, 1982)</i>,
 <span class='BibPublisher'>Academic Press</span>,
 <span class='BibAddress'>London</span>
 (<span class='BibYear'>1984</span>),
 <span class='BibPages'>27–32</span>.
</p>


<p><a id="biBArt68" name="biBArt68"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0392905">Art73</a></span>]   <b class='BibAuthor'>Artin, E.</b>,
 <i class='BibTitle'>Galoissche Theorie</i>,
 <span class='BibPublisher'>Verlag Harri Deutsch</span>,
 <span class='BibAddress'>Zurich</span>
 (<span class='BibYear'>1973</span>),
 <span class='BibPages'>86 pages</span><br />
(<span class='BibNote'>Übersetzung nach der zweiten englischen Auflage besorgt von
              Viktor Ziegler,
              Mit einem Anhang von N. A. Milgram,
              Zweite, unveränderte Auflage,
              Deutsch-Taschenbücher, No. 21</span>).
</p>


<p><a id="biBBaker84" name="biBBaker84"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=781734">Bak84</a></span>]   <b class='BibAuthor'>Baker, A.</b>,
 <i class='BibTitle'>A concise introduction to the theory of numbers</i>,
 <span class='BibPublisher'>Cambridge University Press</span>,
 <span class='BibAddress'>Cambridge</span>
 (<span class='BibYear'>1984</span>),
 <span class='BibPages'>xiii+95 pages</span>.
</p>


<p><a id="biBBC76" name="biBBC76"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0399265">BC76</a></span>]   <b class='BibAuthor'>Beetham, M. J. and Campbell, C. M.</b>,
 <i class='BibTitle'>A note on the Todd-Coxeter coset enumeration
      algorithm</i>,
 <span class='BibJournal'>Proc. Edinburgh Math. Soc. (2)</span>,
 <em class='BibVolume'>20</em> (<span class='BibNumber'>1</span>)
 (<span class='BibYear'>1976</span>),
 <span class='BibPages'>73–79</span>.
</p>


<p><a id="biBBC89" name="biBBC89"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=968150">BC89</a></span>]   <b class='BibAuthor'>Brent, R. P. and Cohen, G. L.</b>,
 <i class='BibTitle'>A new lower bound for odd perfect numbers</i>,
 <span class='BibJournal'>Math. Comp.</span>,
 <em class='BibVolume'>53</em> (<span class='BibNumber'>187</span>)
 (<span class='BibYear'>1989</span>),
 <span class='BibPages'>431–437, S7–S24</span>.
</p>


<p><a id="biBBC94" name="biBBC94"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1226811">BC94</a></span>]   <b class='BibAuthor'>Baum, U. and Clausen, M.</b>,
 <i class='BibTitle'>Computing irreducible representations of supersolvable groups</i>,
 <span class='BibJournal'>Math. Comp.</span>,
 <em class='BibVolume'>63</em> (<span class='BibNumber'>207</span>)
 (<span class='BibYear'>1994</span>),
 <span class='BibPages'>351–359</span>.
</p>


<p><a id="biBBCFS91" name="biBBCFS91"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>BCFS91</span>]   <b class='BibAuthor'>Babai, L., Cooperman, G., Finkelstein, L. and Seress, Á.</b>,
 <i class='BibTitle'>Nearly  Linear  Time Algorithms for Permutation Groups
                      with a Small Base</i>,
  in  <i class='BibBooktitle'>Proceedings of the International Symposium on Symbolic
  and Algebraic Computation (ISSAC'91), Bonn 1991</i>,
 <span class='BibPublisher'>ACM Press</span>
 (<span class='BibYear'>1991</span>),
 <span class='BibPages'>200–209</span>.
</p>


<p><a id="biBBescheEick98" name="biBBescheEick98"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1681346">BE99</a></span>]   <b class='BibAuthor'>Besche, H. U. and Eick, B.</b>,
 <i class='BibTitle'>Construction of finite groups</i>,
 <span class='BibJournal'>J. Symbolic Comput.</span>,
 <em class='BibVolume'>27</em> (<span class='BibNumber'>4</span>)
 (<span class='BibYear'>1999</span>),
 <span class='BibPages'>387–404</span>.
</p>


<p><a id="biBBer76" name="biBBer76"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0396729">Ber76</a></span>]   <b class='BibAuthor'>Berger, T. R.</b>,
 <i class='BibTitle'>Characters and derived length in groups of odd order</i>,
 <span class='BibJournal'>J. Algebra</span>,
 <em class='BibVolume'>39</em> (<span class='BibNumber'>1</span>)
 (<span class='BibYear'>1976</span>),
 <span class='BibPages'>199–207</span>.
</p>


<p><a id="biBBesche92" name="biBBesche92"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Bes92</span>]   <b class='BibAuthor'>Besche, H. U.</b>,
 <i class='BibTitle'>Die    Berechnung    von    Charaktergraden    und
                      Charakteren   endlicher   auflösbarer
  Gruppen im Computeralgebrasystem GAP</i>,
 <span class='BibType'>Diplomarbeit</span>,
 <span class='BibSchool'>Lehrstuhl   D   für  Mathematik,
                      Rheinisch               Westfälische
                      Technische Hochschule</span>,
 <span class='BibAddress'>Aachen, Germany</span>
 (<span class='BibYear'>1992</span>).
</p>


<p><a id="biBBFS79" name="biBBFS79"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=554857">BFS79</a></span>]   <b class='BibAuthor'>Beyl, F. R., Felgner, U. and Schmid, P.</b>,
 <i class='BibTitle'>On groups occurring as center factor groups</i>,
 <span class='BibJournal'>J. Algebra</span>,
 <em class='BibVolume'>61</em> (<span class='BibNumber'>1</span>)
 (<span class='BibYear'>1979</span>),
 <span class='BibPages'>161–177</span>.
</p>


<p><a id="biBBJR87" name="biBBJR87"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=913203">BJR87</a></span>]   <b class='BibAuthor'>Brown, R., Johnson, D. L. and Robertson, E. F.</b>,
 <i class='BibTitle'>Some computations of nonabelian tensor products of groups</i>,
 <span class='BibJournal'>J. Algebra</span>,
 <em class='BibVolume'>111</em> (<span class='BibNumber'>1</span>)
 (<span class='BibYear'>1987</span>),
 <span class='BibPages'>177–202</span>.
</p>


<p><a id="biBBreuerLinton98" name="biBBreuerLinton98"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>BL98</span>]   <b class='BibAuthor'>Breuer, T. and Linton, S.</b>,
 <i class='BibTitle'>The   GAP 4   Type   System.   Organizing  Algebraic
                      Algorithms</i>,
  in  <i class='BibBooktitle'>ISSAC '98: Proceedings of the 1998 international symposium on
      Symbolic and algebraic computation</i>,
 <span class='BibPublisher'>ACM Press</span>,
 <span class='BibAddress'>New York, NY, USA</span>
 (<span class='BibYear'>1998</span>),
 <span class='BibPages'>38–45</span><br />
(<span class='BibNote'>Chairman: Volker Weispfenning and Barry Trager</span>).
</p>


<p><a id="biBBLS1975" name="biBBLS1975"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>BLS75</span>]   <b class='BibAuthor'>Brillhart, J., Lehmer, D. and Selfridge, J.</b>,
<a href="https://doi.org/10.2307/2005583"><i class='BibTitle'>New primality criteria and factorizations of \(2^m \pm 1\)</i></a>,
 <span class='BibJournal'>Mathematics of Computation</span>,
 <em class='BibVolume'>29</em>
 (<span class='BibYear'>1975</span>),
 <span class='BibPages'>620–647</span>.
</p>


<p><a id="biBBourbaki70" name="biBBourbaki70"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0274237">Bou70</a></span>]   <b class='BibAuthor'>Bourbaki, N.</b>,
 <i class='BibTitle'>Éléments de mathématique. Algèbre. Chapitres 1
              à 3</i>,
 <span class='BibPublisher'>Hermann</span>,
 <span class='BibAddress'>Paris</span>
 (<span class='BibYear'>1970</span>),
 <span class='BibPages'>xiii+635 pp. (not consecutively paged) pages</span>.
</p>


<p><a id="biBBP98" name="biBBP98"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1633876">BP98</a></span>]   <b class='BibAuthor'>Breuer, T. and Pfeiffer, G.</b>,
 <i class='BibTitle'>Finding possible permutation characters</i>,
 <span class='BibJournal'>J. Symbolic Comput.</span>,
 <em class='BibVolume'>26</em> (<span class='BibNumber'>3</span>)
 (<span class='BibYear'>1998</span>),
 <span class='BibPages'>343–354</span>.
</p>


<p><a id="biBBre91" name="biBBre91"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Bre91</span>]   <b class='BibAuthor'>Breuer, T.</b>,
 <i class='BibTitle'>Potenzabbildungen,             Untergruppenfusionen,
                      Tafel-Automorphismen</i>,
 <span class='BibType'>Diplomarbeit</span>,
 <span class='BibSchool'>Lehrstuhl   D   für  Mathematik, Rheinisch  Westfälische
                      Technische Hochschule</span>,
 <span class='BibAddress'>Aachen, Germany</span>
 (<span class='BibYear'>1991</span>).
</p>


<p><a id="biBBre97" name="biBBre97"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1464789">Bre97</a></span>]   <b class='BibAuthor'>Breuer, T.</b>,
 <i class='BibTitle'>Integral bases for subfields of cyclotomic fields</i>,
 <span class='BibJournal'>Appl. Algebra Engrg. Comm. Comput.</span>,
 <em class='BibVolume'>8</em> (<span class='BibNumber'>4</span>)
 (<span class='BibYear'>1997</span>),
 <span class='BibPages'>279–289</span>.
</p>


<p><a id="biBBre99" name="biBBre99"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1687309">Bre99</a></span>]   <b class='BibAuthor'>Breuer, T.</b>,
 <i class='BibTitle'>Computing possible class fusions from character tables</i>,
 <span class='BibJournal'>Comm. Algebra</span>,
 <em class='BibVolume'>27</em> (<span class='BibNumber'>6</span>)
 (<span class='BibYear'>1999</span>),
 <span class='BibPages'>2733–2748</span>.
</p>


<p><a id="biBBTW93" name="biBBTW93"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1227929">BTW93</a></span>]   <b class='BibAuthor'>Beauzamy, B., Trevisan, V. and Wang, P. S.</b>,
 <i class='BibTitle'>Polynomial factorization: sharp bounds, efficient algorithms</i>,
 <span class='BibJournal'>J. Symbolic Comput.</span>,
 <em class='BibVolume'>15</em> (<span class='BibNumber'>4</span>)
 (<span class='BibYear'>1993</span>),
 <span class='BibPages'>393–413</span>.
</p>


<p><a id="biBBur55" name="biBBur55"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0069818">Bur55</a></span>]   <b class='BibAuthor'>Burnside, W.</b>,
 <i class='BibTitle'>Theory of groups of finite order</i>,
 <span class='BibPublisher'>Dover Publications Inc.</span>,
 <span class='BibAddress'>New York</span>
 (<span class='BibYear'>1955</span>),
 <span class='BibPages'>xxiv+512 pages</span><br />
(<span class='BibNote'>Unabridged   republication   of  the  second  edition,
                      published in 1911</span>).
</p>


<p><a id="biBCan73" name="biBCan73"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0318322">Can73</a></span>]   <b class='BibAuthor'>Cannon, J. J.</b>,
 <i class='BibTitle'>Construction of defining relators for finite groups</i>,
 <span class='BibJournal'>Discrete Math.</span>,
 <em class='BibVolume'>5</em>
 (<span class='BibYear'>1973</span>),
 <span class='BibPages'>105–129</span>.
</p>


<p><a id="biBCar72a" name="biBCar72a"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0407163">Car72</a></span>]   <b class='BibAuthor'>Carter, R. W.</b>,
 <i class='BibTitle'>Simple groups of Lie type</i>,
 <span class='BibPublisher'>John Wiley &amp; Sons, London-New York-Sydney</span>
 (<span class='BibYear'>1972</span>),
 <span class='BibPages'>viii+331 pages</span><br />
(<span class='BibNote'>Pure and Applied Mathematics, Vol. 28</span>).
</p>


<p><a id="biBCCN85" name="biBCCN85"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=827219">CCN+85</a></span>]   <b class='BibAuthor'>Conway, J. H., Curtis, R. T., Norton, S. P., Parker, R. A. and Wilson, R. A.</b>,
 <i class='BibTitle'>Atlas of finite groups</i>,
 <span class='BibPublisher'>Oxford University Press</span>,
 <span class='BibAddress'>Eynsham</span>
 (<span class='BibYear'>1985</span>),
 <span class='BibPages'>xxxiv+252 pages</span><br />
(<span class='BibNote'>Maximal subgroups and ordinary characters for simple groups,
              With computational assistance from J. G. Thackray</span>).
</p>


<p><a id="biBcoxlittleoshea" name="biBcoxlittleoshea"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1417938">CLO97</a></span>]   <b class='BibAuthor'>Cox, D., Little, J. and O'Shea, D.</b>,
 <i class='BibTitle'>Ideals, varieties, and algorithms</i>,
 <span class='BibPublisher'>Springer-Verlag</span>,
 <span class='BibEdition'>Second edition</span>,
 <span class='BibSeries'>Undergraduate Texts in Mathematics</span>,
 <span class='BibAddress'>New York</span>
 (<span class='BibYear'>1997</span>),
 <span class='BibPages'>xiv+536 pages</span><br />
(<span class='BibNote'>An introduction to computational algebraic geometry and
              commutative algebra</span>).
</p>


<p><a id="biBCoh93" name="biBCoh93"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1228206">Coh93</a></span>]   <b class='BibAuthor'>Cohen, H.</b>,
 <i class='BibTitle'>A course in computational algebraic number theory</i>,
 <span class='BibPublisher'>Springer-Verlag</span>,
 <span class='BibSeries'>Graduate Texts in Mathematics</span>,
 <em class='BibVolume'>138</em>,
 <span class='BibAddress'>Berlin</span>
 (<span class='BibYear'>1993</span>),
 <span class='BibPages'>xii+534 pages</span>.
</p>


<p><a id="biBCon90a" name="biBCon90a"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1075421">Con90a</a></span>]   <b class='BibAuthor'>Conlon, S. B.</b>,
 <i class='BibTitle'>Calculating characters of \(p\)-groups</i>,
 <span class='BibJournal'>J. Symbolic Comput.</span>,
 <em class='BibVolume'>9</em> (<span class='BibNumber'>5-6</span>)
 (<span class='BibYear'>1990</span>),
 <span class='BibPages'>535–550</span><br />
(<span class='BibNote'>Computational group theory, Part 1</span>).
</p>


<p><a id="biBCon90b" name="biBCon90b"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1075422">Con90b</a></span>]   <b class='BibAuthor'>Conlon, S. B.</b>,
 <i class='BibTitle'>Computing modular and projective character degrees of soluble
              groups</i>,
 <span class='BibJournal'>J. Symbolic Comput.</span>,
 <em class='BibVolume'>9</em> (<span class='BibNumber'>5-6</span>)
 (<span class='BibYear'>1990</span>),
 <span class='BibPages'>551–570</span><br />
(<span class='BibNote'>Computational group theory, Part 1</span>).
</p>


<p><a id="biBDix67" name="biBDix67"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0224726">Dix67</a></span>]   <b class='BibAuthor'>Dixon, J. D.</b>,
 <i class='BibTitle'>High speed computation of group characters</i>,
 <span class='BibJournal'>Numer. Math.</span>,
 <em class='BibVolume'>10</em>
 (<span class='BibYear'>1967</span>),
 <span class='BibPages'>446–450</span>.
</p>


<p><a id="biBDix93" name="biBDix93"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1235797">Dix93</a></span>]   <b class='BibAuthor'>Dixon, J. D.</b> (<span class='BibEditor'>Finkelstein, L. and Kantor, W. M.</span>, Eds.),
 <i class='BibTitle'>Constructing representations of finite groups</i>,
  in  <i class='BibBooktitle'>Groups and computation (New Brunswick, NJ, 1991)</i>,
 <span class='BibPublisher'>Amer. Math. Soc.</span>,
 <span class='BibSeries'>DIMACS Ser. Discrete Math. Theoret. Comput. Sci.</span>,
 <em class='BibVolume'>11</em>,
 <span class='BibAddress'>Providence, RI</span>
 (<span class='BibYear'>1993</span>),
 <span class='BibPages'>105–112</span>.
</p>


<p><a id="biBDre69" name="biBDre69"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0248239">Dre69</a></span>]   <b class='BibAuthor'>Dress, A.</b>,
 <i class='BibTitle'>A characterisation of solvable groups</i>,
 <span class='BibJournal'>Math. Z.</span>,
 <em class='BibVolume'>110</em>
 (<span class='BibYear'>1969</span>),
 <span class='BibPages'>213–217</span>.
</p>


<p><a id="biBEickHulpke01" name="biBEickHulpke01"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>EH01</span>]   <b class='BibAuthor'>Eick, B. and Hulpke, A.</b>,
 <i class='BibTitle'>Computing the maximal subgroups of a permutation group I</i>,
 <span class='BibPages'>155–168</span>.
</p>


<p><a id="biBEick97" name="biBEick97"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1444133">Eic97</a></span>]   <b class='BibAuthor'>Eick, B.</b> (<span class='BibEditor'>Finkelstein, L. and Kantor, W. M.</span>, Eds.),
 <i class='BibTitle'>Special presentations for finite soluble groups and computing
              (pre-)Frattini subgroups</i>,
  in  <i class='BibBooktitle'>Groups and computation, II (New Brunswick, NJ, 1995)</i>,
 <span class='BibPublisher'>Amer. Math. Soc.</span>,
 <span class='BibSeries'>DIMACS Ser. Discrete Math. Theoret. Comput. Sci.</span>,
 <em class='BibVolume'>28</em>,
 <span class='BibAddress'>Providence, RI</span>
 (<span class='BibYear'>1997</span>),
 <span class='BibPages'>101–112</span>.
</p>


<p><a id="biBEllis98" name="biBEllis98"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1697585">Ell98</a></span>]   <b class='BibAuthor'>Ellis, G.</b>,
 <i class='BibTitle'>On the capability of groups</i>,
 <span class='BibJournal'>Proc. Edinburgh Math. Soc. (2)</span>,
 <em class='BibVolume'>41</em> (<span class='BibNumber'>3</span>)
 (<span class='BibYear'>1998</span>),
 <span class='BibPages'>487–495</span>.
</p>


<p><a id="biBFJNT95" name="biBFJNT95"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1342790">FJNT95</a></span>]   <b class='BibAuthor'>Felsch, V., Johnson, D. L., Neubüser, J. and Tsaranov, S. V.</b>,
 <i class='BibTitle'>The structure of certain Coxeter groups</i>,
  in  <i class='BibBooktitle'>Groups '93 Galway/St Andrews, Vol. 1 (Galway, 1993)</i>,
 <span class='BibPublisher'>Cambridge Univ. Press</span>,
 <span class='BibSeries'>London Math. Soc. Lecture Note Ser.</span>,
 <em class='BibVolume'>211</em>,
 <span class='BibAddress'>Cambridge</span>
 (<span class='BibYear'>1995</span>),
 <span class='BibPages'>177–190</span>.
</p>


<p><a id="biBFelschNeubueser79" name="biBFelschNeubueser79"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=575705">FN79</a></span>]   <b class='BibAuthor'>Felsch, V. and Neubüser, J.</b> (<span class='BibEditor'>Ng, E. W.</span>, Ed.),
 <i class='BibTitle'>An algorithm for the computation of conjugacy classes and
              centralizers in \(p\)-groups</i>,
  in  <i class='BibBooktitle'>Symbolic and algebraic computation (EUROSAM '79, Internat.
              Sympos., Marseille, 1979)</i>,
 <span class='BibPublisher'>Springer</span>,
 <span class='BibSeries'>Lecture Notes in Comput. Sci.</span>,
 <em class='BibVolume'>72</em>,
 <span class='BibAddress'>Berlin</span>
 (<span class='BibYear'>1979</span>),
 <span class='BibPages'>452–465</span><br />
(<span class='BibNote'>EUROSAM '79, an International Symposium held in Marseille,
              June 1979</span>).
</p>


<p><a id="biBFra82" name="biBFra82"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=667230">Fra82</a></span>]   <b class='BibAuthor'>Frame, J. S.</b>,
 <i class='BibTitle'>Recursive computation of tensor power components</i>,
 <span class='BibJournal'>Bayreuth. Math. Schr.</span>,
 <em class='BibVolume'>10</em>
 (<span class='BibYear'>1982</span>),
 <span class='BibPages'>153–159</span>.
</p>


<p><a id="biBGW95" name="biBGW95"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1341759">GW95</a></span>]   <b class='BibAuthor'>Gow, R. and Willems, W.</b>,
<a href="https://doi.org/10.1006/jabr.1995.1227"><i class='BibTitle'>Methods to decide if simple self-dual modules over fields of
              characteristic \(2\) are of quadratic type</i></a>,
 <span class='BibJournal'>J. Algebra</span>,
 <em class='BibVolume'>175</em> (<span class='BibNumber'>3</span>)
 (<span class='BibYear'>1995</span>),
 <span class='BibPages'>1067–1081</span>.
</p>


<p><a id="biBHal34" name="biBHal34"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Hal34</span>]   <b class='BibAuthor'>Hall, P.</b>,
<a href="https://doi.org/10.1112/plms/s2-36.1.29"><i class='BibTitle'>A contribution to the theory of groups of prime-power order</i></a>,
 <span class='BibJournal'>Proceedings of the London Mathematical Society</span>,
 <em class='BibVolume'>s2-36</em> (<span class='BibNumber'>1</span>)
 (<span class='BibYear'>1934</span>),
 <span class='BibPages'>29–95</span>.
</p>


<p><a id="biBHal36" name="biBHal36"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Hal36</span>]   <b class='BibAuthor'>Hall, P.</b>,
<a href="https://doi.org/10.1112/plms/s2-40.1.468"><i class='BibTitle'>On a Theorem of Frobenius</i></a>,
 <span class='BibJournal'>Proceedings of the London Mathematical Society</span>,
 <em class='BibVolume'>s2-40</em> (<span class='BibNumber'>1</span>)
 (<span class='BibYear'>1936</span>),
 <span class='BibPages'>468–501</span>.
</p>


<p><a id="biBHav69" name="biBHav69"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Hav69</span>]   <b class='BibAuthor'>Havas, G.</b>,
 <i class='BibTitle'>Symbolic and Algebraic Calculation</i>,
 <span class='BibType'>Basser Computing Dept., Technical Report</span>,
 <span class='BibOrganization'>Basser  Department  of Computer Science, University of
                      Sydney</span> (<span class='BibNumber'>89</span>),
 <span class='BibAddress'>Sydney, Australia</span>
 (<span class='BibYear'>1969</span>).
</p>


<p><a id="biBHav74b" name="biBHav74b"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0376827">Hav74</a></span>]   <b class='BibAuthor'>Havas, G.</b> (<span class='BibEditor'>Newman, M. F.</span>, Ed.),
 <i class='BibTitle'>A Reidemeister-Schreier program</i>,
  in  <i class='BibBooktitle'>Proceedings of the Second International Conference on the
  Theory of Groups (Australian Nat. Univ., Canberra, 1973)</i>,
 <span class='BibPublisher'>Springer</span>,
 <span class='BibSeries'>Lecture Notes in Math.</span>,
 <em class='BibVolume'>372</em>,
 <span class='BibAddress'>Berlin</span>
 (<span class='BibYear'>1974</span>),
 <span class='BibPages'>347–356. Lecture Notes in Math., Vol. 372</span><br />
(<span class='BibNote'>Held at the Australian National University, Canberra, August
              13–24, 1973,
              With an introduction by B. H. Neumann,
              Lecture Notes in Mathematics, Vol. 372</span>).
</p>


<p><a id="biBHup82" name="biBHup82"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=650245">HB82</a></span>]   <b class='BibAuthor'>Huppert, B. and Blackburn, N.</b>,
 <i class='BibTitle'>Finite groups. II</i>,
 <span class='BibPublisher'>Springer-Verlag</span>,
 <span class='BibSeries'>Grundlehren Math. Wiss.</span>,
 <em class='BibVolume'>242</em>,
 <span class='BibAddress'>Berlin</span>
 (<span class='BibYear'>1982</span>),
 <span class='BibPages'>xiii+531 pages</span>.
</p>


<p><a id="biBHIO89" name="biBHIO89"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1039540">HIÖ89</a></span>]   <b class='BibAuthor'>Hawkes, T., Isaacs, I. M. and Özaydin, M.</b>,
 <i class='BibTitle'>On the Möbius function of a finite group</i>,
 <span class='BibJournal'>Rocky Mountain J. Math.</span>,
 <em class='BibVolume'>19</em> (<span class='BibNumber'>4</span>)
 (<span class='BibYear'>1989</span>),
 <span class='BibPages'>1003–1034</span>.
</p>


<p><a id="biBHall" name="biBHall"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0103215">HJ59</a></span>]   <b class='BibAuthor'>Hall Jr., M.</b>,
 <i class='BibTitle'>The theory of groups</i>,
 <span class='BibPublisher'>The Macmillan Co.</span>,
 <span class='BibAddress'>New York, N.Y.</span>
 (<span class='BibYear'>1959</span>),
 <span class='BibPages'>xiii+434 pages</span>.
</p>


<p><a id="biBHJLP92" name="biBHJLP92"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>HJLP</span>]   <b class='BibAuthor'>Hiss, G., Jansen, C., Lux, K. and Parker, R. A.</b>,
 <i class='BibTitle'>Computational Modular Character Theory</i>,
<span class='BibHowpublished'><a href="http://www.math.rwth-aachen.de/~MOC/CoMoChaT/">http://www.math.rwth-aachen.de/~MOC/CoMoChaT/</a></span>.
</p>


<p><a id="biBHKRR84" name="biBHKRR84"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=760651">HKRR84</a></span>]   <b class='BibAuthor'>Havas, G., Kenne, P. E., Richardson, J. S. and Robertson, E. F.</b> (<span class='BibEditor'>Atkinson, M. D.</span>, Ed.),
 <i class='BibTitle'>A Tietze transformation program</i>,
  in  <i class='BibBooktitle'>Computational group theory (Durham, 1982)</i>,
 <span class='BibPublisher'>Academic Press</span>,
 <span class='BibAddress'>London</span>
 (<span class='BibYear'>1984</span>),
 <span class='BibPages'>69–73</span>.
</p>


<p><a id="biBHowie76" name="biBHowie76"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0466355">How76</a></span>]   <b class='BibAuthor'>Howie, J. M.</b>,
 <i class='BibTitle'>An introduction to semigroup theory</i>,
 <span class='BibPublisher'>Academic Press [Harcourt Brace Jovanovich Publishers]</span>,
 <span class='BibAddress'>London</span>
 (<span class='BibYear'>1976</span>),
 <span class='BibPages'>x+272 pages</span><br />
(<span class='BibNote'>L.M.S. Monographs, No. 7</span>).
</p>


<p><a id="biBHP89" name="biBHP89"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1025760">HP89</a></span>]   <b class='BibAuthor'>Holt, D. F. and Plesken, W.</b>,
 <i class='BibTitle'>Perfect groups</i>,
 <span class='BibPublisher'>The Clarendon Press Oxford University Press</span>,
 <span class='BibSeries'>Oxford Mathematical Monographs</span>,
 <span class='BibAddress'>New York</span>
 (<span class='BibYear'>1989</span>),
 <span class='BibPages'>xii+364 pages</span><br />
(<span class='BibNote'>With an appendix by W. Hanrath,
              Oxford Science Publications</span>).
</p>


<p><a id="biBHR94" name="biBHR94"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1279282">HR94</a></span>]   <b class='BibAuthor'>Holt, D. F. and Rees, S.</b>,
 <i class='BibTitle'>Testing modules for irreducibility</i>,
 <span class='BibJournal'>J. Austral. Math. Soc. Ser. A</span>,
 <em class='BibVolume'>57</em> (<span class='BibNumber'>1</span>)
 (<span class='BibYear'>1994</span>),
 <span class='BibPages'>1–16</span>.
</p>


<p><a id="biBHulpke93" name="biBHulpke93"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Hul93</span>]   <b class='BibAuthor'>Hulpke, A.</b>,
 <i class='BibTitle'>Zur Berechnung von Charaktertafeln</i>,
 <span class='BibType'>Diplomarbeit</span>,
 <span class='BibSchool'>Lehrstuhl   D   für  Mathematik,
                      Rheinisch               Westfälische
                      Technische Hochschule</span>
 (<span class='BibYear'>1993</span>).
</p>


<p><a id="biBHulpke96" name="biBHulpke96"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Hul96</span>]   <b class='BibAuthor'>Hulpke, A.</b>,
 <i class='BibTitle'>Konstruktion transitiver Permutationsgruppen</i>,
 <span class='BibType'>Dissertation</span>,
 <span class='BibPublisher'>Verlag der Augustinus Buchhandlung, Aachen</span>,
 <span class='BibSchool'>Rheinisch               Westfälische
                      Technische Hochschule</span>,
 <span class='BibAddress'>Aachen, Germany</span>
 (<span class='BibYear'>1996</span>).
</p>


<p><a id="biBHulpke98" name="biBHulpke98"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1805183">Hul98</a></span>]   <b class='BibAuthor'>Hulpke, A.</b>,
 <i class='BibTitle'>Computing normal subgroups</i>,
  in  <i class='BibBooktitle'>Proceedings of the 1998 International Symposium on Symbolic
              and Algebraic Computation (Rostock)</i>,
 <span class='BibPublisher'>ACM</span>,
 <span class='BibAddress'>New York</span>
 (<span class='BibYear'>1998</span>),
 <span class='BibPages'>194–198 (electronic)</span><br />
(<span class='BibNote'>Chairman: Volker Weispfenning and Barry Trager</span>).
</p>


<p><a id="biBHulpke99" name="biBHulpke99"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1681348">Hul99</a></span>]   <b class='BibAuthor'>Hulpke, A.</b>,
 <i class='BibTitle'>Computing subgroups invariant under a set of automorphisms</i>,
 <span class='BibJournal'>J. Symbolic Comput.</span>,
 <em class='BibVolume'>27</em> (<span class='BibNumber'>4</span>)
 (<span class='BibYear'>1999</span>),
 <span class='BibPages'>415–427</span>.
</p>


<p><a id="biBHulpkeClasses" name="biBHulpkeClasses"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1659847">Hul00</a></span>]   <b class='BibAuthor'>Hulpke, A.</b>,
 <i class='BibTitle'>Conjugacy classes in finite permutation groups via homomorphic
              images</i>,
 <span class='BibJournal'>Math. Comp.</span>,
 <em class='BibVolume'>69</em> (<span class='BibNumber'>232</span>)
 (<span class='BibYear'>2000</span>),
 <span class='BibPages'>1633–1651</span>.
</p>


<p><a id="biBHulpkeQuot" name="biBHulpkeQuot"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1917425">Hul01</a></span>]   <b class='BibAuthor'>Hulpke, A.</b>,
 <i class='BibTitle'>Representing subgroups of finitely presented groups by
              quotient subgroups</i>,
 <span class='BibJournal'>Experiment. Math.</span>,
 <em class='BibVolume'>10</em> (<span class='BibNumber'>3</span>)
 (<span class='BibYear'>2001</span>),
 <span class='BibPages'>369–381</span>.
</p>


<p><a id="biBHum72" name="biBHum72"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0323842">Hum72</a></span>]   <b class='BibAuthor'>Humphreys, J. E.</b>,
 <i class='BibTitle'>Introduction to Lie algebras and representation theory</i>,
 <span class='BibPublisher'>Springer-Verlag</span>,
 <span class='BibAddress'>New York</span>
 (<span class='BibYear'>1972</span>),
 <span class='BibPages'>xii+169 pages</span><br />
(<span class='BibNote'>Graduate Texts in Mathematics, Vol. 9</span>).
</p>


<p><a id="biBHum78" name="biBHum78"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=499562">Hum78</a></span>]   <b class='BibAuthor'>Humphreys, J. E.</b>,
 <i class='BibTitle'>Introduction to Lie algebras and representation theory</i>,
 <span class='BibPublisher'>Springer-Verlag</span>,
 <span class='BibSeries'>Graduate Texts in Mathematics</span>,
 <em class='BibVolume'>9</em>,
 <span class='BibAddress'>New York</span>
 (<span class='BibYear'>1978</span>),
 <span class='BibPages'>xii+171 pages</span><br />
(<span class='BibNote'>Second printing, revised</span>).
</p>


<p><a id="biBHup67" name="biBHup67"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0224703">Hup67</a></span>]   <b class='BibAuthor'>Huppert, B.</b>,
 <i class='BibTitle'>Endliche Gruppen. I</i>,
 <span class='BibPublisher'>Springer-Verlag</span>,
 <span class='BibSeries'>Die Grundlehren der Mathematischen Wissenschaften, Band 134</span>,
 <span class='BibAddress'>Berlin</span>
 (<span class='BibYear'>1967</span>),
 <span class='BibPages'>xii+793 pages</span>.
</p>


<p><a id="biBIshibashiEarnest94" name="biBIshibashiEarnest94"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1272584">IE94</a></span>]   <b class='BibAuthor'>Ishibashi, H. and Earnest, A. G.</b>,
 <i class='BibTitle'>Two-element generation of orthogonal groups over finite
              fields</i>,
 <span class='BibJournal'>J. Algebra</span>,
 <em class='BibVolume'>165</em> (<span class='BibNumber'>1</span>)
 (<span class='BibYear'>1994</span>),
 <span class='BibPages'>164–171</span>.
</p>


<p><a id="biBIsa76" name="biBIsa76"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0460423">Isa76</a></span>]   <b class='BibAuthor'>Isaacs, I. M.</b>,
 <i class='BibTitle'>Character theory of finite groups</i>,
 <span class='BibPublisher'>Academic Press [Harcourt Brace Jovanovich Publishers]</span>,
 <span class='BibAddress'>New York</span>
 (<span class='BibYear'>1976</span>),
 <span class='BibPages'>xii+303 pages</span><br />
(<span class='BibNote'>Pure and Applied Mathematics, No. 69</span>).
</p>


<p><a id="biBJK81" name="biBJK81"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=644144">JK81</a></span>]   <b class='BibAuthor'>James, G. and Kerber, A.</b>,
 <i class='BibTitle'>The representation theory of the symmetric group</i>,
 <span class='BibPublisher'>Addison-Wesley Publishing Co., Reading, Mass.</span>,
 <span class='BibSeries'>Encyclopedia of Mathematics and its Applications</span>,
 <em class='BibVolume'>16</em>
 (<span class='BibYear'>1981</span>),
 <span class='BibPages'>xxviii+510 pages</span><br />
(<span class='BibNote'>With a foreword by P. M. Cohn,
              With an introduction by Gilbert de B. Robinson</span>).
</p>


<p><a id="biBJLPW95" name="biBJLPW95"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1367961">JLPW95</a></span>]   <b class='BibAuthor'>Jansen, C., Lux, K., Parker, R. and Wilson, R.</b>,
 <i class='BibTitle'>An atlas of Brauer characters</i>,
 <span class='BibPublisher'>The Clarendon Press Oxford University Press</span>,
 <span class='BibSeries'>London Mathematical Society Monographs. New Series</span>,
 <em class='BibVolume'>11</em>,
 <span class='BibAddress'>New York</span>
 (<span class='BibYear'>1995</span>),
 <span class='BibPages'>xviii+327 pages</span><br />
(<span class='BibNote'>Appendix 2 by T. Breuer and S. Norton,
              Oxford Science Publications</span>).
</p>


<p><a id="biBJoh97" name="biBJoh97"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1472735">Joh97</a></span>]   <b class='BibAuthor'>Johnson, D. L.</b>,
 <i class='BibTitle'>Presentations of groups</i>,
 <span class='BibPublisher'>Cambridge University Press</span>,
 <span class='BibEdition'>Second edition</span>,
 <span class='BibSeries'>London Mathematical Society Student Texts</span>,
 <em class='BibVolume'>15</em>,
 <span class='BibAddress'>Cambridge</span>
 (<span class='BibYear'>1997</span>),
 <span class='BibPages'>xii+216 pages</span>.
</p>


<p><a id="biBKaup92" name="biBKaup92"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Kau92</span>]   <b class='BibAuthor'>Kaup, A.</b>,
 <i class='BibTitle'>Gitterbasen und Charaktere endlicher Gruppen</i>,
 <span class='BibType'>Diplomarbeit</span>,
 <span class='BibSchool'>Lehrstuhl   D   für  Mathematik,
                      Rheinisch Westfälische
                      Technische Hochschule</span>,
 <span class='BibAddress'>Aachen, Germany</span>
 (<span class='BibYear'>1992</span>).
</p>


<p><a id="biBKleidmanLiebeck90" name="biBKleidmanLiebeck90"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1057341">KL90</a></span>]   <b class='BibAuthor'>Kleidman, P. and Liebeck, M.</b>,
 <i class='BibTitle'>The subgroup structure of the finite classical groups</i>,
 <span class='BibPublisher'>Cambridge University Press</span>,
 <span class='BibSeries'>London Mathematical Society Lecture Note Series</span>,
 <em class='BibVolume'>129</em>,
 <span class='BibAddress'>Cambridge</span>
 (<span class='BibYear'>1990</span>),
 <span class='BibPages'>x+303 pages</span>.
</p>


<p><a id="biBKlimyk66" name="biBKlimyk66"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0206169">Kli66</a></span>]   <b class='BibAuthor'>Klimyk, A. U.</b>,
 <i class='BibTitle'>Decomposition of the direct product of irreducible
  representations of semisimple Lie algebras into irreducible
              representations</i>,
 <span class='BibJournal'>Ukrain. Mat. Ž.</span>,
 <em class='BibVolume'>18</em> (<span class='BibNumber'>5</span>)
 (<span class='BibYear'>1966</span>),
 <span class='BibPages'>19–27</span>.
</p>


<p><a id="biBKlimyk68" name="biBKlimyk68"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Kli68</span>]   <b class='BibAuthor'>Klimyk, A. U.</b>,
 <i class='BibTitle'>Decomposition  of  a  direct  product  of  irreducible
  representations of a semisimple Lie algebra into
                      irreducible representations</i>,
  in  <i class='BibBooktitle'>American Mathematical Society Translations.
                      Series 2</i>,
 <span class='BibPublisher'>American Mathematical Society</span>,
 <em class='BibVolume'>76</em>,
 <span class='BibAddress'>Providence, R.I.</span>
 (<span class='BibYear'>1968</span>),
 <span class='BibPages'>63–73</span>.
</p>


<p><a id="biBKLM01" name="biBKLM01"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1842506">KLM01</a></span>]   <b class='BibAuthor'>Kemper, G., Lübeck, F. and Magaard, K.</b>,
 <i class='BibTitle'>Matrix generators for the Ree groups
      \({}^2G_2(q)\)</i>,
 <span class='BibJournal'>Comm. Algebra</span>,
 <em class='BibVolume'>29</em> (<span class='BibNumber'>1</span>)
 (<span class='BibYear'>2001</span>),
 <span class='BibPages'>407–413</span>.
</p>


<p><a id="biBTACP2" name="biBTACP2"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Knu98</span>]   <b class='BibAuthor'>Knuth, D. E.</b>,
 <i class='BibTitle'>The   Art   of   Computer   Programming,   Volume   2:
                      Seminumerical Algorithms</i>,
 <span class='BibPublisher'>Addison-Wesley</span>,
 <span class='BibEdition'>third edition</span>
 (<span class='BibYear'>1998</span>).
</p>


<p><a id="biBLan70" name="biBLan70"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=282947">Lan70</a></span>]   <b class='BibAuthor'>Lang, S.</b>,
 <i class='BibTitle'>Algebraic number theory</i>,
 <span class='BibPublisher'>Addison-Wesley Publishing Co., Reading, Mass.-London-Don
              Mills, Ont.</span>
 (<span class='BibYear'>1970</span>),
 <span class='BibPages'>xi+354 pages</span>.
</p>


<p><a id="biBLeon91" name="biBLeon91"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1146516">Leo91</a></span>]   <b class='BibAuthor'>Leon, J. S.</b>,
 <i class='BibTitle'>Permutation group algorithms based on partitions. I.
              Theory and algorithms</i>,
 <span class='BibJournal'>J. Symbolic Comput.</span>,
 <em class='BibVolume'>12</em> (<span class='BibNumber'>4-5</span>)
 (<span class='BibYear'>1991</span>),
 <span class='BibPages'>533–583</span><br />
(<span class='BibNote'>Computational group theory, Part 2</span>).
</p>


<p><a id="biBLLL82" name="biBLLL82"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=682664">LLJL82</a></span>]   <b class='BibAuthor'>Lenstra, A. K., Lenstra Jr., H. W. and Lovász, L.</b>,
 <i class='BibTitle'>Factoring polynomials with rational coefficients</i>,
 <span class='BibJournal'>Math. Ann.</span>,
 <em class='BibVolume'>261</em> (<span class='BibNumber'>4</span>)
 (<span class='BibYear'>1982</span>),
 <span class='BibPages'>515–534</span>.
</p>


<p><a id="biBSOGOS" name="biBSOGOS"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=760654">LNS84</a></span>]   <b class='BibAuthor'>Laue, R., Neubüser, J. and Schoenwaelder, U.</b> (<span class='BibEditor'>Atkinson, M. D.</span>, Ed.),
 <i class='BibTitle'>Algorithms for finite soluble groups and the SOGOS
      system</i>,
  in  <i class='BibBooktitle'>Computational group theory (Durham, 1982)</i>,
 <span class='BibPublisher'>Academic Press</span>,
 <span class='BibAddress'>London</span>
 (<span class='BibYear'>1984</span>),
 <span class='BibPages'>105–135</span>.
</p>


<p><a id="biBLP91" name="biBLP91"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1112157">LP91</a></span>]   <b class='BibAuthor'>Lux, K. and Pahlings, H.</b> (<span class='BibEditor'>Michler, G. O. and Ringel, C. M.</span>, Eds.),
 <i class='BibTitle'>Computational aspects of representation theory of finite
              groups</i>,
  in  <i class='BibBooktitle'>Representation theory of finite groups and finite-dimensional
              algebras (Bielefeld, 1991)</i>,
 <span class='BibPublisher'>Birkhäuser</span>,
 <span class='BibSeries'>Progr. Math.</span>,
 <em class='BibVolume'>95</em>,
 <span class='BibAddress'>Basel</span>
 (<span class='BibYear'>1991</span>),
 <span class='BibPages'>37–64</span>.
</p>


<p><a id="biBluksrakocziwright97" name="biBluksrakocziwright97"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1445430">LRW97</a></span>]   <b class='BibAuthor'>Luks, E. M., Rákóczi, F. and Wright, C. R. B.</b>,
 <i class='BibTitle'>Some algorithms for nilpotent permutation groups</i>,
 <span class='BibJournal'>J. Symbolic Comput.</span>,
 <em class='BibVolume'>23</em> (<span class='BibNumber'>4</span>)
 (<span class='BibYear'>1997</span>),
 <span class='BibPages'>335–354</span>.
</p>


<p><a id="biBL03" name="biBL03"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Lüb03</span>]   <b class='BibAuthor'>Lübeck, F.</b>,
 <i class='BibTitle'>Conway polynomials for finite fields</i>
 (<span class='BibYear'>2003</span>),
<span class='BibHowpublished'><a href="http://www.math.rwth-aachen.de:8001/~Frank.Luebeck/data/ConwayPol">http://www.math.rwth-aachen.de:8001/~Frank.Luebeck/data/ConwayPol</a></span>.
</p>


<p><a id="biBMaas2010" name="biBMaas2010"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Maa10</span>]   <b class='BibAuthor'>Maas, L.</b>,
<a href="https://arxiv.org/abs/0911.3794"><i class='BibTitle'>On a construction of the basic spin representations of symmetric groups</i></a>,
 <span class='BibJournal'>Communications in Algebra</span>,
 <em class='BibVolume'>38</em>
 (<span class='BibYear'>2010</span>),
 <span class='BibPages'>4545–4552</span>.
</p>


<p><a id="biBMac81" name="biBMac81"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=615131">Mac81</a></span>]   <b class='BibAuthor'>Macdonald, I. G.</b>,
 <i class='BibTitle'>Numbers of conjugacy classes in some finite classical groups</i>,
 <span class='BibJournal'>Bull. Austral. Math. Soc.</span>,
 <em class='BibVolume'>23</em> (<span class='BibNumber'>1</span>)
 (<span class='BibYear'>1981</span>),
 <span class='BibPages'>23–48</span>.
</p>


<p><a id="biBMeckyNeubueser89" name="biBMeckyNeubueser89"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1012835">MN89</a></span>]   <b class='BibAuthor'>Mecky, M. and Neubüser, J.</b>,
 <i class='BibTitle'>Some remarks on the computation of conjugacy classes of
              soluble groups</i>,
 <span class='BibJournal'>Bull. Austral. Math. Soc.</span>,
 <em class='BibVolume'>40</em> (<span class='BibNumber'>2</span>)
 (<span class='BibYear'>1989</span>),
 <span class='BibPages'>281–292</span>.
</p>


<p><a id="biBMur58" name="biBMur58"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0103933">Mur58</a></span>]   <b class='BibAuthor'>Murnaghan, F. D.</b>,
 <i class='BibTitle'>The orthogonal and symplectic groups</i>,
 <span class='BibJournal'>Comm. Dublin Inst. Adv. Studies. Ser. A, no.</span>,
 <em class='BibVolume'>13</em>
 (<span class='BibYear'>1958</span>),
 <span class='BibPages'>146</span>.
</p>


<p><a id="biBMV97" name="biBMV97"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1484546">MV97</a></span>]   <b class='BibAuthor'>Mahajan, M. and Vinay, V.</b>,
 <i class='BibTitle'>Determinant: combinatorics, algorithms, and complexity</i>,
 <span class='BibJournal'>Chicago J. Theoret. Comput. Sci.</span>
 (<span class='BibYear'>1997</span>),
 <span class='BibPages'>Article 5, 26 pp. (electronic)</span>.
</p>


<p><a id="biBMY79" name="biBMY79"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=521296">MY79</a></span>]   <b class='BibAuthor'>McKay, J. and Young, K. C.</b>,
 <i class='BibTitle'>The nonabelian simple groups \(G\),
  \(|G| &lt; 10^{6}\)–minimal generating pairs</i>,
 <span class='BibJournal'>Math. Comp.</span>,
 <em class='BibVolume'>33</em> (<span class='BibNumber'>146</span>)
 (<span class='BibYear'>1979</span>),
 <span class='BibPages'>812–814</span>.
</p>


<p><a id="biBNeb95" name="biBNeb95"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Neb95</span>]   <b class='BibAuthor'>Nebe, G.</b>,
 <i class='BibTitle'>Endliche rationale Matrixgruppen vom Grad 24</i>,
 <span class='BibType'>Dissertation</span>,
 <span class='BibSchool'>Rheinisch Westfälische Technische Hochschule</span>,
 <span class='BibSeries'>Aachener Beiträge zur Mathematik</span>,
 <em class='BibVolume'>12</em>,
 <span class='BibAddress'>Aachen, Germany</span>
 (<span class='BibYear'>1995</span>).
</p>


<p><a id="biBNeb96" name="biBNeb96"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1390378">Neb96</a></span>]   <b class='BibAuthor'>Nebe, G.</b>,
 <i class='BibTitle'>Finite subgroups of \(GL_n(Q)\) for
      \(25 \leq n \leq 31\)</i>,
 <span class='BibJournal'>Comm. Algebra</span>,
 <em class='BibVolume'>24</em> (<span class='BibNumber'>7</span>)
 (<span class='BibYear'>1996</span>),
 <span class='BibPages'>2341–2397</span>.
</p>


<p><a id="biBNeu82" name="biBNeu82"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=679153">Neu82</a></span>]   <b class='BibAuthor'>Neubüser, J.</b> (<span class='BibEditor'>Campbell, C. M. and Robertson, E. F.</span>, Eds.),
 <i class='BibTitle'>An elementary introduction to coset table methods in
              computational group theory</i>,
  in  <i class='BibBooktitle'>Groups–St Andrews 1981 (St Andrews, 1981)</i>,
 <span class='BibPublisher'>Cambridge Univ. Press</span>,
 <span class='BibSeries'>London Math. Soc. Lecture Note Ser.</span>,
 <em class='BibVolume'>71</em>,
 <span class='BibAddress'>Cambridge</span>
 (<span class='BibYear'>1982</span>),
 <span class='BibPages'>1–45</span>.
</p>


<p><a id="biBneukirch" name="biBneukirch"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Neu92</span>]   <b class='BibAuthor'>Neukirch, J.</b>,
 <i class='BibTitle'>Algebraische Zahlentheorie</i>,
 <span class='BibPublisher'>Springer, Berlin, Heidelberg and New York</span>
 (<span class='BibYear'>1992</span>).
</p>


<p><a id="biBNew90" name="biBNew90"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1037607">New90</a></span>]   <b class='BibAuthor'>Newman, M. F.</b>,
 <i class='BibTitle'>Proving a group infinite</i>,
 <span class='BibJournal'>Arch. Math. (Basel)</span>,
 <em class='BibVolume'>54</em> (<span class='BibNumber'>3</span>)
 (<span class='BibYear'>1990</span>),
 <span class='BibPages'>209–211</span>.
</p>


<p><a id="biBNP95" name="biBNP95"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1265024">NP95b</a></span>]   <b class='BibAuthor'>Nebe, G. and Plesken, W.</b>,
 <i class='BibTitle'>Finite rational matrix groups of degree 16</i>,
 <span class='BibJournal'>Mem. Amer. Math. Soc.</span>,
 <span class='BibPublisher'>AMS</span>,
 <em class='BibVolume'>116</em> (<span class='BibNumber'>556</span>)
 (<span class='BibYear'>1995</span>),
 <span class='BibPages'>74–144</span>.
</p>


<p><a id="biBNPP84" name="biBNPP84"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=760658">NPP84</a></span>]   <b class='BibAuthor'>Neubüser, J., Pahlings, H. and Plesken, W.</b> (<span class='BibEditor'>Atkinson, M. D.</span>, Ed.),
 <i class='BibTitle'>CAS; design and use of a system for the handling of
              characters of finite groups</i>,
  in  <i class='BibBooktitle'>Computational group theory (Durham, 1982)</i>,
 <span class='BibPublisher'>Academic Press</span>,
 <span class='BibAddress'>London</span>
 (<span class='BibYear'>1984</span>),
 <span class='BibPages'>195–247</span>.
</p>


<p><a id="biBPah93" name="biBPah93"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1193087">Pah93</a></span>]   <b class='BibAuthor'>Pahlings, H.</b>,
 <i class='BibTitle'>On the Möbius function of a finite group</i>,
 <span class='BibJournal'>Arch. Math. (Basel)</span>,
 <em class='BibVolume'>60</em> (<span class='BibNumber'>1</span>)
 (<span class='BibYear'>1993</span>),
 <span class='BibPages'>7–14</span>.
</p>


<p><a id="biBPar84" name="biBPar84"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=760660">Par84</a></span>]   <b class='BibAuthor'>Parker, R. A.</b> (<span class='BibEditor'>Atkinson, M. D.</span>, Ed.),
 <i class='BibTitle'>The computer calculation of modular characters (the meat-axe)</i>,
  in  <i class='BibBooktitle'>Computational group theory (Durham, 1982)</i>,
 <span class='BibPublisher'>Academic Press</span>,
 <span class='BibAddress'>London</span>
 (<span class='BibYear'>1984</span>),
 <span class='BibPages'>267–274</span>.
</p>


<p><a id="biBPfe91" name="biBPfe91"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Pfe91</span>]   <b class='BibAuthor'>Pfeiffer, G.</b>,
 <i class='BibTitle'>Von Permutationscharakteren und Markentafeln</i>,
 <span class='BibType'>Diplomarbeit</span>,
 <span class='BibSchool'>Lehrstuhl   D   für  Mathematik,
                      Rheinisch               Westfälische
                      Technische Hochschule</span>,
 <span class='BibAddress'>Aachen, Germany</span>
 (<span class='BibYear'>1991</span>).
</p>


<p><a id="biBPfe97" name="biBPfe97"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1481593">Pfe97</a></span>]   <b class='BibAuthor'>Pfeiffer, G.</b>,
 <i class='BibTitle'>The subgroups of \(M_{24}\), or how to compute the table of
              marks of a finite group</i>,
 <span class='BibJournal'>Experiment. Math.</span>,
 <em class='BibVolume'>6</em> (<span class='BibNumber'>3</span>)
 (<span class='BibYear'>1997</span>),
 <span class='BibPages'>247–270</span>.
</p>


<p><a id="biBPle85" name="biBPle85"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=812182">Ple85</a></span>]   <b class='BibAuthor'>Plesken, W.</b>,
 <i class='BibTitle'>Finite unimodular groups of prime degree and circulants</i>,
 <span class='BibJournal'>J. Algebra</span>,
 <em class='BibVolume'>97</em> (<span class='BibNumber'>1</span>)
 (<span class='BibYear'>1985</span>),
 <span class='BibPages'>286–312</span>.
</p>


<p><a id="biBPle90" name="biBPle90"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1344572">Ple95</a></span>]   <b class='BibAuthor'>Plesken, W.</b>,
 <i class='BibTitle'>Solving \(XX^{\rm tr} = A\) over the integers</i>,
 <span class='BibJournal'>Linear Algebra Appl.</span>,
 <em class='BibVolume'>226/228</em>
 (<span class='BibYear'>1995</span>),
 <span class='BibPages'>331--344</span>.
</p>


<p><a id="biBPN95" name="biBPN95"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1265024">PN95</a></span>]   <b class='BibAuthor'>Plesken, W. and Nebe, G.</b>,
 <i class='BibTitle'>Finite rational matrix groups</i>,
 <span class='BibJournal'>Mem. Amer. Math. Soc.</span>,
 <span class='BibPublisher'>AMS</span>,
 <em class='BibVolume'>116</em> (<span class='BibNumber'>556</span>)
 (<span class='BibYear'>1995</span>),
 <span class='BibPages'>1–73</span>.
</p>


<p><a id="biBPoh87" name="biBPoh87"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=908420">Poh87</a></span>]   <b class='BibAuthor'>Pohst, M.</b>,
 <i class='BibTitle'>A modification of the LLL reduction algorithm</i>,
 <span class='BibJournal'>J. Symbolic Comput.</span>,
 <em class='BibVolume'>4</em> (<span class='BibNumber'>1</span>)
 (<span class='BibYear'>1987</span>),
 <span class='BibPages'>123–127</span>.
</p>


<p><a id="biBPP77" name="biBPP77"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>PP77</span>]   <b class='BibAuthor'>Plesken, W. and Pohst, M.</b>,
 <i class='BibTitle'>On  maximal finite irreducible Subgroups of GL(n,Z).
  I. The five and seven dimensional cases, II. The
                      six dimensional case</i>,
 <span class='BibJournal'>Math. Comp.</span>,
 <em class='BibVolume'>31</em>
 (<span class='BibYear'>1977</span>),
 <span class='BibPages'>536–576</span>.
</p>


<p><a id="biBPP80" name="biBPP80"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>PP80</span>]   <b class='BibAuthor'>Plesken, W. and Pohst, M.</b>,
 <i class='BibTitle'>On  maximal finite irreducible Subgroups of GL(n,Z).
  III. The nine dimensional case, IV. Remarks on
  even dimensions with application to n = 8, V. The
                      eight  dimensional  case and a complete description of
                      dimensions less than ten</i>,
 <span class='BibJournal'>Math. Comp.</span>,
 <em class='BibVolume'>34</em>
 (<span class='BibYear'>1980</span>),
 <span class='BibPages'>245–301</span>.
</p>


<p><a id="biBRin93" name="biBRin93"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Rin93</span>]   <b class='BibAuthor'>Ringe, M.</b>,
 <i class='BibTitle'>The C MeatAxe, Release 1.5</i>,
 <span class='BibOrganization'>Lehrstuhl   D   für  Mathematik,
                      Rheinisch               Westfälische
                      Technische Hochschule</span>,
 <span class='BibAddress'>Aachen, Germany</span>
 (<span class='BibYear'>1993</span>).
</p>


<p><a id="biBRob88" name="biBRob88"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=961370">Rob88</a></span>]   <b class='BibAuthor'>Robertson, E. F.</b>,
 <i class='BibTitle'>Tietze transformations with weighted substring search</i>,
 <span class='BibJournal'>J. Symbolic Comput.</span>,
 <em class='BibVolume'>6</em> (<span class='BibNumber'>1</span>)
 (<span class='BibYear'>1988</span>),
 <span class='BibPages'>59–64</span>.
</p>


<p><a id="biBRylandsTalor98" name="biBRylandsTalor98"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1615330">RT98</a></span>]   <b class='BibAuthor'>Rylands, L. J. and Taylor, D. E.</b>,
 <i class='BibTitle'>Matrix generators for the orthogonal groups</i>,
 <span class='BibJournal'>J. Symbolic Comput.</span>,
 <em class='BibVolume'>25</em> (<span class='BibNumber'>3</span>)
 (<span class='BibYear'>1998</span>),
 <span class='BibPages'>351–360</span>.
</p>


<p><a id="biBSchur1911" name="biBSchur1911"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Sch11</span>]   <b class='BibAuthor'>Schur, J.</b>,
<a href="http://www.digizeitschriften.de/resolveppn/GDZPPN002167298"><i class='BibTitle'>Über die Darstellung der symmetrischen und der alternierenden Gruppe durch gebrochene lineare Substitutionen</i></a>,
 <span class='BibJournal'>Journal für die reine und angewandte Mathematik</span>,
 <em class='BibVolume'>139</em>
 (<span class='BibYear'>1911</span>),
 <span class='BibPages'>155–250</span>.
</p>


<p><a id="biBSch90" name="biBSch90"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1075426">Sch90</a></span>]   <b class='BibAuthor'>Schneider, G. J. A.</b>,
 <i class='BibTitle'>Dixon's character table algorithm revisited</i>,
 <span class='BibJournal'>J. Symbolic Comput.</span>,
 <em class='BibVolume'>9</em> (<span class='BibNumber'>5-6</span>)
 (<span class='BibYear'>1990</span>),
 <span class='BibPages'>601–606</span><br />
(<span class='BibNote'>Computational group theory, Part 1</span>).
</p>


<p><a id="biBScherner92" name="biBScherner92"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Sch92</span>]   <b class='BibAuthor'>Scherner, M.</b>,
 <i class='BibTitle'>Erweiterung        einer        Arithmetik       von
                      Kreisteilungskörpern    auf    deren
                      Teilkörper  und deren Implementation
                      in GAP</i>,
 <span class='BibType'>Diplomarbeit</span>,
 <span class='BibSchool'>Lehrstuhl   D   für  Mathematik,
                      Rheinisch               Westfälische
                      Technische Hochschule</span>,
 <span class='BibAddress'>Aachen, Germany</span>
 (<span class='BibYear'>1992</span>).
</p>


<p><a id="biBSchiffer94" name="biBSchiffer94"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Sch94</span>]   <b class='BibAuthor'>Schiffer, U.</b>,
 <i class='BibTitle'>Cliffordmatrizen</i>,
 <span class='BibType'>Diplomarbeit</span>,
 <span class='BibSchool'>Lehrstuhl   D   für  Mathematik,
                      Rheinisch               Westfälische
                      Technische Hochschule</span>,
 <span class='BibAddress'>Aachen, Germany</span>
 (<span class='BibYear'>1994</span>).
</p>


<p><a id="biBSco73" name="biBSco73"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0310051">Sco73</a></span>]   <b class='BibAuthor'>Scott, L. L.</b>,
 <i class='BibTitle'>Modular permutation representations</i>,
 <span class='BibJournal'>Trans. Amer. Math. Soc.</span>,
 <em class='BibVolume'>175</em>
 (<span class='BibYear'>1973</span>),
 <span class='BibPages'>101–121</span>.
</p>


<p><a id="biBSeress2003" name="biBSeress2003"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Ser03</span>]   <b class='BibAuthor'>Seress, Á.</b>,
 <i class='BibTitle'>Permutation Group Algorithms</i>,
 <span class='BibPublisher'>Cambridge University Press</span>
 (<span class='BibYear'>2003</span>).
</p>


<p><a id="biBSim70" name="biBSim70"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0257203">Sim70</a></span>]   <b class='BibAuthor'>Sims, C. C.</b> (<span class='BibEditor'>Leech, J.</span>, Ed.),
 <i class='BibTitle'>Computational methods in the study of permutation groups</i>,
  in  <i class='BibBooktitle'>Computational Problems in Abstract Algebra (Proc. Conf.,
              Oxford, 1967) </i>,
 <span class='BibPublisher'>Pergamon</span>,
 <span class='BibSeries'>Proceedings of a Conference held at Oxford under the auspices
  of the Science Research Council, Atlas Computer Laboratory</span>,
 <em class='BibVolume'>29</em>,
 <span class='BibAddress'>Oxford</span>
 (<span class='BibYear'>1970</span>),
 <span class='BibPages'>169–183</span><br />
(<span class='BibNotes'>RUSSIAN  translation  in:  Computations in algebra and
                      number  theory  (Russian),  edited by B. B. Venkov and
                      D. K.  Faddeev,  pp.  129–147,  Matematika,  Novoie v
  Zarubeznoi Naukie, vol. 2, Izdat. MIR, Moscow, 1976</span>).
</p>


<p><a id="biBSims90b" name="biBSims90b"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1075432">Sim90</a></span>]   <b class='BibAuthor'>Sims, C. C.</b>,
 <i class='BibTitle'>Computing the order of a solvable permutation group</i>,
 <span class='BibJournal'>J. Symbolic Comput.</span>,
 <em class='BibVolume'>9</em> (<span class='BibNumber'>5-6</span>)
 (<span class='BibYear'>1990</span>),
 <span class='BibPages'>699–705</span><br />
(<span class='BibNote'>Computational group theory, Part 1</span>).
</p>


<p><a id="biBSims94" name="biBSims94"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1267733">Sim94</a></span>]   <b class='BibAuthor'>Sims, C. C.</b>,
 <i class='BibTitle'>Computation with finitely presented groups</i>,
 <span class='BibPublisher'>Cambridge University Press</span>,
 <span class='BibSeries'>Encyclopedia of Mathematics and its Applications</span>,
 <em class='BibVolume'>48</em>,
 <span class='BibAddress'>Cambridge</span>
 (<span class='BibYear'>1994</span>),
 <span class='BibPages'>xiii+604 pages</span>.
</p>


<p><a id="biBSims97" name="biBSims97"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1810006">Sim97</a></span>]   <b class='BibAuthor'>Sims, C. C.</b> (<span class='BibEditor'>Küchlin, W.</span>, Ed.),
 <i class='BibTitle'>Computing with subgroups of automorphism groups of finite
              groups</i>,
  in  <i class='BibBooktitle'>Proceedings of the 1997 International Symposium on Symbolic
              and Algebraic Computation (Kihei, HI)</i>,
 <span class='BibOrganization'>The Association for Computing Machinery</span>,
 <span class='BibPublisher'>ACM</span>,
 <span class='BibAddress'>New York</span>
 (<span class='BibYear'>1997</span>),
 <span class='BibPages'>400–403 (electronic)</span><br />
(<span class='BibNote'>Held in Kihei, HI, July 21–23, 1997</span>).
</p>


<p><a id="biBMS85" name="biBMS85"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=797178">SM85</a></span>]   <b class='BibAuthor'>Soicher, L. and McKay, J.</b>,
 <i class='BibTitle'>Computing Galois groups over the rationals</i>,
 <span class='BibJournal'>J. Number Theory</span>,
 <em class='BibVolume'>20</em> (<span class='BibNumber'>3</span>)
 (<span class='BibYear'>1985</span>),
 <span class='BibPages'>273–281</span>.
</p>


<p><a id="biBSou94" name="biBSou94"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1213836">Sou94</a></span>]   <b class='BibAuthor'>Souvignier, B.</b>,
 <i class='BibTitle'>Irreducible finite integral matrix groups of degree \(8\)
      and
              \(10\)</i>,
 <span class='BibJournal'>Math. Comp.</span>,
 <em class='BibVolume'>63</em> (<span class='BibNumber'>207</span>)
 (<span class='BibYear'>1994</span>),
 <span class='BibPages'>335–350</span><br />
(<span class='BibNote'>With microfiche supplement</span>).
</p>


<p><a id="biBSpa89" name="biBSpa89"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>SPA89</span>]   
 <i class='BibTitle'>SPAS - Subgroup Presentation Algorithms
  System, version 2.5, User's reference manual</i>,
 <span class='BibOrganization'>Lehrstuhl   D   für  Mathematik,
                      Rheinisch               Westfälische
                      Technische Hochschule</span>,
 <span class='BibAddress'>Aachen, Germany</span>
 (<span class='BibYear'>1989</span>).
</p>


<p><a id="biBTay87" name="biBTay87"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Tay87</span>]   <b class='BibAuthor'>Taylor, D. E.</b>,
<a href="https://arxiv.org/abs/2201.09155"><i class='BibTitle'>Pairs of Generators for Matrix Groups. I</i></a>,
 <span class='BibJournal'>The Cayley Bulletin</span>,
 <em class='BibVolume'>3</em>
 (<span class='BibYear'>1987</span>).
</p>


<p><a id="biBTheissen93" name="biBTheissen93"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>The93</span>]   <b class='BibAuthor'>Theißen, H.</b>,
 <i class='BibTitle'>Methoden zur Bestimmung der rationalen Konjugiertheit
                      in endlichen Gruppen</i>,
 <span class='BibType'>Diplomarbeit</span>,
 <span class='BibSchool'>Lehrstuhl   D   für  Mathematik,
                      Rheinisch               Westfälische
                      Technische Hochschule</span>,
 <span class='BibAddress'>Aachen, Germany</span>
 (<span class='BibYear'>1993</span>).
</p>


<p><a id="biBTheissen97" name="biBTheissen97"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>The97</span>]   <b class='BibAuthor'>Theißen, H.</b>,
 <i class='BibTitle'>Eine    Methode    zur    Normalisatorberechnung   in
                      Permutationsgruppen  mit  Anwendungen in
                      der Konstruktion primitiver Gruppen</i>,
 <span class='BibType'>Dissertation</span>,
 <span class='BibSchool'>Rheinisch               Westfälische
                      Technische Hochschule</span>,
 <span class='BibAddress'>Aachen, Germany</span>
 (<span class='BibYear'>1997</span>).
</p>


<p><a id="biBTho86" name="biBTho86"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=842445">Tho86</a></span>]   <b class='BibAuthor'>Thompson, J. G.</b>,
<a href="https://doi.org/10.1007/BFb0076176"><i class='BibTitle'>Some finite groups which appear as \({\rm Gal}\,L/K,\)
      where
              \(K\subseteq {\bf Q}(\mu_n)\)</i></a>,
  in  <i class='BibBooktitle'>Group theory, Beijing 1984</i>,
 <span class='BibPublisher'>Springer, Berlin</span>,
 <span class='BibSeries'>Lecture Notes in Math.</span>,
 <em class='BibVolume'>1185</em>
 (<span class='BibYear'>1986</span>),
 <span class='BibPages'>210–230</span>.
</p>


<p><a id="biBvdW76" name="biBvdW76"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=0424931">vdW76</a></span>]   <b class='BibAuthor'>van der Waall, R. W.</b>,
 <i class='BibTitle'>On symplectic primitive modules and monomial groups</i>,
 <span class='BibJournal'>Nederl. Akad. Wetensch. Proc. Ser. A 79, Indag.
      Math.</span>,
 <em class='BibVolume'>38</em> (<span class='BibNumber'>4</span>)
 (<span class='BibYear'>1976</span>),
 <span class='BibPages'>362–375</span>.
</p>


<p><a id="biBWagon90" name="biBWagon90"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1041889">Wag90</a></span>]   <b class='BibAuthor'>Wagon, S.</b>,
 <i class='BibTitle'>Editor's corner: the Euclidean algorithm strikes again</i>,
 <span class='BibJournal'>Amer. Math. Monthly</span>,
 <em class='BibVolume'>97</em> (<span class='BibNumber'>2</span>)
 (<span class='BibYear'>1990</span>),
 <span class='BibPages'>125–129</span>.
</p>


<p><a id="biBwielandt69" name="biBwielandt69"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Wie69</span>]   <b class='BibAuthor'>Wielandt, H.</b>,
 <i class='BibTitle'>Permutation  groups  through  invariant  relations and
                      invariant functions</i>,
 <span class='BibType'>Lecture Notes</span>,
 <span class='BibOrganization'>Department of Mathematics, The Ohio State
      University</span>
 (<span class='BibYear'>1969</span>).
</p>


<p><a id="biBZagier90" name="biBZagier90"></a></p>
<p class='BibEntry'>
[<span class='BibKeyLink'><a href="https://www.ams.org/mathscinet-getitem?mr=1041893">Zag90</a></span>]   <b class='BibAuthor'>Zagier, D.</b>,
 <i class='BibTitle'>A one-sentence proof that every prime \(p \equiv 1 \pmod 4\)
      is a sum of two squares</i>,
 <span class='BibJournal'>Amer. Math. Monthly</span>,
 <em class='BibVolume'>97</em> (<span class='BibNumber'>2</span>)
 (<span class='BibYear'>1990</span>),
 <span class='BibPages'>144</span>.
</p>


<p><a id="biBZum89" name="biBZum89"></a></p>
<p class='BibEntry'>
[<span class='BibKey'>Zum89</span>]   <b class='BibAuthor'>Zumbroich, M.</b>,
 <i class='BibTitle'>Grundlagen        einer        Arithmetik       in
                      Kreisteilungskörpern       und      ihre
                      Implementation in CAS</i>,
 <span class='BibType'>Diplomarbeit</span>,
 <span class='BibSchool'>Lehrstuhl   D   für  Mathematik,
                      Rheinisch               Westfälische
                      Technische Hochschule</span>,
 <span class='BibAddress'>Aachen, Germany</span>
 (<span class='BibYear'>1989</span>).
</p>

<p> </p>


<div class="chlinkprevnextbot">&nbsp;<a href="chap0_mj.html">[Top of Book]</a>&nbsp;  <a href="chap0_mj.html#contents">[Contents]</a>&nbsp;  &nbsp;<a href="chap87_mj.html">[Previous Chapter]</a>&nbsp;  &nbsp;<a href="chapInd_mj.html">[Next Chapter]</a>&nbsp;  </div>


<div class="chlinkbot"><span class="chlink1">Goto Chapter: </span><a href="chap0_mj.html">Top</a>  <a href="chap1_mj.html">1</a>  <a href="chap2_mj.html">2</a>  <a href="chap3_mj.html">3</a>  <a href="chap4_mj.html">4</a>  <a href="chap5_mj.html">5</a>  <a href="chap6_mj.html">6</a>  <a href="chap7_mj.html">7</a>  <a href="chap8_mj.html">8</a>  <a href="chap9_mj.html">9</a>  <a href="chap10_mj.html">10</a>  <a href="chap11_mj.html">11</a>  <a href="chap12_mj.html">12</a>  <a href="chap13_mj.html">13</a>  <a href="chap14_mj.html">14</a>  <a href="chap15_mj.html">15</a>  <a href="chap16_mj.html">16</a>  <a href="chap17_mj.html">17</a>  <a href="chap18_mj.html">18</a>  <a href="chap19_mj.html">19</a>  <a href="chap20_mj.html">20</a>  <a href="chap21_mj.html">21</a>  <a href="chap22_mj.html">22</a>  <a href="chap23_mj.html">23</a>  <a href="chap24_mj.html">24</a>  <a href="chap25_mj.html">25</a>  <a href="chap26_mj.html">26</a>  <a href="chap27_mj.html">27</a>  <a href="chap28_mj.html">28</a>  <a href="chap29_mj.html">29</a>  <a href="chap30_mj.html">30</a>  <a href="chap31_mj.html">31</a>  <a href="chap32_mj.html">32</a>  <a href="chap33_mj.html">33</a>  <a href="chap34_mj.html">34</a>  <a href="chap35_mj.html">35</a>  <a href="chap36_mj.html">36</a>  <a href="chap37_mj.html">37</a>  <a href="chap38_mj.html">38</a>  <a href="chap39_mj.html">39</a>  <a href="chap40_mj.html">40</a>  <a href="chap41_mj.html">41</a>  <a href="chap42_mj.html">42</a>  <a href="chap43_mj.html">43</a>  <a href="chap44_mj.html">44</a>  <a href="chap45_mj.html">45</a>  <a href="chap46_mj.html">46</a>  <a href="chap47_mj.html">47</a>  <a href="chap48_mj.html">48</a>  <a href="chap49_mj.html">49</a>  <a href="chap50_mj.html">50</a>  <a href="chap51_mj.html">51</a>  <a href="chap52_mj.html">52</a>  <a href="chap53_mj.html">53</a>  <a href="chap54_mj.html">54</a>  <a href="chap55_mj.html">55</a>  <a href="chap56_mj.html">56</a>  <a href="chap57_mj.html">57</a>  <a href="chap58_mj.html">58</a>  <a href="chap59_mj.html">59</a>  <a href="chap60_mj.html">60</a>  <a href="chap61_mj.html">61</a>  <a href="chap62_mj.html">62</a>  <a href="chap63_mj.html">63</a>  <a href="chap64_mj.html">64</a>  <a href="chap65_mj.html">65</a>  <a href="chap66_mj.html">66</a>  <a href="chap67_mj.html">67</a>  <a href="chap68_mj.html">68</a>  <a href="chap69_mj.html">69</a>  <a href="chap70_mj.html">70</a>  <a href="chap71_mj.html">71</a>  <a href="chap72_mj.html">72</a>  <a href="chap73_mj.html">73</a>  <a href="chap74_mj.html">74</a>  <a href="chap75_mj.html">75</a>  <a href="chap76_mj.html">76</a>  <a href="chap77_mj.html">77</a>  <a href="chap78_mj.html">78</a>  <a href="chap79_mj.html">79</a>  <a href="chap80_mj.html">80</a>  <a href="chap81_mj.html">81</a>  <a href="chap82_mj.html">82</a>  <a href="chap83_mj.html">83</a>  <a href="chap84_mj.html">84</a>  <a href="chap85_mj.html">85</a>  <a href="chap86_mj.html">86</a>  <a href="chap87_mj.html">87</a>  <a href="chapBib_mj.html">Bib</a>  <a href="chapInd_mj.html">Ind</a>  </div>

<hr />
<p class="foot">generated by <a href="https://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc">GAPDoc2HTML</a></p>
</body>
</html>