Iteration is the process of repeating a task over and over again. In reference to functions, the process of iterating a function refers to obtaining a value from a function, using that value to produce a subsequent value, using that subsequent value to produce yet another value, and so on.
This process of iteration can serve as a good exercise for students to practice their basic skills for manipulating complex numbers. Have students consider iterations on the following functions (or create your own): f(x) = x2 + (1 - 3i) ;
starting value of x = 0; four iterations f(x) = 2x2 + (1 + i); starting value of x = 0; three iterations
Graphically speaking, a function of the form f(x) = x2 + c (where c is a complex number) is a special function under iteration. If you plot the results of the iterations (starting at x = 0) in the complex plane, you obtain what is called the critical orbits of c. If these critical orbits repeat (where the same point in the complex plane repeats), the complex number is in the Mandelbrot set. If the critical orbits simply move further and further away from the origin, the complex numbers are not in the Mandelbrot set.
|