User Portlet User Portlet

Discussions
Hello! I am quite new to Mathematica and I am sorry of this is a silly question. I have this function (g is what I care about): f = x (1 - x) Log[1 - t x (1 - x)] g = N[Abs[Integrate[f, {x, 0, 1}]]^2, 5] Which I have to plot and show it...
Hello! I have this code: genus[Q_, n_Integer] := Module[{z, x}, SymmetricReduction[ SeriesCoefficient[ Product[ComposeSeries[Series[Q[z], {z, 0, n}], Series[x[i] z, {z, 0, n}]], {i, 1,...
Hello! I have this function: Clear[chernC]; chernC[0] = 1; chernC[1] = Subscript[ch, 1]; chernC[k_Integer /; k > 0] := chernC[k] = Simplify[(1/k)* Total[Table[(-1)^(j + 1)*Factorial[j]*Subscript[ch,...
Hello! I have this code K[Q_, n_Integer] := Module[{z, x}, SymmetricReduction[ SeriesCoefficient[ Product[ComposeSeries[Series[Q[z], {z, 0, n}], Series[x[i] z, {z, 0, n}]], {i, 1, n}], n], ...
Hello! I would really appreciate any help with this as I have tried looking for an answer for more than 2 weeks. So this is my code K[Q_, n_Integer] := Module[{z, x}, SymmetricReduction[ ...