Sin( x y ) Image Border.

COMPUTING PRIMITIVE POLYNOMIALS


Overview

We present C++ software for a program which generates a primitive polynomial of degree n modulo p. You can also test a given polynomial for primitivity and find all primitive polynomials.

A sample run from the command line:

$ Primpoly 2 200

Primpoly Version 10.4 - A Program for Computing Primitive Polynomials. Copyright (C) 1999-2009 by Sean Erik O'Connor. All Rights Reserved. Primpoly comes with ABSOLUTELY NO WARRANTY; for details see the GNU General Public License. This is free software, and you are welcome to redistribute it under certain conditions; see the GNU General Public License for details.

Primitive polynomial modulo 2 of degree 200

Self-check passes...

x ^ 200 + x ^ 5 + x ^ 3 + x ^ 2 + 1, 2

Total time: 7 seconds on my MacBook Pro.

Features

Download

I'm currently optimizing the code for speed. You can also try the C version below which is faster for small n and p.

Source code and executables are distributed under the terms of the GNU General Public License. for Primpoly Version 10.4

Click on the Compact disk icon for source code download. to view and download.
Compact disk icon for source code download. Primpoly.cpp Main program.
Compact disk icon for source code download. Primpoly.h Header file containing parameters and constants.
Compact disk icon for source code download. ppArith.cpp Modulo p integer arithmetic.
Compact disk icon for source code download. ppArith.h Modulo p integer arithmetic class.
Compact disk icon for source code download. ppFactor.cpp Factoring into primes and primality testing.
Compact disk icon for source code download. ppFactor.h Factoring into primes and primality testing class.
Compact disk icon for source code download. ppOperationCount.cpp OperationCount collection.
Compact disk icon for source code download. ppOperationCount.h OperationCount class.
Compact disk icon for source code download. ppParser.cpp Polynomial I/O. I took the liberty of using my own LALR(1) parser generator on a simple polynomial grammar to automatically generate the parser. Here is the grammar and its LALR(1) parse tables. The C++ LR parser isn't hard to implement using STL vectors and the automatically generated parse tables above.
Compact disk icon for source code download. ppParser.h Polynomial I/O.
Compact disk icon for source code download. ppPolynomial.cpp Polynomial arithmetic.
Compact disk icon for source code download. ppPolynomial.h Polynomial arithmetic class.
Compact disk icon for source code download. ppBigInt.cpp Multiple precision integer arithmetic for non-negative numbers.
Compact disk icon for source code download. ppBigInt.h Multiple precision integer arithmetic class.
Compact disk icon for source code download. ppUnitTest.cpp Unit test function for all the classes and their member functions. Runs always and prints to a log file.
Compact disk icon for source code download. ppUnitTest.h Unit test function.
Compact disk icon for source code download. Bridge.h Needed only for the Mac Cocoa based GUI (in progress).
Compact disk icon for source code download. makefile Makefile for Macs, Unix systems and Windows systems running Cygwin.
Compact disk icon for source code download. knownGood.txt knownGoodC.txt Known good test results for automated unit test in makefile
Compact disk icon for source code download. PrimpolyMacExeZipSplit1.bin PrimpolyMacExeZipSplit2.bin PrimpolyMacExeZipSplit3.bin Compact disk icon for source code download. PrimpolyWinExeZipSplit1.bin PrimpolyWinExeZipSplit2.bin PrimpolyWinExeZipSplit3.bin Packed executables for Mac OS X 10.6 and Windows XP SP3: Merge the separate files in order, rename file extension to .zip then unzip. On Windows XP, use copy /b /v PrimpolyWinExeZipSplit?.bin Primpoly.zip to merge. The final file sizes should be 457,998 Primpoly.zip and 1,308,597 Primpoly.exe

Download C Version

This version is faster but has limits on the size of p and n since it uses native integer arithmetic. See the user manual for more details. For p=2 we can go as high as n=62.

Source code and executables are distributed under the terms of the GNU General Public License. for Primpoly Version 10.4

Click on the Compact disk icon for source code download. to view and download
Compact disk icon for source code download. Primpoly.c This is the main program.
Compact disk icon for source code download. Primpoly.h This is the header file containing parameters and constants.
Compact disk icon for source code download. ppHelperFunc.c High level helper functions.
Compact disk icon for source code download. ppArith.c Modulo p integer arithmetic, primitive root testing.
Compact disk icon for source code download. ppFactor.c Factoring into primes and primality testing.
Compact disk icon for source code download. ppIO.c Polynomial I/O.
Compact disk icon for source code download. ppPolyArith.c Polynomial arithmetic.
Compact disk icon for source code download. ppOrder.c Polynomial order testing.
Compact disk icon for source code download. makefile Makefile for Macs, Unix systems and Windows systems running Cygwin.
Compact disk icon for source code download. PrimpolyCMacExeZip.bin PrimpolyCWinExeZip.bin Packed executables for Mac OS X 10.6 and Windows XP SP3. Rename file extension to .zip then unzip.

Install and Run

On Mac OS X, I use the Xcode IDE; ona Windows platforms, I use the GNU Cygwin toolset for command line compiling and debugging; and on Unix systems, including Mac OS X, I use the built-in gcc compiler and gdb debugger. For online C++ language tutorials, books and references, see links to C++ documentation.

Uses for Primitive Polynomials:

Acknowledgements


Copyright © 1986-2009 by Sean Erik O'Connor. All Rights Reserved.     last updated 30 Aug 09.