Update
This commit is contained in:
parent
490ffab10e
commit
ee83d8a6b6
38 changed files with 2053 additions and 2030 deletions
|
@ -1,12 +1,12 @@
|
|||
# Julia Set
|
||||
|
||||
Julia sets (named after mathematician *Gaston Julia*) are [sets](set.md) of 2D points that are very similar to [Mandelbrot set](mandelbrot_set.md) and just as Mandelbrot set they typically (but not always) have a [fractal](fractal.md) shape. While there is only one Mandelbrot set, there are [infinitely](infinity.md) many Julia sets because in the equation defining Julia set (which has the same format as for Mandelbrot set, just with different variables) there is a parameter we can change to get a different set. Specifically for any [complex number](complex_number.md) (which we may see as a point in 2D plane) there is one Julia set.
|
||||
Julia sets (named after [mathematician](math.md) *Gaston Julia*) are [sets](set.md) of 2D points which upon plotting show a [fractal](fractal.md) shape visually resembling the [Mandelbrot set](mandelbrot_set.md). While the Mandelbrot set is only one, there are [infinitely](infinity.md) many Julia sets because in the [equation](equation.md) defining Julia set (which has the same format as for Mandelbrot set, just with different variables) there is a parameter that dictates the shape of the whole set: specifically for any [complex number](complex_number.md) (which we may see as a point in 2D plane) there is one Julia set.
|
||||
|
||||
The **definition** of Julia set will follow (there is actually a more general one, but we'll stick to the narrower, most common one), notice how the equation is similar to that of Mandelbrot set. Initially we pick a constant complex number *c* that will define the whole set; then for each complex number *z* (a point in 2D plane for which we want to see if it belongs to the set or not) we consider the following iteration:
|
||||
The **definition** of Julia set will follow (there is actually a more general one, but we'll stick to the most common one), notice the similarity between the equation and the one for the Mandelbrot set. Initially we pick a constant complex number *c* that will define the whole set; then for each complex number *z* (a point in 2D plane for which we want to see if it belongs to the set or not) we consider the following iteration:
|
||||
|
||||
*z[n + 1] = z[n]^2 + c*
|
||||
|
||||
Then we see if under infinitely many iterations this series diverges towards infinity or if it stays bounded. If the point didn't in fact diverge, it belongs to the set, otherwise not. Should we be visualizing the set with a [computer](computer.md), we [approximate](approximation.md) this infinite iteration by performing just a big number of iterations.
|
||||
Then we see if under [infinitely](infinity.md) many iterations this series diverges towards infinity or if it stays bounded. If the point didn't in fact diverge, it belongs to the set, otherwise not. Should we be visualizing the set with a [computer](computer.md), we [approximate](approximation.md) this infinite iteration by performing just a big number of iterations.
|
||||
|
||||
The following is a picture of one possible Julia set:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue