I want to solve a pde $y^{\prime\prime}(t)=\frac{3}{2}y(t)^{2}$ with boundary conditions $y(0)=4$ and $y(1)=1$. The exact solution of this problem is $y(t)=\frac{4}{(1+t)^{2}}$. Now I want to solve this by an iterative method In the attached Picture 
δ = 10^-20;
Clear[x];
x[0] = Function[t, 4 - 3 t];
a[n_] := a[n] = 0.5947894739;
x[n_] := x[n] =Function[t,Evaluate[Chop[Expand[x[n - 1][t] + a[n]*Integrate[Expand[s (1 - t) (x[n - 1]''[s] - (1.5) x[n - 1][s]^2)], {s,0, t}] + a[n]*Integrate[Expand[t (1 - s) (x[n - 1]''[s] - (1.5) x[n - 1][s]^2)], {s,t, 1}]], \[Delta]]]];
Table[Abs[x[i][0.5] - x[i + 1][0.5]], {i, 0, 20}]
When I run the code I get "3.60822(10^-12) But in the Table it is "8.075267(10^-12)$.
Also for 0.5 the exact solution is 16/9. So that I also tried the following code for absolute error
Table[Abs[x[i][0.5] - (16/9)], {i, 0, 20}]
In this case I get (4.02495(10^-11) in both the case my answer is very near to the answer given in paper but I want to get the exact answer as given in the paper. This code works very well for some other papers but for this paper the problem is still exists. I also changed the value of delta but cant succeeded. The complete paper is at https://sci-hub.hkvisa.net/10.1016/j.aml.2018.02.016
The authors used Matlab softwhare but I used Mathematica. This post is related with How to compute higher iterations in mathemtica and Mathematica does not show anything after running for higher iterations
Tableto aDoand print the results as you go (after following the advice from @theorist). I get $i$ from 0 to 9 to go real fast but then things slow down considerably for 10 to 20 forTable[Abs[x[i][0.5] - (16/9)], {i, 0, 20}]. – JimB Apr 14 '22 at 22:598.075267(−12)is fort=0.5. Are you sure you comparing at your result 3.60822(10^-12) at samet? Also you useChop. How do you know Matlab implementation did same thing? I think it is implementation issues. You also using memoization and paper seems to be using straight iteration. Not sure if this has anything to do with it. The best thing is to ask Authors to send you the Matlab code. Then you will know the truth :) – Nasser Apr 14 '22 at 23:25