f = @(x) (x+1).^2.*cos((2*x+1)./(x-4.3));
I = integral(f,0,4,'abstol',1e-14,'reltol',1e-14); % 'exact' value
We perform the integration and show the nodes selected underneath the curve.
[Q,t] = intadapt(f,0,4,0.001);
fplot(f,[0 4],2000,'k'), hold on
stem(t,f(t),'.-')
num_nodes = length(t)
num_nodes =
69
title('Adaptive node selection') % ignore this line
xlabel('x'), ylabel('f(x)') % ignore this line
The error turns out to be a bit more than we requested. It's only an estimate, not a guarantee.
err = I - Q
err =
-0.022002813037628
Let's see how the number of integrand evaluations and the error vary with the requested tolerance.
tol_ = 10.^(-4:-1:-14)';
err_ = 0*tol_;
num_ = 0*tol_;
for i = 1:length(tol_)
[Q,t] = intadapt(f,0,4,tol_(i));
err_(i) = I - Q;
num_(i) = length(t);
end
table(tol_,err_,num_,'variablenames',{'tol','error','f_evals'})
ans = 11×3 table
tolerrorf_evals
11.000000000000000e-04-4.194688177761030e-04113
29.999999999999999e-064.789766253621153e-05181
31.000000000000000e-066.314383847794147e-06297
41.000000000000000e-07-6.639249776618783e-07489
51.000000000000000e-087.180806882445268e-08757
61.000000000000000e-091.265238447345496e-081193
71.000000000000000e-10-8.441274346182581e-102009
81.000000000000000e-112.612576821547918e-113157
91.000000000000000e-124.044498069788460e-114797
101.000000000000000e-13-1.938449400995523e-127997
111.000000000000000e-141.616484723854228e-1312609
As you can see, even though the errors are not less than the estimates, the two columns decrease in tandem. If we consider now the convergence not in h (which is poorly defined) but in the number of nodes actually chosen, we come close to the fourth order accuracy of the underlying Simpson scheme.
clf, loglog(num_,abs(err_),'.-')
hold on
loglog(num_,0.01*(num_/num_(1)).^(-4),'--')
title('Convergence of adaptive quadrature') % ignore this line
xlabel('number of nodes'), ylabel('error') % ignore this line
legend('error','O(n^{-4})') % ignore this line
xlim(num_([1 end])) % ignore this line