I found this sum in the mathematial induction chapter of The art of Computer Programming and i have no idea how to solve it.
$\dfrac{1^3}{1^4+4}-\dfrac{3^3}{3^4+4} + ... +\dfrac{(-1)^n(2n+1)^3}{(2n+1)^4+4} $
I tried writing it as $\dfrac{1^3}{1*1^3+4}-\dfrac{3^3}{3*3^3+4} + ... +\dfrac{(-1)^n(2n+1)^3}{(2n+1)*(2n+1)^3+4} $
and then writing it as
$\dfrac{1}{1*1^3+4}-\dfrac{3+5}{3*3^3+4} +...+\dfrac{(-1)^n(((2n+1)^2-(2n+1)+1)+...+((2n+1)^2+(2n+1)-1))}{(2n+1)*(2n+1)^3+4} $
but did not know how to continue.
I also tried writing it as $\dfrac{1}{1+\dfrac{4}{1^3}}-\dfrac{1}{3+\dfrac{4}{3^3}} + ... +\dfrac{(-1)^n}{2n+1+\dfrac{4}{(2n+1)^3}} $ but without succes.
@amWhy– amWhy Nov 03 '17 at 18:36