File:Fixed.png

Summary

Description
English: Fixed points of complex quadratic map for c along horizontal axis
Source Own work
Author Adam majewski

Maxima CAS src code

/* functions for computing fixed points ;   */ 
give_beta(_c):= (1+sqrt(1-4*_c))/2 $  /* maxima sqrt can handle negative numbers */
give_alfa(_c):= (1-sqrt(1-4*_c))/2 $ 
xMax:1;
xMin:-1.39;
yMin:-1;
yMax:2; 
/* root points */
p_pts:[-0.75,0.25];
py:[yMin,yMin];
/* centers of hyperbolic components of F1/2 family ( on real axis) */
centers:[0]; /* periods: 1 */
cy:[yMin];
load(draw);
draw2d(
 user_preamble="set border 3",
 terminal = png,
 file_name="fixed",
 pic_height= 1000,
 pic_width= 1000,
 title       = "fixed z-points for c along horizontal axis  for fc(z)= z*z +c ",
 ylabel     = "z-point",
 xlabel     = "c-coefficient",
 /* yrange = [yMin,yMax],
 /* period 1 */
 key    = " beta",
 color  = red,
 explicit(give_beta,x,xMin,xMax),
 key    = " alfa",
 color  = blue,
 explicit(give_alfa,x,xMin,xMax),
 /* grid and tics */
 xtics      = {-2,-1.25,-1,-3/4,0,0.25}, 
 /* -2,root points,centers, 0 */
 /*xtics_axis = true,  plot tics on x-axis */
 xtics_rotate = true,
 ytics      = {-2,-1,-0.5,0,0.5,1,1.5,2},
 grid       = true, /* draw grid*/
 /* special points */
 point_type    = filled_circle,
 point_size    = 1.5,
 points_joined = false,
 color         = black,
 key           = "parabolic points",
 points(p_pts,py),
 color         = red,
 key           = "centers",
 points(centers,cy)
)$

Licensing

I, the copyright holder of this work, hereby publish it under the following licenses:
w:en:Creative Commons
attribution share alike
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.
Category:CC-BY-SA-3.0#Fixed.png
GNU head 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.
Category:License migration redundant#Fixed.pngCategory:GFDL#Fixed.png
You may select the license of your choice.
Category:Self-published work Category:Images with Maxima CAS source code Category:Gnuplot graphics Category:Period-doubling bifurcation
Category:CC-BY-SA-3.0 Category:GFDL Category:Gnuplot graphics Category:Images with Maxima CAS source code Category:License migration redundant Category:Period-doubling bifurcation Category:Self-published work