Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

monotile notebook #238

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
106 changes: 106 additions & 0 deletions doc/examples/monotile.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
---
jupytext:
formats: ipynb,md:myst
text_representation:
extension: .md
format_name: myst
format_version: 0.13
jupytext_version: 1.14.6
kernelspec:
display_name: SageMath 9.7
language: sage
name: sagemath
---

# Playing with the monotile

The monotile is a polygon that tiles the plane by rotation and reflections. Interestingly
one can build two translation surfaces out of it.

The monotile is the following polygon.
```{code-cell}
from flatsurf import Polygon, MutableOrientedSimilaritySurface

K = QuadraticField(3)
a = K.gen()

# build the vectors
l = [(1, 0), (1, 2), (a, 11), (a, 1), (1, 4), (1, 6), (a, 3),
(a, 5), (1, 8), (1, 6), (a, 9), (a, 7), (1, 10), (1, 0)]
vecs = []
for m, e in l:
v = vector(K, [m * cos(2*pi*e/12), m * sin(2*pi*e/12)])
vecs.append(v)
p = Polygon(edges=vecs)
videlec marked this conversation as resolved.
Show resolved Hide resolved
```

One can build translation surfaces by gluing parallel edges. There is an
ambiguity in doing so because of the horizontal segments. We a surface
videlec marked this conversation as resolved.
Show resolved Hide resolved
`Sbase` where non-ambiguous gluings are performed.
```{code-cell}
from collections import defaultdict
d = defaultdict(list)
for i, e in enumerate(p.edges()):
e.set_immutable()
d[e].append(i)
```

```{code-cell}
Sbase = MutableOrientedSimilaritySurface(K)
_ = Sbase.add_polygon(p)
for v in list(d):
if v in d:
indices = d[v]
v_op = -v
v_op.set_immutable()
opposite_indices = d[v_op]
assert len(indices) == len(opposite_indices), (len(indices), len(opposite_indices))
if len(indices) == 1:
del d[v]
del d[v_op]
Sbase.glue((0, indices[0]), (0, opposite_indices[0]))
```

Next we recover the ambiguous edges and build the two possible remaining gluings.
```{code-cell}
assert len(d) == 2
(i0, j0), (i1, j1) = d.values()
```

```{code-cell}
S1 = MutableOrientedSimilaritySurface.from_surface(Sbase)
S1.glue((0, i0), (0, i1))
S1.glue((0, j0), (0, j1))
S1.set_immutable()
```

```{code-cell}
S2 = MutableOrientedSimilaritySurface.from_surface(Sbase)
S2.glue((0, i0), (0, j1))
S2.glue((0, j0), (0, i1))
S2.set_immutable()
```

We indeed obtain translation surfaces
```{code-cell}
print(S1.category())
print(S2.category())
```

And one can compute their genera
```{code-cell}
print(S1.genus(), S2.genus())
```

and strata
```{code-cell}
print(S1.stratum(), S2.stratum())
```

```{code-cell}
S1.triangulate()
```

```{code-cell}
S2.triangulate()
```
Comment on lines +121 to +128
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did you want to comment on these or just leave them like this?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did you want to comment on these or just leave them like this?

For now I just want to play with the surface to test what works and what does not work. I would prefer #93 to be solved first.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ideally, I would also like to visualize the plane tiling using rotation/reflection of the tile.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ideally, I would also like to visualize the plane tiling using rotation/reflection of the tile.

It would not be hard to extend hyperbolic tessellations to tilings of the plane.

3 changes: 3 additions & 0 deletions doc/news/monotile.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
**Added:**

* monotile notebook example
videlec marked this conversation as resolved.
Show resolved Hide resolved
Loading