Contents

Contents

The Circle Illusion: Symmetry, Geometry, and Visual Distortion

Contents

This article explores the geometric circle illusion created with LaTeX TikZ, where concentric circles and rotated squares interact to produce visual distortion despite perfect mathematical symmetry.


Note
Note: This article was generated with the help of AI technology and has been manually reviewed to ensure accuracy and clarity.

In the realm of visual perception, simple geometry can create complex illusions. One such case is the concentric circle illusion, where repeated circular patterns appear distorted when combined with rotated square elements. This article explains how to construct the pattern using LaTeX TikZ and explores how the human visual system interprets these shapes, creating a misleading sense of imbalance or curvature.

\documentclass[border=10pt,tikz]{standalone}
\pagecolor{gray!5}
\begin{document}
    \begin{tikzpicture}[x=4cm,y=4cm,every rectangle node/.style={draw,thick,red,rotate=45,minimum width=0.707*4cm,minimum height=0.707*4cm}]
        \foreach \y in {1,...,3}
            \foreach \x in {1,...,3}{%
                \foreach \diameter in {1,...,6}
                    \draw[gray,thick] (\x,\y) circle (1/12*\diameter);
                \node[rectangle] at (\x,\y) {};
            }
    \end{tikzpicture}
\end{document}
\documentclass[border=10pt,tikz]{standalone}
\pagecolor{gray!5}
\begin{tikzpicture}[x=4cm,y=4cm,...]
every rectangle node/.style={draw,thick,red,rotate=45,minimum width=0.707*4cm,minimum height=0.707*4cm}

Defines the appearance of square nodes:

  • draw,thick,red: Draws red squares with thick borders.
  • rotate=45: Rotates each square by 45°, forming a diamond shape.
  • Dimensions (0.707*4cm) ensure proper scaling after rotation (√2/2 × 4 cm).

\foreach \y in {1,...,3}
    \foreach \x in {1,...,3}{ ... }
\foreach \diameter in {1,...,6}
    \draw[gray,thick] (\x,\y) circle (1/12*\diameter);
\node[rectangle] at (\x,\y) {};
Visual FactorPerceptual Effect
Diagonal squaresCreate tension and apparent skew
Concentric circlesReinforce radial focus
Neutral colorsMaintain balance between shapes
Together, they form an impression of distortion even though all elements are mathematically aligned.
ParameterFunctionVisual Impact
Number of circles (1,...,6)Controls layeringMore circles amplify depth illusion
Square colore.g., blue or orangeAlters focal emphasis
Rotation angleChange to 30° or 60°Shifts perceived distortion
Circle spacingModify 1/12 to 1/10Changes density and overlap
Example variation:
\node[rectangle,draw=blue,rotate=30] at (\x,\y) {};

This pattern demonstrates how geometry influences perception:

  • Cognitive psychology: illustrates orientation conflict and visual interpretation.
  • Geometric art: transforms mathematical symmetry into aesthetic patterns.
  • Information visualization: helps understand alignment perception.
  • Design: used in architecture and optical art for dynamic compositions.

  1. Gregory, R. L. (1997). Eye and Brain: The Psychology of Seeing. Oxford University Press.
  2. Coren, S., & Girgus, J. S. (1978). Seeing is Deceiving: The Psychology of Visual Illusions. Lawrence Erlbaum.
  3. Ware, C. (2013). Information Visualization: Perception for Design. Morgan Kaufmann.
  4. PGF/TikZ Manual, Version 3.1.10 (2023).

Written by: Aan Triono License: CC BY-SA 4.0

Related Content