Search All of the Math Forum:
Views expressed in these public forums are not endorsed by
Drexel University or The Math Forum.
|
|
|
|
Re: rational functions over Z/p
Posted:
Oct 18, 2011 3:13 AM
|
|
In Maple use "Normal(f) mod p" to simplify a rational function f modulo a prime p, e.g.:
f := (x^2-y^2)/(x^2-y^2+x-y); Normal(f) mod 2;
returns (x+y)/(x+y+1);
|
|
|
|