Composition of Functions and Sequence
Mostrar comentarios más antiguos
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.

Respuesta aceptada
Más respuestas (2)
1.3 To what value does this sequence converge
Hint - the formula for the recursion is
a(n)=sqrt(2+a(n-1))
If a(n) converges to a limit L, then taking limits on both sides leads to the equation
L=sqrt(2+L)
Roger Stafford
el 1 de Sept. de 2013
Editada: Roger Stafford
el 1 de Sept. de 2013
For problem 1.2 I strongly recommend reading up on the definition of function composition. For example:
http://en.wikipedia.org/wiki/Function_composition
You are looking to define a function y = g(x) which has the property that
f(g(x)) = f(y) = h(x) = exp(x)
where f(y) = 1/(y+1). It's easy to solve for y = g(x) in this equation. Then set x equal to 1.
1 comentario
Categorías
Más información sobre Mathematics en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!