Symbolic product in Sage?
Suppose I'd like to compute
prod(1/x^4, x, 1, oo)
How can this be done?
I found an old thread, but with no answers.
Suppose I'd like to compute
prod(1/x^4, x, 1, oo)
How can this be done?
I found an old thread, but with no answers.
Take the natural logarithm of your product and you get a sum which can be evaluated:
ln(k∏x=11x4)=k∑x=1ln(1x4)
... now take the limit as k→∞:
sage: sum(ln(1/x^4), x, 1, oo)
-Infinity
sage: e^sum(ln(1/x^4), x, 1, oo)
0
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
I found symbolic sum but not symbolic product in the reference files. I need to be able to classify a function of a erratic x which involve several symbolic foodstuffs from 1 to n or whatever. I then want to be able to do a derivative and a limit of this. I am trying out Sage because Mathematical doesn't seem to be able to handle this stuff exactly. I can define the function just fine but when I try to take the limit Mathematical can't seem to handle it.
Am... Great, but why post it here?
Asked: 12 years ago
Seen: 2,933 times
Last updated: Apr 16 '20