I am interested in this definite integral:
$$ \eqalign{\int_0^\infty {x^2 \log(1-e^{-x})}\; dx\cr } $$
That is:
Integrate[x^2 Log[(1 - Exp[-x])], {x, 0, \[Infinity]}]
Mathematica outputs a nice result:
$-\frac{\pi ^4}{45}$
But is there any way for users like me to see what actual symbolic calculations were performed by Mathematica in order to get the result?
Using WolframAlpha:
There is a possibility of using WolframAlpha, like here:
WolframAlpha["Integrate[Sin[x]*Sin[x]], {x,0,\[Pi]}]",
IncludePods -> "Input", AppearanceElements -> {"Pods"},
PodStates -> {"Show steps"}]
This is the output, which is really nice, I was impressed, it's almost like written by a human: (the only missing thing is some "handwriting" font ;) )
However, for my case, steps are not offered:
WolframAlpha["Integrate[x^2 Log[(1 - Exp[-x])], {x,0,\[Infinity]}]",
IncludePods -> "Input", AppearanceElements -> {"Pods"},
PodStates -> {"Show steps"}]
Graph of the function:




(148)– Sektor May 24 '15 at 15:08