4

Here's the integral, $$\int_0^{x} (\lfloor t+1 \rfloor)^3dt$$

I have some knowledge of computing the integrals of discontinous functions but the cube function and the independent variable limit confused me a bit.
Also note the cube is outside the floor function as written.
Thanks for any help..

Thomas
  • 44,491
Simar
  • 1,037

1 Answers1

5

$$\int_0^x [ t+1 ]^3 dt = \sum_{i=1}^{[x]}\int_{i-1}^{i}[ t+1 ]^3 dt + \int_{[x]}^{x}[ t+1 ]^3 dt $$ $$=\sum_{i=1}^{[x]}\int_{i-1}^{i}i^3 dt + \int_{[x]}^{x}[x+1]^3 dt =\sum_{i=1}^{[x]}i^3+ [x+1]^3\cdot(x-[x]) $$ $$ = \frac{[x]^4+2[x]^3+[x]^2}{4} + [x+1]^3\cdot(x-[x])$$

Jakube
  • 1,895