[18072] in Athena Bugs
Re: Maple bug
daemon@ATHENA.MIT.EDU (Abby Fox)
Mon Jul 31 08:51:58 2000
Message-Id: <200007311251.IAA26032@whirlwind.mit.edu>
To: nickw@MIT.EDU
In-Reply-To: "[757] in 3partysw", "[18049] in bugs"
Cc: bugs@MIT.EDU, 3partysw@MIT.EDU
Date: Mon, 31 Jul 2000 08:51:54 -0400
From: Abby Fox <ajfox@MIT.EDU>
I've reported this to Maplesoft and will let you know what they have to
say; in general it's best to advise users always to double-check answers
from int, solve etc.
In the meantime, I found that it seems to give the correct answer if you
do:
> f:=((3/2)^2)/(t^(5/2)*(s-t)^(5/2));
1
f := 9/4 ---------------
5/2 5/2
t (s - t)
> int(simplify(f),t=1..(s-1));
2 3
6 s - 24 s + s + 16
3 ---------------------
3/2 4
(s - 1) s
--Abby
P.S. If you're curious about the difference between what it's doing
internally for the original integral vs. the above, try setting
> infolevel[int]:=5:
before you use int.