New Pisot tiling from Shigeki Akiyama




http://mathweb.sc.niigata-u.ac.jp/~akiyama/Research2.html


Shigeki Akiyama, Pisot number syetem and its dual tiling,
`Physics and Theoretical Computer Science' , ed. by J.P. Gazeau
et al., IOS Press (2007) 133-154. PDF
<http://mathweb.sc.niigata-u.ac.jp/%7Eakiyama/papers/cargese_note.pdf>


He calls his new tile a Periodic sofic tiling associated with the Pisot polynomial:
x^3-3*x^2+2*x-1
( I had named this type of Pisot as a count down because of the 3,2,1... )
NSolve[x^3 - 3*x^2 + 2*x - 1 == 0, x]
{{x -> 0.337641 - 0.56228 *I}, {x -> 0.337641 + 0.56228*I}, {x -> 2.32472}}
A095263 <http://www.research.att.com/%7Enjas/sequences/A095263> Gary Adamson:
( I don't think Gary was aware that a tile was associated with this particular Pisot)
a[1] = 1; a[2] = 3; a[3] = 7;
a[n_] := a[n] = 3a[n - 1] - 2a[n - 2] + a[n - 3];
Table[ a[n], {n, 22}]

Matrix Markov:M = {{0, 1, 0}, {0, 0, 1}, {1, -2, 3}}
v[1] = {0, 0, 1}
v[n_] := v[n] = M.v[n - 1];
a1 = Table[v[n][[1]], {n, 1, 50}]
a2 = Table[v[n][[2]], {n, 1, 50}]
a3 = Table[v[n][[3]], {n, 1, 50}]

Substition for the matrix is:
1->2
2->3
3->1,-2,-2,3,3,3



Relevant Pages

  • Re: practile uses for fractal holes
    ... It seems to me that this cannot be a tile. ... probability of selecting each transform hasn't been set equal to the ... associated with every Perron Number (and Perron and Pisot Numbers ... I have another conjecture based on the McWorter hole sets that we ...
    (sci.fractals)
  • Re: Theta one tile
    ... In fact the same procedure works with the golden mean to give an L tile as well. ... It's not obvious to the eye, as it is obscured by the fact that the probability of selecting each transform hasn't been set equal to the areal reduction caused by the transform, but it looks as if there's a rectangular area of overlap in the middle, and a narrow gap between the two copies leading in from the upper left edge. ... There is a theorem to the effect that there is at least one tile associated with every Perron Number (and Perron and Pisot Numbers are fairly closely related), and a construction for generating a tile given a Perron Number. ...
    (sci.fractals)