Use the method of successive approximations to solve the integral equation: $$u(t)=1+\int_{0}^{t}(t-s)u(s)ds \space,u(t_0)=1$$
Solution: I used the Picard's iteration: $$u_1=1+\int_{t_0}^{t}(1+\int_{0}^t ((t-s)u(s)ds))ds$$ $$=1+(t-t_0)+\int_{t_0}^{t}\int_{0}^t ((t-s)u(s)ds))ds$$
Is this the right approach to the problem ? should I have to go to $n$ iterations ?
Picard's iteration would be $u_0= 1$,
$u_1= 1+ \int_0^t (s- t)(1)ds= 1+ \left[s^2/2- st\right]_0^t= 1- t^2/2$,
$u_2= 1+ \int_0^t (s- t)(1- s^2/2) ds= 1+ \int_0^t t- s+ ts^2/2- s^3/2 ds= 1+ \left[ts- s^2/2+ ts^3/6- s^4/8\right]_0^t= 1+ t^2/2+ t^4/24$,
etc.