|
7.5.2.0. reiffen
Procedure from library dmod.lib (see dmod_lib).
- Usage:
- reiffen(p, q); int p, int q
- Return:
- ring
- Purpose:
- set up the polynomial, describing a Reiffen curve
- Note:
- activate this ring with the
setring command and find the
curve as a polynomial RC
a Reiffen curve is defined as F = x^p + y^q + xy^{q-1}, q >= p+1 >= 5
- Assume:
- q >= p+1 >= 5. Otherwise an error message is returned
Example:
| LIB "dmod.lib";
def r = reiffen(4,5);
setring r;
RC;
==> xy4+y5+x4
|
|