Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #32354: Fix integral(1/max_symbolic(x, 1)^2, x, 0, oo, algorithm…
…='giac') Compare {{{ sage: integral(1/max_symbolic(x,1)**2,x,0,oo,algorithm='maxima') integrate(max(1, x)^(-2), x, 0, +Infinity) sage: integral(1/max_symbolic(x,1)**2,x,0,oo,algorithm='sympy') 2 sage: integral(1/max_symbolic(x,1)**2,x,0,oo,algorithm='giac') +Infinity }}} The correct answer is sympy's answer. Related problem: {{{ sage: ex=1/max_symbolic(x,1)**2 sage: integral(ex,x,0,2,algorithm='giac') undef }}} URL: https://trac.sagemath.org/32354 Reported by: chapoton Ticket author(s): Frédéric Chapoton Reviewer(s): Travis Scrimshaw
- Loading branch information