Monday, 25 September 2006

cv.complex variables - Lacunar series with an interesting (in-formula) symmetry.

So, I wrote out a table of functions like so:



suminftyn=1(1)n+1qn=suminftyn=1(1)n+1qn= +q1+q1 q2q2 +q3+q3 q4q4 +q5+q5 + ldotsldots



suminftyn=1(1)nqn2=suminftyn=1(1)nqn2= q1q1 +q4+q4 q9q9 & +q16+q16 q25q25 ldotsldots



suminftyn=1(1)n+1qn3=suminftyn=1(1)n+1qn3= +q1+q1 q8q8 +q27+q27 q64q64 +q125+q125 ldotsldots



suminftyn=1(1)nqn4=suminftyn=1(1)nqn4= q1q1 & +q16+q16 q81q81 +q256+q256 q625q625 ldotsldots



suminftyn=1(1)n+1qn5=suminftyn=1(1)n+1qn5= +q1+q1 q32q32 +q243+q243 q1024q1024 +q3125+q3125 ldotsldots



And noticed that it is possible to rewrite (by transposing the first column so
it becomes the first row). The essential (though incomplete) statement of the
symmetry here is:



X(q)=suminftymsuminftyn(1)m+nqmn=suminftymsuminftyn(1)m+nqnmX(q)=suminftymsuminftyn(1)m+nqmn=suminftymsuminftyn(1)m+nqnm



Writing it out appropriately:



X(q)=suminftym=0(1)mq2m+suminftym=0(1)m+1q3m+suminftym=0(1)mq4m+suminftym=0(1)m+1q5m+ldots



X(q)=suminftyn=1(1)n+1qn+suminftyn=1(1)nqn2+suminftyn=1(1)n+1qn3+suminftyn=1(1)nqn4+suminftyn=1(1)n+1qn5+ldots



Using mpmath I get numerically:




>>> nsum(lambda p: (nsum(lambda n: ((-1)**(n+1))*((1/2.0)**(n**(2.0*p-1))), [1,inf])), [1,inf]) + nsum(lambda p: (nsum(lambda n: ((-1)**(n))*((1/2.0)**(n**(2.0*p))), [1,inf])), [1,inf])
mpf('-0.10999554665856692')
>>> nsum(lambda p: (nsum(lambda n: ((-1)**n)*((1/2.0)**((2.0*p)**n)), [0,inf])), [1,inf]) + nsum(lambda p: (nsum(lambda n: ((-1)**(n+1))*((1/2.0)**((2.0*p+1)**n)), [0,inf])), [1,inf])
mpf('-0.10999554665855271')


And using mpmath's plotting facility, I obtained a picture of X(q):





Questions:



  1. limqrightarrow0X(q)=1/2 by numerical evaluation, but just algebraically evaluating the function definition would lead one to believe that X(0)=0. What's going on here?


  2. All theta function identities (including Ramanujan's mock theta functions) that I've seen involve terms with qn2, but nothing higher in the uppermost exponent. Is there any work on series with qn3 I've found a paper by A. Sebbar which might be relevant.


  3. Has the function X(q) been studied before? And if so, under what name? Does it have any interesting properties which aren't obvious from its definition. What are the appropriate lower bounds for the most compact representation? (summation) Does this function have any interesting symmetries under the modular group?


No comments:

Post a Comment