extField p / extField {p, p', ...}
extField(F, p) / extField(F, {p, p', ...})
splittingField p
splittingField(F, p)
Methods for defining field extensions. The method extField accepts an irreducible polynomial p and adds one of its zeros into the base field. The base field can itself be a simple extension represented by a primitive element, in which case a new primitive element is computed. Use the option Variable to specify the symbol used for the primitive element (the default is a like GaloisField). N.B. Any data previously stored in this symbol will be lost! As is the case for GaloisField.
Here we first add i into the rational numbers. Similar to toField, the variable used in the polynomial will be set to its image in the extension, but note that this is not necessarily the primitive element.
|
|
|
Now we perform another field extension over F by adding the square root of 2. A new primitive element a will be computed.
|
|
|
For elements of the base field F, we can use baseChange to determine their images in the extension field F'.
|
|
It is also possible to do multiple extensions at the same time. Note that x is now set to i/2, so in order to use it as a variable we need to use symbol to reclaim it.
|
When passing a list of polynomials, the variable x will not be set. This can also be used for one polynomial to avoid setting the value of x.
|
Repeatedly applying extField using the same polynomial will add all its zeros into the field. This can also be done using the method splittingField. For example we may construct the splitting field of x^3-2 as follows.
|
|
|
Over finite fields, the degree is first computed while the rest is handled by GaloisField.
|
|
|
If PARI/GP is available on the system, the program will try to use the function polredbest to reduce the minimal polynomial. This will give an equivalent but usually much optimal result. Note that for large inputs, one could increase the pari stack size by using setPariSize n.
The object extField is a method function with options.
The source of this document is in RationalPoints2.m2:1025:0.