Ruud H.G. van Tol on Thu, 23 Dec 2021 23:00:30 +0100
|
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
- To: pari-users@pari.math.u-bordeaux.fr
- Subject: Re: Maple gfun
- From: "Ruud H.G. van Tol" <rvtol@isolution.nl>
- Date: Thu, 23 Dec 2021 23:00:19 +0100
- Delivery-date: Thu, 23 Dec 2021 23:00:30 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=simple/simple; d=isolution.nl; s=soverin; t=1640296822; bh=trUxHkQa4ikYZuQ0u/kY4XUD9pVXv6KRcXhC0jeOrzs=; h=Date:Subject:To:References:From:In-Reply-To:From; b=fKEJFmubTXkojWp1db0x8QbZNeZsiGczJVVhu9aFfRC+icdlF6BpJstPDVynVAKh+ scjGog9mV4p6K4SdOKtWssTfx9dBN/20MCdDnkYm1a6E/JiHg6Q9KpkR3NvB6pDkni G1kd1kcNQ/tnIeHEcCsdQOd+K2kWGlPBuwRwqkjgmn7qaHwV1kZeSUwLOkFMcMoMzK o25XEZt9EDRY84U+CfEXOW2fyE/oOucTNApPhVhEoooOWtgVUwKu67GErQ0ftpK+Wb TXWo74lwLfbliyVqLENRv0fovJ1UyUMxmt2r1vn7UDsv+ErmGUhnGlJzRnLkQK8Nmp hQmS4Zh5orFgA==
- In-reply-to: <YcTMZ4KaX/kQIIJr@seventeen>
- References: <3348523a-a4ed-7022-a484-a138d1a9e339@isolution.nl> <YcMjmOmlDM8RPHRz@seventeen> <a3e7efd3-1f70-01fd-f2f3-e6c9b6298236@isolution.nl> <YcNLAo/u5zD+lOMw@seventeen> <YcTMZ4KaX/kQIIJr@seventeen>
On 2021-12-23 20:22, Bill Allombert wrote:
[...]
A new function (available in the git branch bill-serdiffdep).
? S=sum(i=0,20,binomial(3*i,i)*T^i)+O(T^21);
? serdiffdep(S,3,3)
%3 = [(27*T^2-4*T)*x^2+(54*T-2)*x+6,0]
So S satisfies the linear equation
(27*T^2-4*T)*S'' + (54*T-2)*S' +6*S = 0
? S=exp(T^2)+T^2
%4 =
%1+2*T^2+1/2*T^4+1/6*T^6+1/24*T^8+1/120*T^10+1/720*T^12+1/5040*T^14+1/40320*T^16+O(T^18)
? serdiffdep(S,3,3)
%5 = [x-2*T,-2*T^3+2*T]
So S satisfies the linear equation:
S'-2*T*S = -2*T^3+2*T
Is it what you are looking for ?
Nice!
I coined up gfun, because I was impressed by everything it can do.
I downloaded the package, and it has a textual maple code file,
with quite some data in it. I didn't parse it yet,
to see what the contents are.
Maple has a built in way to generate code:
https://www.maplesoft.com/support/help/Maple/view.aspx?path=CodeGeneration&cid=533
If I find the time, I'll let it transform
the gfun-module into something legible,
to find out more.
-- Ruud
- References:
- Maple gfun
- From: "Ruud H.G. van Tol" <rvtol@isolution.nl>
- Re: Maple gfun
- From: Bill Allombert <Bill.Allombert@math.u-bordeaux.fr>
- Re: Maple gfun
- From: "Ruud H.G. van Tol" <rvtol@isolution.nl>
- Re: Maple gfun
- From: Bill Allombert <Bill.Allombert@math.u-bordeaux.fr>
- Re: Maple gfun
- From: Bill Allombert <Bill.Allombert@math.u-bordeaux.fr>