Puoi aprire il codice e modificare la funzione: vedi l'Help
You can open the Code and modify the function: see the Help
HELP

Il quadrato [0,1]×[0,1] e 3 suoi punti trasformati da z → z²+z
The square [0,1]×[0,1] and 3 of its points trasformed by z → z²+z

x+iy → (x+iy)^2 + (x+iy)  =  x^2 + i (2 x y + y) + x - y^2
(x, y)  →  (x^2 + x - y^2,  2 x y + y)

function f(x) { y = 1/0; return y } ... aX = -1; bX = 2; aY = 0; bY = 3 Dx = 1; Dy = 1 ... // Con/with Qx=[a,b,..]; Qy=[A,B,..] i punti sono gialli / the points are yellow // Con/with Q1x,Q1y, Q2x,Q2y, Q3x,Q3y rossi,celesti,verdi / red,cyan,green // with QQ1x,QQ1y, QQ2x,QQ2y very little light red,blue i=0 for(j=0; j < 2e4; j=j+1) {xx=Math.random(); yy=Math.random(); xp=xx*xx+xx-yy*yy; yp=2*xx*yy+yy; QQ1x[i]=xp; QQ1y[i]=yp; i=i+1} Q1x[1]=1; Q1y[1]=3; Q2x[2]=0.5; Q2y[2]=1; Q3x[3]=-1/4; Q3y[3]=2