Conversion of Hypergeometric functions from Maple to Mathematica

227 Views Asked by At

After a calculation I found in Maple an expression of the kind: $$f(x)=hypergeom\left(\left[\dfrac{a}{b},1\right],\left[c,d\right],h\right)$$ What is the equivalent notation in Mathematica which I suppose is the standard notation? Thanks in advance.

1

There are 1 best solutions below

0
On BEST ANSWER

In Mathematica, it seems the syntax would be,

HypergeometricPFQ[{a/b,1},{c,d},h]

Checking how Maple translates that,

mmainput := `HypergeometricPFQ[{a/b,1},{c,d},h]`:

MmaTranslator:-FromMma(mmainput);

                    hypergeom([a/b, 1], [c, d], h)

Passing HypergeometricPFQ[{3/4,1},{2,3},1.1] to wolframalpha.com agrees with Maple evaluating hypergeom([3/4,1],[2,3],1.1) as 1.163416426.