Let {x},{y}>0 and {a},{b}>0. can the function log(1+ax+by) be expressed as a Meijer-G function?
Asked
Active
Viewed 140 times
1 Answers
1
This is meant to be an outline of an answer. The details of arguments for the Meijer-G functions still need to be filled in:
z[x_, y_] = a1 x + b2 y;
\[Alpha] = Evaluate@MeijerGReduce[Log[1 + z[x, y]], z[x, y]];
\[Beta] = MeijerG[{{}, {}}, {{}, {}}, a2 x];
\[Gamma] = MeijerG[{{}, {}}, {{}, {}}, b2 y];
f = \[Alpha] \[Beta] \[Gamma];
Integrate[f, {x, 0, \[Infinity]}, {y, 0, \[Infinity]}]
mjw
- 8,647
- 1
- 8
- 23
MeijerGReduceas suggested, and alsoIntegrate. Make an attempt at writing your expression in Mathematica. I am pretty sure that with this effort, you will have a few people at this site giving valuable help! – Mar 17 '19 at 20:16MeijerGReduce? – mikado Mar 17 '19 at 18:41as a close-form expression.
– fatimaaa Mar 17 '19 at 19:02f = ...; Integrate[f, {x, 0, \[Infinity]}, {y, 0, \[Infinity]}];– Mar 17 '19 at 20:19