In an exercise I'm asked the following question:
Find a formula for the primitive $\int(1-x^2)^n dx$ with $n \in \mathbb N$ using recursion.
So, I already asked a question on this topic but that question is about the integral $\int_0^1(1-x^2)^n dx$.
So what I did was:
Let $I_n:=\int(1-x^2)^n dx$, then: $$I_n=\int(1-x^2)(1-x^2)^{n-1} dx = I_{n - 1} - \int x^2(1-x^2)^{n - 1}dx$$
How can I now complete this in order to ger a formula for $I_n$ using recursion? Thanks