| > | restart; read `c:/Users/Asus/Google Drive/Aek/Pile Game2/Pile2.txt`; |
| > | read `c:/Users/Asus/Google Drive/Guess.txt`; |
| > | #Section 5, sequence of moments of G_{n,s}(x) and P_{n,s}(x) |
| > | # G_{n,s}(x), first moment |
| > | A:=[seq(Mo1(n,0,1,[2,-1],[1/2,1/2]),n=1..50)]; |
| > | GuessC(A,N); |
| > | B:=[seq(Mo1(50,s,1,[2,-1],[1/2,1/2]),s=0..50)]; |
| > | GuessC(B,S); |
| > | # P_{n,s}(x), zero moment |
| > | A:=[seq(MoP(n,0,0,1/2,1/2),n=1..50)]; |
| > | GuessC(A,N); |
| > | B:=[seq(MoP(50,s,0,1/2,1/2),s=0..50)]; |
| > | GuessC(B,S); |
| > |