[back] [prev] [next] [index] [root]

 


Ideal

Creates an ideal defined by the arguments.

Syntax:

I := Ideal(e);
I := Ideal(o, n);
I := Ideal(e, f);
I := Ideal(n, e);
I := Ideal(o, M, d);
I := Ideal(o, MO);

Ideal
  I  
algebraic element
  e  
algebraic element
  f  
order over Z
  o  
matrix
  M  
of integers
integer
  d  
denominator of M
integer
  n  
module
  MO  
over the coefficient order of o

Description:

no detailed description available yet


Example:

All examples will be in the equation order of x^3+6x^2+6x+6. Here we will create \tt alpha*o using different methods:

kash> o := Order(Poly(Zx, [1, 6, 6, 6]));;
kash> alpha := Elt(o, [0,1,0]);
[0, 1, 0]
kash> I := Ideal(alpha);
<[0, 1, 0]>
kash> I := alpha*o;
> <[0, 1, 0]>


<- back[back] [prev] [next] [index] [root]