Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.soft-sys.math.maple > #879

Re: int operator with various versions of Maple

X-Received by 10.58.218.232 with SMTP id pj8mr2265931vec.3.1401342625232; Wed, 28 May 2014 22:50:25 -0700 (PDT)
X-Received by 10.182.137.129 with SMTP id qi1mr1748obb.37.1401342624819; Wed, 28 May 2014 22:50:24 -0700 (PDT)
Path csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!news.glorb.com!c1no19689529igq.0!news-out.google.com!qf4ni17234igc.0!nntp.google.com!c1no19689527igq.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail
Newsgroups comp.soft-sys.math.maple
Date Wed, 28 May 2014 22:50:24 -0700 (PDT)
In-Reply-To <4b136f4d-0c47-471e-bce6-0690651576e0@googlegroups.com>
Complaints-To groups-abuse@google.com
Injection-Info glegroupsg2000goo.googlegroups.com; posting-host=99.225.34.184; posting-account=fuODWQoAAACwKFkiR1AZOPqJMnEnSkk2
NNTP-Posting-Host 99.225.34.184
References <4b136f4d-0c47-471e-bce6-0690651576e0@googlegroups.com>
User-Agent G2/1.0
MIME-Version 1.0
Message-ID <5dfd1cac-610a-4b76-bfd1-c58eaedfce9e@googlegroups.com> (permalink)
Subject Re: int operator with various versions of Maple
From acer <maple@rogers.com>
Injection-Date Thu, 29 May 2014 05:50:24 +0000
Content-Type text/plain; charset=ISO-8859-1
Content-Transfer-Encoding quoted-printable
Xref csiph.com comp.soft-sys.math.maple:879

Show key headers only | View raw


Le mardi 27 mai 2014 22:38:29 UTC-4, pluton a écrit :
> Hello,
> 
> if you type: 
> 
> > assume(0<d,d<1);
> 
> > int(cos(theta)*sin(theta)/(1+d*cos(theta))^3,theta=0..Pi);
> 
> on various versions of Maple, you will notice that the output varies. A closed-form solution is given with versions 6 and 16 for instance (the final expression is not the same though), while version 13 fails (as far as I know). This is fairly annoying. 


I see success for that example in Maple 13.02 (64bit Windows), and also for 11.02, 12.02, 14.01, 15.01, 16.02, 17.02, and 18.01.

In each of those the result was as follows for 13.02,

restart:
assume(0<d,d<1); 

int(cos(theta)*sin(theta)/(1+d*cos(theta))^3,theta=0..Pi);

                                     2 d~               
                    - ----------------------------------
                      /      2       \ /              2\
                      \1 + d~  + 2 d~/ \-2 d~ + 1 + d~ /

kernelopts(version);

          Maple 13.02, X86 64 WINDOWS, Oct 12 2009, Build ID 436951


Those results were all generated by the `ftoc` method.

In later versions a variant with the denominator factored could also be obtained with the method=ftocms option.

restart:

assume(0<d,d<1); 

int(cos(theta)*sin(theta)/(1+d*cos(theta))^3,theta=0..Pi,method=ftocms);

                               2 d       
                      - -----------------
                               2        2
                        (1 + d)  (d - 1) 

kernelopts(version);

   Maple 18.01, X86 64 WINDOWS, Mar 28 2014, Build ID 935137


There may be some other example which regressed. But I don't see it for this one (on those 64bit Windows versions listed).

No, you cannot instruct `int` to act as in a previous version. You can instruct it to try various methods for symbolic definite integration, however.

Back to comp.soft-sys.math.maple | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

int operator with various versions of Maple pluton <plutonesque@gmail.com> - 2014-05-27 19:38 -0700
  Re: int operator with various versions of Maple "Nasser M. Abbasi" <nma@12000.org> - 2014-05-28 18:03 -0500
  Re: int operator with various versions of Maple acer <maple@rogers.com> - 2014-05-28 22:50 -0700
    Re: int operator with various versions of Maple pluton <plutonesque@gmail.com> - 2014-06-02 06:41 -0700
      Re: int operator with various versions of Maple acer <maple@rogers.com> - 2014-06-02 17:37 -0700
        Re: int operator with various versions of Maple pluton <plutonesque@gmail.com> - 2014-06-02 18:39 -0700

csiph-web