![]() | 1 | initial version |
Use the definition, there is a limit, write explicitly the limit in sage.
For instance, ∫1−1dxx makes no sense as it is, but we may want to compute instead PV∫1−1dxx=PV∫1−1dxx:=lima↘0PV∫[−1,−a]∪[a,1]dxx . This can be easily implemented:
var('a,x')
assume(a>0);
assume(a<1);
limit( integral(1/x, x, -1, -a) + integral(1/x, x, a, 1), a=0 )
We get zero.