File:Iray.png
Summary
Description |
English: Internal ray for angle 1/3 of main cardioid of Mandelbrot set as an image of internal ray of unit circle under conformal map which has the explicit equation Polski: Obraz koła jednostkowego i jego wewnętrznego promienia o kącie 1/3 po zasosowaniu funkcji konforemnej |
Date | 4 October 2008 (upload date) |
Source | Own work by uploader in Maxima and Gnuplot with help of many people ( see references ) |
Author | Adam majewski |
Long description
compare with
- Mandelbrot set - multiplier map, internal rays , internal coordinate
Definitions
- Coordinates of point in exponential form are :
- Unit circle is a boundary of unit disk
- Internal ray of angle of unit circle is :
Maxima source code
/* batch file for maxima */ NmbrOfPnts:100; /* ------------------------ definitions -------------------------*/ gamma1(w):=w/2-w*w/4; /* conformal map from circle to cardioid */ l(t,r):=r*%e^(%i*t*2*%pi); /* exponential for of complex number with angle in turns */ GiveIntRayOfCircleL(angle,NmbrOfPnts):= makelist(rectform(ev(l(angle,j/NmbrOfPnts), numer)),j, 0,NmbrOfPnts); GiveUnitCircleL(NmbrOfPnts):= makelist(rectform(ev(l(j/NmbrOfPnts,1), numer)),j, 0,NmbrOfPnts); /* ------------------ computes points of circle and ray ------------------*/ circleList:GiveUnitCircleL(100); rayCircleList:GiveIntRayOfCircleL(1/3,100); /* ------------------- conformal mapping from circle to cardioid ----------------*/ cardioidList: map(gamma1, circleList); rayCardioidList:map(gamma1, rayCircleList); /* ---------- ------------ drawing -------------------------*/ load(draw); /* Mario Rodríguez Riotorto http://www.telefonica.net/web2/biomates/maxima/gpdraw/index.html */ draw(file_name = "iray", pic_width=1000, pic_height= 500, terminal = 'png, columns = 2, gr2d(title = " unit circle D={w:abs(w)=1 } with internal ray for angle 1/3", points_joined =true, color = red, point_type = 0, points(map(realpart,circleList),map(imagpart,circleList)), color = green, points(map(realpart,rayCircleList),map(imagpart,rayCircleList)) ), gr2d(title = "cardioid with internal_ray(1/3) as an image of circle under map gamma1(w):=w/2-w*w/4;", points_joined =true, color = blue, point_type = 0, points(map(realpart,cardioidList),map(imagpart,cardioidList)), color = green, points(map(realpart,rayCardioidList),map(imagpart,rayCardioidList))) );
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. |
You may select the license of your choice.