File: algfld.xml

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 (109 lines) | stat: -rw-r--r-- 3,719 bytes parent folder | download | duplicates (3)
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
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -->
<!-- %% -->
<!-- %A  algfld.xml                 GAP documentation             Alexander Hulpke -->
<!-- %% -->
<!-- %% -->
<!-- %Y  (C) 1998 School Math and Comp. Sci., University of St Andrews, Scotland -->
<!-- %Y  Copyright (C) 2002 The GAP Group -->
<!-- %% -->
<Chapter Label="Algebraic extensions of fields">
<Heading>Algebraic extensions of fields</Heading>

If we adjoin a root <M>\alpha</M> of an irreducible polynomial <M>f \in K[x]</M> to
the field <M>K</M> we get an <E>algebraic extension</E> <M>K(\alpha)</M>, which is again
a field. We call <M>K</M> the <E>base field</E> of <M>K(\alpha)</M>.
<P/>
By Kronecker's construction, we may identify <M>K(\alpha)</M> with
the factor ring <M>K[x]/(f)</M>, an identification that also provides a method
for computing in these extension fields.
<P/>
It is important to note that different extensions of the same field are
entirely different (and its elements lie in different families), even if
mathematically one could be embedded in the other one.
<P/>
Currently &GAP; only allows extension fields of fields <M>K</M>, when <M>K</M>
itself is not an extension field.


<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -->
<Section Label="Creation of Algebraic Extensions">
<Heading>Creation of Algebraic Extensions</Heading>

<#Include Label="AlgebraicExtension">
<#Include Label="IsAlgebraicExtension">

</Section>


<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -->
<Section Label="Elements in Algebraic Extensions">
<Heading>Elements in Algebraic Extensions</Heading>

<Index>Operations for algebraic elements</Index>
According to Kronecker's construction, the elements of an algebraic
extension are considered to be polynomials in the primitive element.
The elements of the base field are represented as polynomials of degree zero.
&GAP; therefore displays elements of an algebraic extension as polynomials
in an indeterminate <Q>a</Q>, which is a root of the defining polynomial of the
extension.
Polynomials of degree zero are displayed with a leading exclamation mark to
indicate that they are different from elements of the base field.
<P/>
The usual field operations are applicable to algebraic elements.
<P/>
<Example><![CDATA[
gap> a^3/(a^2+a+1);
-1/2*a^3+1/2*a^2-1/2*a
gap> a*(1/a);
!1
]]></Example>
<P/>
The external representation of algebraic extension elements are the
polynomial coefficients in the primitive element <C>a</C>,
the operations <Ref Oper="ExtRepOfObj"/> and <Ref Oper="ObjByExtRep"/>
can be used for conversion.
<P/>
<Example><![CDATA[
gap> ExtRepOfObj(One(a));
[ 1, 0, 0, 0 ]
gap> ExtRepOfObj(a^3+2*a-9);
[ -9, 2, 0, 1 ]
gap> ObjByExtRep(FamilyObj(a),[3,19,-27,433]);
433*a^3-27*a^2+19*a+3
]]></Example>
<P/>
&GAP; does <E>not</E> embed the base field in its algebraic extensions and
therefore lists which contain elements of the base field and of the
extension are not homogeneous and thus cannot be used as polynomial
coefficients or to form matrices. The remedy is to multiply the
list(s) with the value of the attribute <Ref Attr="One"/> of the extension
which will embed all entries in the extension.
<P/>
<Example><![CDATA[
gap> m:=[[1,a],[0,1]];
[ [ 1, a ], [ 0, 1 ] ]
gap> IsMatrix(m);
false
gap> m:=m*One(e);
[ [ !1, a ], [ !0, !1 ] ]
gap> IsMatrix(m);
true
gap> m^2;
[ [ !1, 2*a ], [ !0, !1 ] ]
]]></Example>

<#Include Label="IsAlgebraicElement">

</Section>


<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -->
<Section Label="Finding Subfields">
<Heading>Finding Subfields</Heading>

<#Include Label="IdealDecompositionsOfPolynomial">

</Section>
</Chapter>