File:Circle to cardioid.svg
Original file (SVG file, nominally 1,000 × 500 pixels, file size: 12 KB)
Captions
Summary
[edit]DescriptionCircle to cardioid.svg |
English: Conformal mapping from circle to cardioid |
Date | |
Source | Own work |
Author | Adam majewski |
Licensing
[edit]- 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.
Long description
[edit]Cardioid is an image of circle under complex map [1]. It can be seen in nature[2]
where :
- is a circle with center at the origin and radius=1
- Cardioid is a boundary or period=1 hyperbolic component of Mandelbrot set
- is a complex map from circle to cardioid
or in other words :
Explicit equation of this map is :
Compare with inverse multiplier map [3]:
Maxima source code
[edit] /*
batch file for Maxima CAS
http://maxima.sourceforge.net/
conformal mapping from :
the circle with center=0 and radius=1/2
given by equation : abs(2*z)=1
where : z:x+y*%i=r*cos(t)+%i*r*sin(t) =
onto
cardioid ( boundary of main hyperbolic component of Mandelbrot set
is given by equation:
c:w-w*w;
based on :Conformal Mappings And The Area Of The Mandelbrot Set by David Allingham page 18
http://www.eng.warwick.ac.uk/staff/doa/reports/allingham-thesis1995.pdf
Adam Majewski
*/
kill(all);
remvalue(all);
/* ----------- functions ---------------------*/
/* conformal map */
f(w):=w/2-w*w/4;
/*
circle D={w:abs(2w)=1 } where w=l(t)
t is angle in turns ; 1 turn = 360 degree = 2*Pi radians
*/
l(t):=%e^(%i*t*2*%pi);
compile(all)$
/* ---- const ----*/
iMax:100; /* number of points to draw */
dt:1/iMax;
/* point to point method of drawing */
t:0; /* angle in turns */
/* compute first point of curve, create list and save point to this list */
/* point of unit circle w:l(t); */
w:rectform(ev(l(t), numer));
circleList:makelist (w, j, 1, 1);
while (t<=1) do
( t:t+dt,
w:rectform(ev(l(t), numer)),
circleList:cons(w,circleList)
);
/* conformal mapping from circle to cardioid */
cardioidList: map(f, circleList);
/* convert one list into 2 lists */
xxCircle:map(realpart, circleList);
yyCircle:map(imagpart, circleList);
/* convert one list into 2 lists */
xxCardioid:map(realpart, cardioidList);
yyCardioid:map(imagpart, cardioidList);
/* ------------ draw ----------------------------- */
path:"~/maxima/batch/mandelbrot/circe2cardioid/"$ /* pwd */
FileName:"a5"$
load(draw); /* Mario Rodríguez Riotorto http://www.telefonica.net/web2/biomates/maxima/gpdraw/index.html */
draw(
file_name = concat(path,FileName),
dimensions=[1000,500],
terminal = 'svg,
columns = 2,
gr2d(title = " circle D=\\{w:abs(w)=1 \\} ",
points_joined =true,
color = red,
point_type = 0,
points(xxCircle,yyCircle)),
gr2d(title = "cardioid \\{c: c = w/2-w*w/4 \\} ",
points_joined =true,
color = blue,
point_type = 0,
points(xxCardioid,yyCardioid))
);
References
[edit]- ↑ 3D-XplorMath \ Conformal Maps \ a*z^b+b*z
- ↑ Cardioid as a shadow of ring. Foto by Sebastian Tkacz
- ↑ Boundary of components of Mandelbrot set computed using boundary equations
</syntaxhighlight>
File history
Click on a date/time to view the file as it appeared at that time.
Date/Time | Thumbnail | Dimensions | User | Comment | |
---|---|---|---|---|---|
current | 14:29, 9 May 2014 | 1,000 × 500 (12 KB) | Soul windsurfer (talk | contribs) | better text on the image, because of enhaced syntax : \\{ | |
16:25, 4 May 2014 | 1,000 × 500 (12 KB) | Soul windsurfer (talk | contribs) | User created page with UploadWizard |
You cannot overwrite this file.
File usage on Commons
The following page uses this file:
Metadata
This file contains additional information such as Exif metadata which may have been added by the digital camera, scanner, or software program used to create or digitize it. If the file has been modified from its original state, some details such as the timestamp may not fully reflect those of the original file. The timestamp is only as accurate as the clock in the camera, and it may be completely wrong.
Short title | Gnuplot |
---|---|
Image title | Produced by GNUPLOT 4.6 patchlevel 4 |
Width | 1000 |
Height | 500 |