File: cyclotomic.mpt

package info (click to toggle)
mathpiper 0.0.svn2556-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 7,416 kB
  • ctags: 2,729
  • sloc: java: 21,643; xml: 751; sh: 105; makefile: 5
file content (8 lines) | stat: -rw-r--r-- 231 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
NextTest("Cyclotomic Polynomials");

Verify(Cyclotomic(1,x),x-1);
Verify(Cyclotomic(5,x),x^4+x^3+x^2+x+1);
Verify(Cyclotomic(8,z),z^4+1);
Verify(Cyclotomic(10,y),y^4-y^3+y^2-y+1);
Verify(Cyclotomic(15,x),x^8-x^7+x^5-x^4+x^3-x+1);