Small primes of degree one#
Iterator for finding several primes of absolute degree one of a number field of small prime norm.
Algorithm:
Let
Let
We know that
Warning
It is possible that there are no primes of
To do:
There are situations when this will fail. There are questions of finding primes of relative degree one. There are questions of finding primes of exact degree larger than one. In short, if you can contribute, please do!
EXAMPLES:
sage: x = ZZ['x'].gen()
sage: F.<a> = NumberField(x^2 - 2)
sage: Ps = F.primes_of_degree_one_list(3)
sage: Ps # random
[Fractional ideal (2*a + 1), Fractional ideal (-3*a + 1), Fractional ideal (-a + 5)]
sage: [ P.norm() for P in Ps ] # random
[7, 17, 23]
sage: all(ZZ(P.norm()).is_prime() for P in Ps)
True
sage: all(P.residue_class_degree() == 1 for P in Ps)
True
The next two examples are for relative number fields.:
sage: L.<b> = F.extension(x^3 - a)
sage: Ps = L.primes_of_degree_one_list(3)
sage: Ps # random
[Fractional ideal (17, b - 5), Fractional ideal (23, b - 4), Fractional ideal (31, b - 2)]
sage: [ P.absolute_norm() for P in Ps ] # random
[17, 23, 31]
sage: all(ZZ(P.absolute_norm()).is_prime() for P in Ps)
True
sage: all(P.residue_class_degree() == 1 for P in Ps)
True
sage: M.<c> = NumberField(x^2 - x*b^2 + b)
sage: Ps = M.primes_of_degree_one_list(3)
sage: Ps # random
[Fractional ideal (17, c - 2), Fractional ideal (c - 1), Fractional ideal (41, c + 15)]
sage: [ P.absolute_norm() for P in Ps ] # random
[17, 31, 41]
sage: all(ZZ(P.absolute_norm()).is_prime() for P in Ps)
True
sage: all(P.residue_class_degree() == 1 for P in Ps)
True
AUTHORS:
Nick Alexander (2008)
David Loeffler (2009): fixed a bug with relative fields
Maarten Derickx (2017): fixed a bug with number fields not generated by an integral element
- class sage.rings.number_field.small_primes_of_degree_one.Small_primes_of_degree_one_iter(field, num_integer_primes=10000, max_iterations=100)#
Bases:
object
Iterator that finds primes of a number field of absolute degree one and bounded small prime norm.
INPUT:
field
– aNumberField
.num_integer_primes
(default: 10000) – an integer. We try to find primes of absolute norm no greater than thenum_integer_primes
-th prime number. For example, ifnum_integer_primes
is 2, the largest norm found will be 3, since the second prime is 3.max_iterations
(default: 100) – an integer. We testmax_iterations
integers to find small primes before raisingStopIteration
.
AUTHOR:
Nick Alexander
- next()#
Return a prime of absolute degree one of small prime norm.
Raises
StopIteration
if such a prime cannot be easily found.EXAMPLES:
sage: x = QQ['x'].gen() sage: K.<a> = NumberField(x^2 - 3) sage: it = K.primes_of_degree_one_iter() sage: [ next(it) for i in range(3) ] # random [Fractional ideal (2*a + 1), Fractional ideal (-a + 4), Fractional ideal (3*a + 2)]