I have
f[x_]=Log[1+x]
g[x_]=TraditionalForm[Series[f[x], {x, 0, 4}]]
Is there a way to get the answer to print out as
Ln(1+x) = x-x^2/2+x^3/3-x^4/4+O(x^5)
I've tried to use StringJoin but this doesn't seem to work
Thanks for the help in advance
Ln[1 + x] == Series[f[x], {x, 0, 4}] // TraditionalFormwork for you? – user42582 Aug 30 '17 at 11:08f[x] == Series[f[x], {x, 0, 4}] // TraditionalForm? – user42582 Aug 30 '17 at 11:21