Thursday, April 26, 2018

integration - A closed-form expression for inti0nftyfracln(1+xalpha)ln(1+xbeta)x,mathrmdx



I have been trying to evaluate the following family of integrals:





f:(0,)2R,f(α,β)=0ln(1+xα)ln(1+xβ)xdx.




The changes of variables 1xx, xαx and xβx yield the symmetry properties
f(α,β)=f(β,α)=1αf(1,βα)=1αf(βα,1)=1βf(αβ,1)=1βf(1,αβ)


for α,β>0 .



Using this result one readily computes f(1,1)=2ζ(3) . Then (1) implies that

f(α,α)=2αζ(3)


holds for α>0 . Every other case can be reduced to finding f(1,γ) for γ>1 using (1).



An approach based on xpaul's answer to this question employs Tonelli's theorem to write
f(1,γ)=01010dudvdx(1+ux)(v+xγ)=10100dxdudv(1+ux)(v+xγ).


The special case f(1,2)=πC38ζ(3) is then derived via partial fraction decomposition (C is Catalan's constant). This technique should work at least for γN (it also provides an alternative way to find f(1,1)), but I would imagine that the calculations become increasingly complicated for larger γ .



Mathematica manages to evaluate f(1,γ) in terms of C, ζ(3) and an acceptably nice finite sum of values of the trigamma function ψ1 for some small, rational values of γ>1 (before resorting to expressions involving the Meijer G-function for larger arguments). This gives me some hope for a general formula, though I have not yet been able to recognise a pattern.




Therefore my question is:




How can we compute f(1,γ) for general (or at least integer/rational) values of γ>1 ?




Update 1:



Symbolic and numerical evaluations with Mathematica strongly suggest that
f(1,n)=1n(2π)n1Gn+3,n+1n+3,n+3(0,0,1n,,n1n,1,10,0,0,0,1n,,n1n|1)



holds for nN . These values of the Meijer G-function admit an evaluation in terms of ζ(3) and ψ1(1n),,ψ1(n1n) at least for small (but likely all) nN .



Interesting side note: The limit
limγf(1,γ+1)f(1,γ)=34ζ(3)


follows from the definition.



Update 2:



Assume that m,nN are relatively prime (i.e. gcd(m,n)=1). Then the expression for f(m,n) given in Sangchul Lee's answer can be reduced to
f(m,n)=2m2n2Li3((1)m+n)=π4m2nm1j=1(1)jcsc(jnmπ)[ψ1(j2m)+(1)m+nψ1(m+j2m)]=π4n2mn1k=1(1)kcsc(kmnπ)[ψ1(k2n)+(1)n+mψ1(n+k2n)]F(m,n).


Further simplifications depend on the parity of m and n.



This result can be used to obtain a solution for arbitrary rational arguments: For n1d1,n2d2Q+ equation (1) yields
f(n1d1,n2d2)=d1n1f(1,n2d1n1d2)=d1n1f(1,n2d1/gcd(n1d2,n2d1)n1d2/gcd(n1d2,n2d1))=d1d2gcd(n1d2,n2d1)f(n1d2gcd(n1d2,n2d1),n2d1gcd(n1d2,n2d1))=d1d2gcd(n1d2,n2d1)F(n1d2gcd(n1d2,n2d1),n2d1gcd(n1d2,n2d1)).



Therefore I consider the problem solved in the case of rational arguments. Irrational arguments can be approximated by fractions, but if anyone can come up with a general solution: you are most welcome to share it. ;)


Answer



Only a comment. We have



0log(1+αx)log(1+β/x)xdx=2Li3(αβ)Li2(αβ)log(αβ)




which is valid initially for α,β>0 and extends to a larger domain by the principle of analytic continuation. Then for integers m,n1 we obtain



f(m,n)=0log(1+xm)log(1+xn)xdx=m1j=0n1k=0[2Li3(ei(αj+βk))i(αj+βk)Li2(ei(αj+βk))],



where αj=2jm+1nπ and βk=2kn+1nπ. (Although we cannot always split complex logarithms, this happens to work in the above situation.) By the multiplication formula, this simplifies to





f(m,n)=2gcd(m,n)3m2n2Li3((1)(m+n)/gcd(m,n))inm1j=0αjLi2((1)n1einαj)imn1k=0βkLi2((1)m1eimβk).




Here, gcd(m,n) is the greatest common divisor of m and n.







The following code tests the above formula.



Numerical computation


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...