This is a file from the Wikimedia Commons

File:Siegel disk and external rays for fc(z) = z*z+c where c = -0.749998153581339 +0.001569040474910*I; t = 0.49975027919634618290.png

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Original file(2,001 × 2,001 pixels, file size: 15 KB, MIME type: image/png)

Summary

Description
English: Siegel disk and external rays for fc(z) = z*z+c where c = -0.749998153581339 +0.001569040474910*I; t = 0.49975027919634618290
Date
Source Own work
Author Adam majewski
Other versions

see also

c src code

// dot product 
double dot(complex double a, complex double b){

	// ax*bx + ay*by
	return creal(a)*creal(b) + cimag(a)*cimag(b);
}


int InverseIterationAndDrawSegment (int per, complex double zz[per], unsigned char A[]){
	
	int p;
	int pMax = per;
	complex double z;
	
	
	// compute preimages
	for(p=0; p<pMax; ++p){
		z = zz[(p+1) % per]; //read point from the ray p+1 
		z = csqrt(z-c); // inverse iteration = preimage;  fc(z) maps  z_{l,j} to z_{l-1,j+1}} so f^{-1} map to z_{l+1, j-1}
		
		// choose correct preimage using dot product 
		if (dot(zz[p],z) < 0 ) z = - z; 
		// draw segment of ray p
		DrawClippedLineSegment(zz[p],z, 255, A);
		zz[p] = z; //save 
	}
	
  	return 0; 

}




int DrawExternalDynamicRaysBI (int n, int m, int period, int iMax, unsigned char A[])
{ 
  	int i = 0; // iteration = number of points
  	double r = 10000.0; // very big radius = near infinity where  z=w so one can swith to dynamical plane ( Boettcher conjugation )
  	complex double zz[period]; // zz is an array of z  
  
  	double t;
  	int p;
  	int pMax = period; // number of rays to draw 
  
   
  	// initial points  on pMax rays
  	t = (double)n/m; // first external angle in turns	
  	
  	for(p=0; p<pMax; ++p){
  		
  		zz[p] =  r*cexp(2.0*I * M_PI * t ); // Euler's formula gives initial point on the p ray
  		t *= 2.0; // t = 2*t  = angle doubling map ; gives next angle 
      	  	}
  
	for (i = 0; i < iMax; ++i)
    		 
    		InverseIterationAndDrawSegment(period, zz, A); // inverse iteration of  complex quadratic polynomial:  with proper choose of preimage 
      	return 0;
}

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International 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.

Captions

Siegel disk and external rays for fc(z) = z*z+c where c = -0.749998153581339 +0.001569040474910*I; t = 0.49975027919634618290

Items portrayed in this file

depicts

18 February 2019

image/png

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current19:55, 18 February 2019Thumbnail for version as of 19:55, 18 February 20192,001 × 2,001 (15 KB)Soul windsurferUser created page with UploadWizard

Metadata