Class JuliaSet
java.lang.Object
org.episteme.core.mathematics.analysis.chaos.JuliaSet
Julia Set as a proper mathematical set.
For a given complex parameter c, the Julia set J_c ⊂ ℂ is defined as: J_c = { z ∈ ℂ : the sequence z₀ = z, zₙ₊₠= zₙ² + c remains bounded }
References
- Gaston Julia, "Mémoire sur l'itération des fonctions rationnelles", Journal de Mathématiques Pures et Appliquées, Vol. 8, 1918, pp. 47-245
- Benoit B. Mandelbrot, "The Fractal Geometry of Nature", W.H. Freeman and Company, 1982 (popularized Julia sets)
- Since:
- 1.0
- Author:
- Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanTests whether this set contains the specified element.Returns a human-readable description of this set.intintbooleanisEmpty()Returnstrueif this set contains no elements.
-
Constructor Details
-
JuliaSet
-
JuliaSet
-
-
Method Details
-
contains
Description copied from interface:SetTests whether this set contains the specified element.This is the fundamental operation of a set - membership testing.
-
isEmpty
public boolean isEmpty()Description copied from interface:SetReturnstrueif this set contains no elements.The empty set (∅) is a fundamental concept in set theory. It is the unique set containing no elements.
-
description
Description copied from interface:SetReturns a human-readable description of this set.Examples:
- "â„ (Real Numbers)"
- "ℤ/12ℤ (Integers modulo 12)"
- "{1, 2, 3, 4, 5}"
- Specified by:
descriptionin interfaceSet<Complex>- Returns:
- a description of this set
-
escapeTime
-
getParameter
-
getMaxIterations
public int getMaxIterations()
-