W := (81/539)*42^(1/2)*hypergeom([-1/2, 3/8, 169/88], [81/88, 19/8], -1/6):
evalf(W,50);
0.99999999999999999999999999999999999999999999999996
Show W is 1
My attempts to crack this have not worked, but perhaps some of my ideas might be useful to someone else.
My favourite tactic is to transform such problems into DE problems, so
K := (81/539)*42^(1/2)*hypergeom([-1/2, 3/8, 169/88], [81/88, 19/8], -x/6):
de := collect(numer((lhs-rhs)(op([1,1],PDEtools[dpolyform](y(x)=K,no_Fn)))),diff,factor);
3rd order, as expected (but the stupid display of the <maple> tag is annoying here). The coefficients are not too nasty, and nicely the sqrt(42) has magically disappeared. Taking a look at the solution:
ans := rhs(dsolve(de));
[Again, the output in Classic is much nicer than here] Where does this come from? Well, the DE, as an operator, factors:
> DEtools[DFactor](DEtools[de2diffop](de,y(x),[Dx,x]),[Dx,x]);
2
2 3 48 (2875 x + 5911 x - 27378) x
[(8448 x + 1408 x ) Dx + -------------------------------,
-81 + 25 x
2 3
-1863 x + 82 x + 25 x + 972 -11 + 3 x
Dx + ---------------------------------, Dx + ------------]
2 x (-1 + x) (6 + x) (-81 + 25 x) 8 x (-1 + x)
Trying to figure out the values of the constants _C1, _C2 and _C3 turns out to be very hard since all 3 terms are singular at 0, so one would have to find out how to 'match' those singularities, which I have not been able to do. However, it might be useful to know that the problem is "reduced" to one involving algebraic integrals.
I have not tried to use any of the contiguity relations or quadratic transformations formulas for the 3F2 to see if somehow that can cause some of the arguments to 'collapse' and thereby simplify the problem. It's too bad that Maple does not have a 'transformations' package with these formulas as transformations one can apply.
has not worked for me, got just a double integral, it should stand for 3F2 =Int(2F1) = Int(Int(...)) using Euler's integral I guess ... and similar for trying sums :-(
My guess was that, somehow, the inner integrand might be the simplified result of adding two terms (perhaps each of which would then work in `int`, while the sum might not). I guessed this on the weak grounds that I thought that I saw hints in Edgar's posts in the other thread that you cited.
The guesses on where it comes from are both right.
I started with the problem in
www.mapleprimes.com/forum/thomascalculus5615exercisegetshypergeom
which is a sum of two terms, both involving 2F1's, then converted to Int, combined them, and evaluated. Voila, a new problem, now involving a 3F2.
My guess is that although
hypergeom([-1/2, 3/8, 169/88], [81/88, 19/8], -1/6)
has a nice closed form,
hypergeom([-1/2, 3/8, 169/88], [81/88, 19/8], z)
doesn't. But that's just a guess.
---
G A Edgar
The challenge was to show that W:=1. There was no mention as to what available tools one could use to do this. The methods outlined above are over my head mathematically. Attached file showing W:=1.
One could see the problems in the cited thread in a positive way:
Using the shown variants gives a special identity for some 2F1 :-)
Anyway, I give up (except you are willing (later) to show how you
came up with your task). Concerning x=1/6 the reformulation I got:
-25/343*42^(1/2)*x^(1/2)*
hypergeom([-15/8, -1/2, -37/88],[-125/88, 1/8],-1/x)
+
81/539*42^(1/2)*
hypergeom([-1/2, 3/8, 169/88],[81/88, 19/8],-x)
-
3/343*(6*x-1)*Pi^(3/2)*42^(1/2)*2^(1/2)/x^(11/8)/GAMMA(5/8)/GAMMA(7/8)
equals 0, so there is an analogous task for x=6.
I have no feeling, how difficult it is, but already Gamma's can be
a mess - here is one given by Bill Gosper:
2^(1/4)*3^(3/8)*GAMMA(1/4)*GAMMA(1/3) =
(3^(1/2)-1)^(1/2)*Pi^(1/2)*GAMMA(1/12)
Although this does not solve the challange, it is interesting that Maple 8 can re-express A1 in terms of some elementary functions and some more simple hypergeometrics...(2,1) instead of (3,2). Maple 12 does not seem to know this.
Comparison of tracing by Maple 8 and Maple 12 shows that both get the same up to close to the end of the calculation where, apparently, 'simplify/hypergeom/baseHG' produces a different result.
Very tough
My attempts to crack this have not worked, but perhaps some of my ideas might be useful to someone else.
My favourite tactic is to transform such problems into DE problems, so
3rd order, as expected (but the stupid display of the <maple> tag is annoying here). The coefficients are not too nasty, and nicely the sqrt(42) has magically disappeared. Taking a look at the solution:
[Again, the output in Classic is much nicer than here] Where does this come from? Well, the DE, as an operator, factors:
> DEtools[DFactor](DEtools[de2diffop](de,y(x),[Dx,x]),[Dx,x]); 2 2 3 48 (2875 x + 5911 x - 27378) x [(8448 x + 1408 x ) Dx + -------------------------------, -81 + 25 x 2 3 -1863 x + 82 x + 25 x + 972 -11 + 3 x Dx + ---------------------------------, Dx + ------------] 2 x (-1 + x) (6 + x) (-81 + 25 x) 8 x (-1 + x)Trying to figure out the values of the constants _C1, _C2 and _C3 turns out to be very hard since all 3 terms are singular at 0, so one would have to find out how to 'match' those singularities, which I have not been able to do. However, it might be useful to know that the problem is "reduced" to one involving algebraic integrals.
I have not tried to use any of the contiguity relations or quadratic transformations formulas for the 3F2 to see if somehow that can cause some of the arguments to 'collapse' and thereby simplify the problem. It's too bad that Maple does not have a 'transformations' package with these formulas as transformations one can apply.
thought similar
and run into the 3rd oder DE (without splitting), it would not help to provide initial conditions here, but have not tried in points different from 0
BTW the task seems to stem from the problems seen in www.mapleprimes.com/forum/thomascalculus5615exercisegetshypergeom
where it was unclear how to simplify the 2F1
oh
When seeing Edgar's challenge problem, my first thought was convert(W,Int) and to try working from there.
has not worked for me
has not worked for me, got just a double integral, it should stand for 3F2 =Int(2F1) = Int(Int(...)) using Euler's integral I guess ... and similar for trying sums :-(
guess
My guess was that, somehow, the inner integrand might be the simplified result of adding two terms (perhaps each of which would then work in `int`, while the sum might not). I guessed this on the weak grounds that I thought that I saw hints in Edgar's posts in the other thread that you cited.
where it comes from
The guesses on where it comes from are both right.
I started with the problem in
www.mapleprimes.com/forum/thomascalculus5615exercisegetshypergeom
which is a sum of two terms, both involving 2F1's, then converted to Int, combined them, and evaluated. Voila, a new problem, now involving a 3F2.
My guess is that although
hypergeom([-1/2, 3/8, 169/88], [81/88, 19/8], -1/6)
has a nice closed form,
hypergeom([-1/2, 3/8, 169/88], [81/88, 19/8], z)
doesn't. But that's just a guess.
---
G A Edgar
"Cheating?" w/ Maple
The challenge was to show that W:=1. There was no mention as to what available tools one could use to do this. The methods outlined above are over my head mathematically. Attached file showing W:=1.
Download 221_hypergeom.mws
View file details
Regards,
Georgios Kokovidis
Dräger Medical
food for thought
You think it is an algebraic trick? Look at this:
A1 := hypergeom([-1/2, 3/8, 169/88], [81/88, 19/8], z);
![= hypergeom([-1/2, 3/8, 169/88], [81/88, 19/8], z)](http://mapleoracles.maplesoft.com:8080/maplenet/primes/60070a27660d24d580f6151c24b4efc8.gif)
A2 := subs(z=-1/6,A1);
![= hypergeom([-1/2, 3/8, 169/88], [81/88, 19/8], -1/6)](http://mapleoracles.maplesoft.com:8080/maplenet/primes/67d1aa8c8b0b1d740580c7a2fdfe3097.gif)
identify(evalf(A2,50));

A3 := subs(z=1,A1);
![= hypergeom([-1/2, 3/8, 169/88], [81/88, 19/8], 1)](http://mapleoracles.maplesoft.com:8080/maplenet/primes/aa9b8d5207d242408526fc4470b11983.gif)

.78544208367808523114057318033434606661653742464155
identify(%);

Now, if you prove A3 is algebraic, you will be famous!
What I get
for z=1 is:
value(S1); 3/2 11 Pi -- ------------------------------- 54 3 Pi GAMMA(5/8) GAMMA(7/8) sin(----) 8which may be rewritten as 11/54*GAMMA(4/8)*GAMMA(3/8)/GAMMA(7/8) using the reflection formula (by hand).
May be that z=1 is a better point for ICs of the ODE method?
A problem with identify
That thing with the zeta functions from identify: In fact it only agrees to 8 places, so don't believe it.
---
G A Edgar
x=1/6
Maple 8 helps some
Although this does not solve the challange, it is interesting that Maple 8 can re-express A1 in terms of some elementary functions and some more simple hypergeometrics...(2,1) instead of (3,2). Maple 12 does not seem to know this.
A1 := hypergeom([-1/2, 3/8, 169/88], [81/88, 19/8], z);
expand(simplify(A1)); #in Maple8
problem with simplify/hypergeom/baseHG?
Comparison of tracing by Maple 8 and Maple 12 shows that both get the same up to close to the end of the calculation where, apparently, 'simplify/hypergeom/baseHG' produces a different result.
from before
Knowing a1 and a2 below makes it easier, to then show that a linear combination of them is equal both to W and to 1.
> a1 := hypergeom([-1/2, 11/8], [19/8], -1/6): > a2 := hypergeom([-1/2, 3/8], [11/8], -1/6): > W := 81/539*42^(1/2) * (5/27*a1+22/27*a2); 81 1/2 / W := --- 42 |5/27 hypergeom([-1/2, 11/8], [19/8], -1/6) 539 \ 22 \ + -- hypergeom([-1/2, 3/8], [11/8], -1/6)| 27 / > value(simplify(combine(convert(convert(W,MeijerG),Sum)))); 81 1/2 169 81 --- 42 hypergeom([-1/2, 3/8, ---], [--, 19/8], -1/6) 539 88 88 > Z := simplify(combine(convert(W,Int))); 1 / 1/2 1/2 | (36 + 6 _t1) (5 _t1 + 6) Z := 1/784 42 | --------------------------- d_t1 | 5/8 / _t1 0 > op(1,Z)*op(2,Z) *Int(IntegrationTools:-GetIntegrand(op(3,Z)), > IntegrationTools:-GetVariable(op(3,Z))); / 1/2 1/2 | (36 + 6 _t1) (5 _t1 + 6) 1/784 42 | --------------------------- d_t1 | 5/8 / _t1 > Q := value(%); 1/2 3/8 1/2 42 (_t1 + 6) _t1 (36 + 6 _t1) Q := -------------------------------------- 294 > (a,b) := op(IntegrationTools:-GetRange(op(3,Z))); a, b := 0, 1 > 1/(eval(Q,_t1=b)-eval(Q,_t1=a)); 1acer