DEtools
MeijerGsols
solutions of a Meijer G type of linear ode
Calling Sequence
Parameters
Description
Examples
References
MeijerGsols(lode,v)
MeijerGsols(coeff_list,x)
lode
-
homogeneous linear differential equation
v
dependent variable of the lode
coeff_list
list of coefficients of a linear ode
x
independent variable of the lode
The MeijerGsols routine returns a basis of the space of solutions of a linear differential equation of Meijer G type.
The classical notation used to represent the MeijerG function relates to the notation used in Maple by
Gpqmnz|a1,...,an,an+1,...,apb1,...,bm,bm+1,...,bq
=MeijerG⁡a1,...,an,an+1,...,ap,b1,...,bm,bm+1,...,bq,z
Note: See Prudnikov, Brychkov, and Marichev.
The MeijerG function satisfies the following qth-order linear differential equation
−1p−m−n⁢x⁢∏i=1p⁡x⁢D−ai+1−∏i=1q⁡x⁢D−bi⁢y⁡x=0
where D=ddx and p is less than or equal to q.
For example, MeijerG( [[a[1]],[a[p]]], [[b[1]],[b[q]]], x ) satisfies:
PDEtools[declare](y(x), prime=x);
y⁡x⁢will now be displayed as⁢y
derivatives with respect to⁢x⁢of functions of one variable will now be displayed with '
DEtools[hyperode]( MeijerG( [[a[1]],[a[p]]], [[b[1]],[b[q]]], x ), y(x) ) = 0;
For information about making symbolic experiments with expressions that contain the MeijerG function of different arguments and the differential equation the expression satisfies, see dpolyform.
MeijerGsols accepts two calling sequences. The first argument of the first calling sequence is a linear differential equation in diff or D form, and the second argument is the function in the differential equation.
The first argument in the second calling sequence is the list of coefficients of a linear ode, and the second is the independent variable. This calling sequence can be convenient for programming with the MeijerGsols routine.
This function is part of the DEtools package, and so it can be used in the form MeijerGsols(..) only after executing the command with(DEtools). However, it can always be accessed through the long form of the command by using DEtools[MeijerGsols](..).
with(DEtools):
ode := diff(y(x),x,x) = (4-2*x^2)/(x^3-x)*diff(y(x),x)-7/(4*x^4-4*x^2)*y(x);
ode≔y''=−2⁢x2+4⁢y'x3−x−7⁢y4⁢x4−4⁢x2
MeijerGsols(ode);
hypergeom⁡−74,14,12,1x2,hypergeom⁡−54,34,32,1x2x
These routines for tackling MeijerG type linear ODEs can also be used directly from Maple's dsolve via
dsolve(ode, [MeijerG]);
y=c__1⁢hypergeom⁡−74,14,12,1x2+c__2⁢hypergeom⁡−54,34,32,1x2x
MeijerGsols([x^2-3,-x,x^2], x );
x⁢BesselJ⁡2,x,x⁢BesselY⁡2,x
A := mult(x*DF-1/4,x*DF-1,x*DF-1/3,[DF,x]) - x^b*mult(x*DF+2/3,x*DF-1/2,[DF,x]):
ode := diffop2de(A,y(x),[DF,x]);
ode≔−112+xb3⁢y+x12−7⁢xb⁢x6⁢y'+17⁢x212−xb⁢x2⁢y''+x3⁢y'''
x⁢hypergeom⁡53⁢b,12⁢b,3⁢b+23⁢b,4⁢b+34⁢b,xbb,x14⁢hypergeom⁡−14⁢b,1112⁢b,4⁢b−34⁢b,12⁢b−112⁢b,xbb,x13⁢hypergeom⁡1b,−16⁢b,3⁢b−23⁢b,12⁢b+112⁢b,xbb
Prudnikov, A. P.; Brychkov, Yu; and Marichev, O. Integrals and Series. Gordon and Breach Science, 1990. Vol. 3: More Special Functions.
See Also
D
diff
dpolyform
dsolve
hyperode
Download Help Document