Ikeda map


In physics and mathematics, the Ikeda map is a discrete-time dynamical system given by the complex map
The original map was proposed first by Kensuke Ikeda as a model of light going around
across a nonlinear optical resonator in a more general form. It is reduced to the above simplified "normal" form by Ikeda, Daido and Akimoto stands for the electric field inside the resonator at the n-th step of rotation in the resonator, and and are parameters which indicate laser light applied from the outside, and linear phase across the resonator, respectively. In particular
the parameter is called dissipation parameter characterizing
the loss of resonator, and in the limit of the Ikeda map becomes
a conservative map.
The original Ikeda map is often used in another modified form in order
to take the saturation effect of nonlinear dielectric medium into account:
A 2D real example of the above form is:
where u is a parameter and
For, this system has a chaotic attractor.

Attractor

This shows how the attractor of the system changes as the parameter is varied from 0.0 to 1.0 in steps of 0.01. The Ikeda dynamical system is simulated for 500 steps, starting from 20000 randomly placed starting points. The last 20 points of each trajectory are plotted to depict the attractor. Note the bifurcation of attractor points as is increased.

Point trajectories

The plots below show trajectories of 200 random points for various values of. The inset plot on the left shows an estimate of the attractor while the inset on the right shows a zoomed in view of the main trajectory plot.

Octave/MATLAB code for point trajectories

The Octave/MATLAB code to generate these plots is given below:

% u = ikeda parameter
% option = what to plot
% 'trajectory' - plot trajectory of random starting points
% 'limit' - plot the last few iterations of random starting points
function ikeda
P = 200; % how many starting points
N = 1000; % how many iterations
Nlimit = 20; % plot these many last points for 'limit' option
x = randn * 10; % the random starting points
y = randn * 10;
for n = 1:P,
X = compute_ikeda_trajectory, y;

switch option
case 'trajectory' % plot the trajectories of a bunch of points
plot_ikeda_trajectory; hold on;

case 'limit'
plot_limit; hold on;

otherwise
disp;
end
end
axis tight; axis equal
text;
text;
end
% Plot the last n points of the curve - to see end point or limit cycle
function plot_limit
plot, X;
end
% Plot the whole trajectory
function plot_ikeda_trajectory
plot, X;
% hold on; plot,X; hold off
end
% u is the ikeda parameter
% x,y is the starting point
% N is the number of iterations
function = compute_ikeda_trajectory
X = zeros;
X = ;
for n = 2:N

t = 0.4 - 6 / ;
x1 = 1 + u * - y * sin);
y1 = u * + y * cos);
x = x1;
y = y1;

X = ;

end
end