Application Center - Maplesoft

App Preview:

Classroom Tips and Techniques: Fixed-Point Iteration

You can switch back to the summary page by clicking here.

Learn about Maple
Download Application




 

Classroom Tips and Techniques:

 

Fixed-Point Iteration

 

 

Robert J. Lopez

Emeritus Professor of Mathematics and Maple Fellow

Maplesoft

 

Introduction

 

Fixed-point iteration, also called Picard iteration, linear iteration, and repeated substitution, is easy to investigate in Maple for the scalar case.  The syntax for the vector case is a bit more complex, so we show how to define a vector-valued function of a vector argument.

 

Note: In this article, our implementation of the Maple calculations is command-based and uses Maple syntax for mathematical expressions.  It is worthing noting that standard math notation is also available, and many of these calculations could also have been implemented interactively, using Clickable Math tools such as palettes and context-sensitive menus.  

Initializations

 

restart;

with(plots):

Fixed-Point Iteration: Scalar Case

 

Starting from x = x[0], fixed-point iteration for the scalar function g(x) generates the sequence {x[k]} by computing

 

 x[k+1] = g(x[k])  

 

Under the right conditions on g(x), this sequence converges to a fixed point defined by the equation x = g(x).  This process is easy to demonstrate in the scalar case.  For example, the quadratic equation

 

q := x^2-6*x+5 = 0;

x^2-6*x+5 = 0

has the two solutions

 

solve(q,x);

5, 1

Rearranging the equation to the form x = g(x) by the steps

 

q1 := q + 6*x;
q2 := q1/6;

x^2+5 = 6*x

(1/6)*x^2+5/6 = x

allows us to define the function g(x) via

 

g := unapply(lhs(q2),x):
'g'(x) = g(x);

g(x) = (1/6)*x^2+5/6

The solutions of the quadratic equation are fixed points of g(x), as we see from

 

1 = g(1);
5 = g(5);

1 = 1

5 = 5

The sequence defined by x[k+1] = g(x[k]) will converge to x = 1 if x[0] is sufficiently close to 1 because abs(`g'`(1)) < 1, as shown by

 

`g'`(1) = D(g)(1);

`g'`(1) = 1/3

To demonstrate that fixed-point iteration starting at x = 4 converges to x = 1, we work in floating-point arithmetic and write

 

X := 4.0;
for k from 1 to 10 do
X := g(X);
print(x[k] = X);
od:

4.0

x[1] = 3.500000000

x[2] = 2.875000000

x[3] = 2.210937500

x[4] = 1.648040772

x[5] = 1.286006398

x[6] = 1.108968743

x[7] = 1.038301946

x[8] = 1.013011822

x[9] = 1.004365492

x[10] = 1.001458340

Maple's ability to implement the scalar function g(x) makes fixed-point calculations natural in the scalar case.

 

Fixed-Point Iteration: Vector Case

 

If the vector x[0] satisfies the equation x = g(x), where g(x) is a vector-valued function of the vector argument x, then x[0] is a fixed-point of g(x).  As in the scalar case, fixed-point iteration can be used to find solutions to equations of the form F(x) = 0, where F(x) is itself a vector-valued function of the vector argument x.

 

For example, if x is the vector

 

X := <x, y>;

X := Vector(2, {(1) = x, (2) = y})

and the function F(x) is the vector

 

F := <x^2 + y^2 - 5, 4*x^2 + 9*y^2 - 36>;

F := Vector(2, {(1) = x^2+y^2-5, (2) = 4*x^2+9*y^2-36})

then Figure 1 shows that the equations determined by F(x) = 0 have four real solutions.

 

implicitplot(convert(F,list), x=-3..3, y=-2.5..2.5, color=[red,black], scaling=constrained, title="Figure 1");

Maple determines these four solutions to be

 

sol := solve(convert(F,set),{x,y},explicit);

{x = (3/5)*5^(1/2), y = (4/5)*5^(1/2)}, {x = (3/5)*5^(1/2), y = -(4/5)*5^(1/2)}, {x = -(3/5)*5^(1/2), y = (4/5)*5^(1/2)}, {x = -(3/5)*5^(1/2), y = -(4/5)*5^(1/2)}

Using exact arithmetic, these solutions can be written as the vectors

 

seq(eval(X,sol[k]),k=1..4);

Vector(2, {(1) = (3/5)*5^(1/2), (2) = (4/5)*5^(1/2)}), Vector(2, {(1) = (3/5)*5^(1/2), (2) = -(4/5)*5^(1/2)}), Vector(2, {(1) = -(3/5)*5^(1/2), (2) = (4/5)*5^(1/2)}), Vector(2, {(1) = -(3/5)*5^(1/2), (2) = -(4/5)*5^(1/2)})

or as the vectors

 

seq(eval(X,evalf(sol[k])),k=1..4);

Vector(2, {(1) = 1.341640786, (2) = 1.788854382}), Vector(2, {(1) = 1.341640786, (2) = -1.788854382}), Vector(2, {(1) = -1.341640786, (2) = 1.788854382}), Vector(2, {(1) = -1.341640786, (2) = -1.788854382})

in floating-point arithmetic.

 

The first-quadrant solution can be found by fixed-point iteration if the equation F(x) = 0 is cast into the form x = g(x) by defining the vector g(x) as follows.

 

g := <solve(F[1],x)[1], solve(F[2],y)[1]>;

g := 3

That the first-quadrant solution is a fixed point of this g(x) is demonstrated by the calculation

 

simplify(eval(X = g, sol[1]));

(Vector(2, {(1) = (3/5)*5^(1/2), (2) = (4/5)*5^(1/2)})) = (Vector(2, {(1) = (3/5)*5^(1/2), (2) = (4/5)*5^(1/2)}))

We next provide several Maple implementations of fixed-point iteration for the vector-valued function g(x).  First, we use the vector g(x) as an expression into which we must make substitutions of the form x = x[k], y = y[k].  To obtain the substitution rules at each step of the iteration, we use the top-level Equate command.  This command takes two lists or vectors, and forms the equations determined by equating like components.  Thus, we equate the components of the vectors

 

X = (Vector(2, {(1) = x, (2) = y})) and  x[k] = (Vector(2, {(1) = x[k], (2) = y[k]}))``

``

and start the fixed-point iteration at x[0] = (Vector(2, {(1) = .1, (2) = .1})), so that we have

``

XX := <.1,.1>;
for k from 1 to 5 do
XXX := Equate(X,XX);
XX := eval(g,XXX);
print(XX);
od:

XX := Vector(2, {(1) = .1, (2) = .1})

Vector[column]([[2.233830790], [1.998888580]])

Vector[column]([[1.002219759], [1.334998960]])

Vector[column]([[1.793816539], [1.885094227]])

Vector[column]([[1.202671923], [1.603083449]])

Vector[column]([[1.558885325], [1.832251832]])

an iteration that slowly converges to the first-quadrant fixed point.

 

Alternatively, in an attempt to make a function out of the vector g(x), we write

 

G := unapply(g,x,y):
'G'(x,y) = G(x,y);

G(x, y) = 3

The argument of this function is not a vector, and we did not create a vector-valued function of a vector argument.  The argument of this function is the sequence of coordinates x, y.  To implement fixed-point iteration with this function, we need to convert the output vectors to a sequence of two coordinates.  We do this by converting the output vector to a list, then removing the brackets from the list by appending the brackets [].  Thus, the iteration can be written as

 

X := <.1,.1>;
for k from 1 to 5 do
X := G(convert(X,list)[]);
od;

X := Vector(2, {(1) = .1, (2) = .1})

X := Vector(2, {(1) = 2.233830790, (2) = 1.998888580})

X := Vector(2, {(1) = 1.002219759, (2) = 1.334998960})

X := Vector(2, {(1) = 1.793816539, (2) = 1.885094227})

X := Vector(2, {(1) = 1.202671923, (2) = 1.603083449})

X := Vector(2, {(1) = 1.558885325, (2) = 1.832251832})

A true vector-valued function of a vector argument, namely, h(v), is most easily created with the following syntax.

 

h := v-> Vector([sqrt(5-v[2]^2), 2*sqrt(9-v[1]^2)/3]);

proc (v) options operator, arrow; Vector([sqrt(-v[2]^2+5), (2/3)*sqrt(-v[1]^2+9)]) end proc

Then, the requisite iteration can be implemented with

 

X := <.1,.1>;
for k from 1 to 5 do
X := h(X);
end do;

X := Vector(2, {(1) = .1, (2) = .1})

X := Vector(2, {(1) = 2.233830790, (2) = 1.998888580})

X := Vector(2, {(1) = 1.002219759, (2) = 1.334998960})

X := Vector(2, {(1) = 1.793816539, (2) = 1.885094227})

X := Vector(2, {(1) = 1.202671923, (2) = 1.603083449})

X := Vector(2, {(1) = 1.558885325, (2) = 1.832251832})

 

Legal Notice: © Maplesoft, a division of Waterloo Maple Inc. 2017. Maplesoft and Maple are trademarks of Waterloo Maple Inc. This application may contain errors and Maplesoft is not liable for any damages resulting from the use of this material. This application is intended for non-commercial, non-profit use only. Contact Maplesoft for permission if you wish to use this application in for-profit activities.