A determinate system has at most one behavior. With the feedback arrangement, either the arrangement is invalid, or has a unique behavior. The unique behavior would be the fixed-point for the system.
If x
denotes the signal on the arc connecting the
output to the input, then the fixed-point for the system would be
f(x) = x
x
is input into f
, then the result
would be x
.
2 x^7 - x = 1
x
and iterate its computation
until the computed value converged:
7 x = f(x ) = 2 x - 1 i+1 i i
x
is between [-1, 1], then the
iteration will converge; otherwise, it will not.
From real analysis, a fixed-point iteration will be guaranteed to
converge if | f'(x) | < 1 over all possible values of x for the problem.
For the example problem, it is better to run the iteration using
the 7th root of x + 1
:
1 1/7 x = f(x ) = ( - ( x + 1 ) ) i+1 i 2 i
x
.
Examples of sequences for i = 0, 1, 2, ...: