How to get a minpoly with specified degee in Fp[x]
magichowl · Sat Oct 08, 2011 5:23 am
How to get a minpoly in Fp[x], p is prime
For example,
ring r= 3,x,dp;
How to get a minpoly with degree 2 ??
Though I can get a similar result
ring s = (9,a) ,y. dp;
minpoly;
//1*a^2+2*a^1+2*a^0
but I want substitute this poly in variable x to become a poly in ring r.
i thought of building a map
map m = r, a;
However, the preimage of the minpoly is not that I want.
For example,
ring r= 3,x,dp;
How to get a minpoly with degree 2 ??
Though I can get a similar result
ring s = (9,a) ,y. dp;
minpoly;
//1*a^2+2*a^1+2*a^0
but I want substitute this poly in variable x to become a poly in ring r.
i thought of building a map
map m = r, a;
However, the preimage of the minpoly is not that I want.