MATLAB: Composition of Functions and Sequence

composition of functions and sequence

1.2 I tried to sort it but obviously something is wrong…
syms x y
f = 1/(x+1); h = exp(x); g = 1;
h = compose(f,g)
1.3 I have no idea whats it is about.

Best Answer

1.2 - Try to use finverse
1.3 - Use loops to solve
N=3; % number of terms
v=sqrt(2);
for i=1:N-1
v=sqrt(2+v);
end
v
To find convergence use a very large value of N
Related Question