File:Critical orbit for f(z) = z^14 - z.png
From testwiki
Jump to navigation
Jump to search
Size of this preview: 600 × 600 pixels. Other resolutions: 240 × 240 pixels | 480 × 480 pixels | 1,000 × 1,000 pixels.
Original file (1,000 × 1,000 pixels, file size: 37 KB, MIME type: image/png)
This file is from Wikimedia Commons and may be used by other projects. The description on its file description page there is shown below.
Summary
| DescriptionCritical orbit for f(z) = z^14 - z.png |
English: Critical orbit for f(z) = z^14 - z.[1] Because critical orbit tends to fixed point very slowly there is a gap between critical orbit and fixed point. |
| Date | |
| Source | Own work |
| Author | Adam majewski |
Licensing
I, the copyright holder of this work, hereby publish it under the following licenses:
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license.
- You are free:
- to share – to copy, distribute and transmit the work
- to remix – to adapt the work
- Under the following conditions:
- attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
- share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
| Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License.http://www.gnu.org/copyleft/fdl.htmlGFDLGNU Free Documentation Licensetruetrue |
You may select the license of your choice.
Maxima CAS src code
kill(all);
remvalue(all);
/*------------- functions definitions ---------*/
/* function */
f(z):=z^14 -z;
GiveListOfCriticalPoints(fun):=
block(
[d,s],
/* derivative */
d:diff(fun,z,1),
/* critical points z: d=0 */
s:solve(d=0,z),
/* remove "z=" from list s */
s:map('rhs,s),
/* convert to form x+y*%i */
s:map('rectform,s),
s:map('float,s),
return(s)
)$
/* f(z) is used as a global function
I do not know how to put it as a argument */
GiveOrbit(z0,OrbitLength):=
block(
[z,Orbit],
z:z0,
Orbit:[[realpart(z),imagpart(z)]],
for i:1 thru OrbitLength step 1 do
( z:expand(f(z)),
Orbit:endcons([realpart(z),imagpart(z)],Orbit)),
return(Orbit)
)$
/* find fixed points returns a list */
GiveFixedPoints():= block
(
[s],
s:solve(f(z)=z),
/* remove "z=" from list s */
s:map('rhs,s),
s:map('rectform,s),
s:map('float,s),
return(s)
)$
compile(all);
/* ------------ */
iLength:10000;
s:GiveListOfCriticalPoints(f(z));
multiplicities;
length(s);
Orbits:[];
for i:1 thru length(s) step 1 do
(
Orbit:GiveOrbit(s[i],iLength),
Orbits:append(Orbit,Orbits)
);
/*-----------------------------------------------------------------------*/
load(draw); /* ( interface to gnuplot ) by Mario Rodriguez Riotorto http://www.telefonica.net/web2/biomates */
draw2d(
title = "All critical orbits for f(z)=z^14 -z ",
terminal = png,
user_preamble = "set angles degrees; set grid polar 6.923; set xtics 0.81627464167066; set mxtics 0.81627464167066; set size square", /* 360/26=13.85 ; 360/(2*26)=6,923 */
file_name = concat("~/maxima/parabolic/critical_orbits/z14plusmz/z14minusz/",string(iLength),"b_52"),
pic_width = 1000, /* Since Maxima 5.23, pic_width and pic_height are deprecated. */
pic_height = 1000, /* See option dimensions. To get the same effect, write dimensions=[800,600] */
yrange = [-1.0,1.0],
xrange = [-1.0,1.0],
xlabel = "z.re ",
ylabel = "z.im",
point_type = filled_circle,
points_joined = false,
point_size = 0.7,
key=" critical orbit ",
color =red,
points(Orbits),
point_size = 1.2,
key= "critical points",
color = blue,
points(map(realpart,s),map(imagpart,s)),
key= "fixed parabolic point",
color = black,
points([[0,0]])
);
References
Captions
Add a one-line explanation of what this file represents
Items portrayed in this file
depicts
some value
4 March 2013
image/png
37bc8c6b5c3c9491ae84cf66debffa81c3123472
38,297 byte
1,000 pixel
1,000 pixel
File history
Click on a date/time to view the file as it appeared at that time.
| Date/Time | Thumbnail | Dimensions | User | Comment | |
|---|---|---|---|---|---|
| current | 07:35, 10 March 2013 | 1,000 × 1,000 (37 KB) | wikimediacommons>Soul windsurfer | polar grid |
File usage
The following 2 pages use this file: