1 | initial version |
In Sage, sum
serves both for Python sums and for symbolic sums,
but for products we have prod
and product
.
sage: product(1/x^4, x, 1, oo)
0
2 | No.2 Revision |
In Sage, sum
serves both for Python sums and for symbolic sums,
but for products we have prod
and product
.
sage: product(1/x^4, x, 1, oo)
0
This should be better documented... See