You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This document provides a comprehensive mathematical formalization of the yin-yang fractal—a recursive geometric pattern that has circulated in fractal art communities without formal mathematical documentation. We present coordinate systems, recursive definitions, scaling properties, and topological characteristics of this self-similar structure.
1. Basic Geometric Definition
1.1 The Traditional Yin-Yang Symbol
The classical yin-yang symbol $\mathcal{Y}_0$ can be defined in the complex plane as a union of regions within the unit circle $|z| \leq 1$:
In Cartesian coordinates centered at the origin with radius $R$, the symbol consists of:
Main circle:$(x, y) \in \mathbb{R}^2$ where $x^2 + y^2 \leq R^2$
Upper small circle:$(x, y)$ where $x^2 + (y - \frac{R}{2})^2 \leq (\frac{R}{2})^2$
Lower small circle:$(x, y)$ where $x^2 + (y + \frac{R}{2})^2 \leq (\frac{R}{2})^2$
Dividing curve (S-curve): The boundary between black and white regions follows:
$$x = 0 \text{ for } |y| \geq \frac{R}{2}$$$$x^2 + (y - \frac{R}{2})^2 = (\frac{R}{2})^2 \text{ for } y > 0$$$$x^2 + (y + \frac{R}{2})^2 = (\frac{R}{2})^2 \text{ for } y < 0$$
2. Recursive Definition of the Fractal
2.1 The Iterated Function System (IFS)
The fractal yin-yang $\mathcal{Y}_\infty$ is generated by an iterated function system with two contractive transformations:
where $\cong$ denotes geometric congruence up to color inversion.
9.3 Dihedral Properties
The fractal structure does not have reflection symmetry due to the S-curve, but it exhibits:
Point symmetry about the origin
2-fold rotational symmetry
Fractal self-similarity
10. Open Problems and Conjectures
10.1 Exact Hausdorff Dimension
Conjecture: The Hausdorff dimension of the boundary curves in the fractal yin-yang converges to a value $D_H \approx 1.5 - 1.7$ (between a smooth curve and a space-filling curve).
10.2 Optimal Recursion Depth
Question: What is the optimal recursion depth $d^*$ that maximizes visual complexity while minimizing computational cost?
Open Problem: Can the yin-yang fractal be meaningfully extended to 4D or higher dimensions while preserving its essential complementary duality?
10.4 Mathematical Origin
Historical Question: Can we trace the first formal mathematical description of this pattern? Current evidence suggests it emerged from fractal art communities circa 1990s-2000s, but documentation is scarce.
11. Conclusion
The fractal yin-yang represents an elegant intersection of ancient symbolism and modern fractal geometry. Its mathematical structure reveals:
Clear recursive self-similarity with scaling factor $1/2$
Topological richness with exponentially growing connected components
Computational feasibility up to 7-8 recursion levels
A dimension near 2 for the filled regions, with complex boundary structures
This analysis provides the first comprehensive mathematical framework for a pattern that has existed primarily as an artistic curiosity. Further research could explore its connections to chaos theory, complex dynamics, and philosophical interpretations of complementary duality.
References
Mandelbrot, B. (1982). The Fractal Geometry of Nature. W.H. Freeman.
Traditional I Ching and Taoist philosophical texts on yin-yang symbolism.
Online fractal art communities on Reddit, pinterest, and other communities where this pattern has circulated.
Appendix: Implementation Notes
The code implementation uses:
Recursive function calls matching the mathematical IFS definition
Depth limiting via base case $d \leq 0$
Geometric transformations via canvas/WebGL matrix operations
Rotation matrices applied at each timestep for animation
The mathematical formulas directly correspond to the code structure, making this a verifiable computational realization of the theoretical constructs described above.