Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered 1 year ago

dan_fulea gravatar image

Use the definition, there is a limit, write explicitly the limit in sage.

For instance, 11dxx makes no sense as it is, but we may want to compute instead PV11dxx=PV11dxx:=lima0PV[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.