I need to calculate (X + a)^n mod (n, X^r - 1), where n can be very large.
I use the following code:
R.<x>=PolynomialRing(Integers(n)) pow(x + a, n, X^r - 1)
A better (i.e. faster) solution?
Thanks.
| 1 | initial version | |
I need to calculate (X + a)^n mod (n, X^r - 1), where n can be very large.
I use the following code:
R.<x>=PolynomialRing(Integers(n)) pow(x + a, n, X^r - 1)
A better (i.e. faster) solution?
Thanks.
| 2 | retagged |
I need to calculate (X + a)^n mod (n, X^r - 1), where n can be very large.
I use the following code:
R.<x>=PolynomialRing(Integers(n)) pow(x + a, n, X^r - 1)
A better (i.e. faster) solution?
Thanks.
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.