I am currently working on Newton's method for approximating roots to functions, and part of the chapter discusses other iterative functions. The basic definition is:
Consider a function $F$ and an initial number $x_0$. Define the subsequent numbers $x_n$ by the formula $x_n = F(x_{n-1})$. This process creates a list of numbers $x_0, x_1, x_2,..., x_n, ...$.
One of the questions I am looking at defines the iterative function by:
$x_{n+1} = x_n^2 + x_{n-2}$
And asks for $x_1$ and $x_2$ with a starting value of $x_0=0.6$.
So far, I have been OK with the definition - where the iterative function is defined by the previous term, but I am struggling with the function immediately above.
I have tried setting $n$ to 0, but this gives:
$x_1 = x_0^2 + x_{-2}$
Which does not seem plausible. If I set $n$ to be 2, then I get something more reasonable:
$x_3 = x_2^2+x_0$
But I have "jumped" past what I am looking for. I did consider allowing a negative subscript but treating it as the starting value:
$let\ n = 0: x_1 = x_0^2 + x_{-2}$
$let\ n=1: x_2 = x_1^2 + x_{-1}$
And calculating:
$x_1 = x_0^2 + x_0$
$x_2 = x_1^2 + x_0$
This approach got me close to the solution, but not to the solution. I am unsure how to handle this sort of function, as generating a new iteration of the function introduces more unknowns.
Any help would be greatly appreciated!