[back] [prev] [next] [index] [root]
alpha := EltNewtonLift(o, a, f, p, k);
algebraic element | alpha |
|
order | o |
|
algebraic element | a |
|
polynomial | f |
|
integer | p |
|
integer | k |
kash> o:=Order(Poly(Zx,[1,0,-4,0,1])); Generating polynomial: x^4 - 4*x^2 + 1 kash> f:=Poly(Zx,[1,40,596,3920,9601]); x^4 + 40*x^3 + 596*x^2 + 3920*x + 9601 kash> a:=Elt(o,[0,4,0,0]); [0, 4, 0, 0] kash> b:=EltNewtonLift(o,a,f,5,2); [-10, -1, 0, 0] kash> Eval(f, b); > 0
<- back[back] [prev] [next] [index] [root]