introduction self avoiding and non crossing paths about
play

Introduction Self avoiding and non-crossing paths About the shape - PowerPoint PPT Presentation

Introduction Self avoiding and non-crossing paths About the shape Tilings Sre cko Brlek Words2011: words and digital geometry Introduction Self avoiding and non-crossing paths About the shape Tilings Discrete Applied Mathematics 139


  1. Introduction Self avoiding and non-crossing paths About the shape Tilings Tile recognition : Given a word w ∈ Σ ∗ 1. check if it is a boundary word Sreˇ cko Brlek Words2011: words and digital geometry

  2. Introduction Self avoiding and non-crossing paths About the shape Tilings Tile recognition : Given a word w ∈ Σ ∗ 1. check if it is a boundary word : w is closed Sreˇ cko Brlek Words2011: words and digital geometry

  3. Introduction Self avoiding and non-crossing paths About the shape Tilings Tile recognition : Given a word w ∈ Σ ∗ 1. check if it is a boundary word : w is closed and does not intersect itself Sreˇ cko Brlek Words2011: words and digital geometry

  4. Introduction Self avoiding and non-crossing paths About the shape Tilings Tile recognition : Given a word w ∈ Σ ∗ 1. check if it is a boundary word : w is closed and does not intersect itself 2. check if it has the “right” shape : BN-factorization (later) Tile generation : 1. Build a closed word having the BN-factorization 2. check that it does not intersect itself 1 self avoiding and non crossing paths 2 about the shape 3 tilings Sreˇ cko Brlek Words2011: words and digital geometry

  5. Introduction Self avoiding and non-crossing paths Radix-trees with neighborhood links About the shape The linear algorithm Tilings Problem Given a path w ∈ Z × Z of length n, determine if w is self avoiding or intersects itself. Many solutions : ⇒ O ( n 2 ) sparse n × n matrix = list of n sorted points in = ⇒ O ( n log n ) hash table = ⇒ O ( n log n ) worst case Sreˇ cko Brlek Words2011: words and digital geometry

  6. Introduction Self avoiding and non-crossing paths Radix-trees with neighborhood links About the shape The linear algorithm Tilings Problem Given a path w ∈ Z × Z of length n, determine if w is self avoiding or intersects itself. Many solutions : ⇒ O ( n 2 ) sparse n × n matrix = list of n sorted points in = ⇒ O ( n log n ) hash table = ⇒ O ( n log n ) worst case Problem Given a non-intersecting closed path encoded by a word a , ¯ w ∈ { a , b , ¯ b } of length n, determine whether w is written clockwise or counterclockwise. Solutions : left to the reader as an exercise Sreˇ cko Brlek Words2011: words and digital geometry

  7. Introduction Self avoiding and non-crossing paths Radix-trees with neighborhood links About the shape The linear algorithm Tilings The binary representation of numbers in N × N can be stored conveniently in a dictionary (trie, radix-tree) G = ( N , R ) : Root := (0 , 0) the root has three child nodes : (00 , 01), (01 , 00), (01 , 01) each other node n = ( x , y ), with x , y ∈ { 0 , 1 } ∗ has 4 child nodes : ( x 0 , y 0) , ( x 0 , y 1) , ( x 1 , y 0) , ( x 1 , y 1) 0,0 (0,1) (1,0) (1,1) 0,1 1,0 1,1 (0,0) (0,1) (1,0) (1,1) (0,0) (0,1) (1,0) (1,1) (0,0) (0,1) (1,0) (1,1) 0,2 0,3 1,2 1,3 2,0 2,1 3,0 3,1 2,2 2,3 3,2 3,3 (0,0) (0,1) (1,0) (1,1) (0,0) (0,1) (1,0) (1,1) 4,2 4,3 5,2 5,3 6,6 6,7 7,6 7,7 Sreˇ cko Brlek Words2011: words and digital geometry

  8. Introduction Self avoiding and non-crossing paths Radix-trees with neighborhood links About the shape The linear algorithm Tilings Partioning the plane Definition ⇒ p − q ∈ − → Two points p , q ∈ Z × Z are neighbors ⇐ Σ The neighborhood relation T can be added on the tree G for every level 3 point so that G becomes G = ( N , R , T ). level 2 level 1 level 0 Figure : Partition of the plane Sreˇ cko Brlek Words2011: words and digital geometry

  9. Introduction Self avoiding and non-crossing paths Radix-trees with neighborhood links About the shape The linear algorithm Tilings The radix tree with the neighborhood relation 0,0 (0,1) (1,0) (1,1) 1,0 1,1 (0,0) (0,1) (1,0) (1,1) (0,0) (0,1) (1,0) (1,1) 2,0 2,1 3,1 2,2 b a a b (0,0) (0,1) (1,0) (1,1) 4,2 4,3 5,2 5,3 Sreˇ cko Brlek Words2011: words and digital geometry

  10. Introduction Self avoiding and non-crossing paths Radix-trees with neighborhood links About the shape The linear algorithm Tilings Observation For each coordinate, the father of each node x i is ⌊ x i 2 ⌋ , and consequently, when x i is odd, we have ( x i + 1) = ( ⌊ x i 2 ⌋ + 1) · 0 . It leads to the following computation Lemma Let G ( k ) be the complete graph representing B ≤ k × B ≤ k for some � = ( x , y ) be a node of N k . If one of the four k ≥ 1 , ǫ ∈ Σ , and z conditions holds : (i) ǫ = a and x [ k ] = 0 , (ii) ǫ = a and x [ k ] = 1 , (iii) ǫ = b and y [ k ] = 0 , (iv) ǫ = b and y [ k ] = 1 , then f ( z � + ǫ ) = f ( z � ) . Otherwise, f ( z � + ǫ ) = f ( z � ) + ǫ . Sreˇ cko Brlek Words2011: words and digital geometry

  11. Introduction Self avoiding and non-crossing paths Radix-trees with neighborhood links About the shape The linear algorithm Tilings Propagating the carry ... (1,1) (0,1) a 1011,0101 1100,0101 (0,1) (1,1) (0,1) a a 10110,01011 10111,01011 11000,01011 Figure : Adding 1 to the first coordinate in the radix tree representation. Sreˇ cko Brlek Words2011: words and digital geometry

  12. Introduction Self avoiding and non-crossing paths Radix-trees with neighborhood links About the shape The linear algorithm Tilings The linear algorithm It remains to construct dynamically the graph G w = ( N , R , T ) a ¯ w = aabb ¯ ba (0,0) (0,1) (1,0) (1,0) (0,1) (1,0) (0,1) (0,0) Sreˇ cko Brlek Words2011: words and digital geometry

  13. Introduction Self avoiding and non-crossing paths Radix-trees with neighborhood links About the shape The linear algorithm Tilings The linear algorithm a ¯ w = aabb ¯ ba (0,0) (0,1) (1,0) (1,0) (0,1) (1,0) (0,1) (0,0) Sreˇ cko Brlek Words2011: words and digital geometry

  14. Introduction Self avoiding and non-crossing paths Radix-trees with neighborhood links About the shape The linear algorithm Tilings The linear algorithm a ¯ w = aabb ¯ ba (0,0) (0,1) (1,0) (1,0) (0,1) (1,0) (0,1) (1,0) (0,0) (0,0) (2,0) Sreˇ cko Brlek Words2011: words and digital geometry

  15. Introduction Self avoiding and non-crossing paths Radix-trees with neighborhood links About the shape The linear algorithm Tilings The linear algorithm a ¯ w = aabb ¯ ba (0,0) (0,1) (1,0) (1,0) (0,1) (1,0) (0,1) (1,0) (0,1) (0,0) (0,1) (0,0) (2,1) (2,0) Sreˇ cko Brlek Words2011: words and digital geometry

  16. Introduction Self avoiding and non-crossing paths Radix-trees with neighborhood links About the shape The linear algorithm Tilings The linear algorithm a ¯ w = aabb ¯ ba (0,0) (0,1) (1,0) (1,0) (0,1) (1,1) (0,1) (1,0) (0,1) (1,1) (1,0) (0,1) (0,0) (0,0) (0,1) (1,0) (0,0) (2,2) (2,1) (2,0) Sreˇ cko Brlek Words2011: words and digital geometry

  17. Introduction Self avoiding and non-crossing paths Radix-trees with neighborhood links About the shape The linear algorithm Tilings The linear algorithm a ¯ w = aabb ¯ ba (0,0) (0,1) (1,0) (1,0) (0,1) (1,1) ( ! 1,0) (0,1) (1,0) (0,1) (1,1) (1,0) (0,1) (0,0) (0,0) (1,0) ( ! 1,0) (0,1) (1,0) (0,0) (1,2) (2,2) (2,1) (2,0) Sreˇ cko Brlek Words2011: words and digital geometry

  18. Introduction Self avoiding and non-crossing paths Radix-trees with neighborhood links About the shape The linear algorithm Tilings The linear algorithm a ¯ w = aabb ¯ ba (0,0) (0,1) (1,0) (0, ! 1) (1,0) (0,1) (1,1) ( ! 1,0) (0,1) (1,0) (0,1) (1,1) (1,0) (0, ! 1) (0,1) (0,0) (0,0) (1,0) ( ! 1,0) (0,1) (1,0) (0,0) (1,2) (2,2) (2,1) (2,0) Sreˇ cko Brlek Words2011: words and digital geometry

  19. Introduction Self avoiding and non-crossing paths Radix-trees with neighborhood links About the shape The linear algorithm Tilings The linear algorithm a ¯ w = aabb ¯ ba (0,0) (0,1) (1,0) (0, ! 1) (1,0) (0,1) (1,1) ( ! 1,0) (0,1) (1,0) (0,1) (1,1) (1,0) (1,0) (0, ! 1) (0,1) (0,0) (0,0) (1,0) ( ! 1,0) (0,1) (1,0) (0,0) (1,2) (2,2) (2,1) (2,0) Sreˇ cko Brlek Words2011: words and digital geometry

  20. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Sreˇ cko Brlek Words2011: words and digital geometry

  21. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Let w be a word on { a , b , a , b } , then - a“left turn” of w is a factor of w in { ab , ba , ab , ba } , - a“right turn” of w is a factor of w in { ab , ba , ab , ba } . Sreˇ cko Brlek Words2011: words and digital geometry

  22. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Let w be a word on { a , b , a , b } , then - a“left turn” of w is a factor of w in { ab , ba , ab , ba } , - a“right turn” of w is a factor of w in { ab , ba , ab , ba } . Definition (Alternative) Let w be the counterclockwise boundary word of a polyomino. A salient corner is a left turn, and a reentrant corner is a right turn. Sreˇ cko Brlek Words2011: words and digital geometry

  23. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Lemma (Daurat and Nivat 2003) Let w be the counterclockwise boundary word of a polyomino. Let R ( ww 1 ) be the set of its right turns and L ( ww 1 ) be the set of its left turns. Then L ( ww 1 ) − R ( ww 1 ) = 4 . Sreˇ cko Brlek Words2011: words and digital geometry

  24. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Lemma (Daurat and Nivat 2003) Let w be the counterclockwise boundary word of a polyomino. Let R ( ww 1 ) be the set of its right turns and L ( ww 1 ) be the set of its left turns. Then L ( ww 1 ) − R ( ww 1 ) = 4 . Manhattan Taxi driver’s proof : Sreˇ cko Brlek Words2011: words and digital geometry

  25. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Lemma (Daurat and Nivat 2003) Let w be the counterclockwise boundary word of a polyomino. Let R ( ww 1 ) be the set of its right turns and L ( ww 1 ) be the set of its left turns. Then L ( ww 1 ) − R ( ww 1 ) = 4 . Manhattan Taxi driver’s proof : N W E S Sreˇ cko Brlek Words2011: words and digital geometry

  26. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Lemma Let w be a closed non-crossing path written counterclockwise. Let R ( ww 1 ) be the set of its right turns and L ( ww 1 ) be the set of its left turns. Then L ( ww 1 ) − R ( ww 1 ) = 4 . Lemma Let w be a closed path. Let R ( ww 1 ) be the set of its right turns and L ( ww 1 ) be the set of its left turns. Then L ( ww 1 ) − R ( ww 1 ) ≡ 0 mod 4 . Sreˇ cko Brlek Words2011: words and digital geometry

  27. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Lemma Let w be a closed non-crossing path written counterclockwise. Let R ( ww 1 ) be the set of its right turns and L ( ww 1 ) be the set of its left turns. Then L ( ww 1 ) − R ( ww 1 ) = 4 . Lemma Let w be a closed path. Let R ( ww 1 ) be the set of its right turns and L ( ww 1 ) be the set of its left turns. Then L ( ww 1 ) − R ( ww 1 ) ≡ 0 mod 4 . Exercice : hexagonal grids. Sreˇ cko Brlek Words2011: words and digital geometry

  28. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition (Euclidean convexity) A subset S ⊂ r 2 is said convex if for any pair of points x , y ∈ S, the line segment joining x to y is entirely included in S. Sreˇ cko Brlek Words2011: words and digital geometry

  29. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition (Euclidean convexity) A subset S ⊂ r 2 is said convex if for any pair of points x , y ∈ S, the line segment joining x to y is entirely included in S. Sreˇ cko Brlek Words2011: words and digital geometry

  30. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition (Euclidean convexity) A subset S ⊂ r 2 is said convex if for any pair of points x , y ∈ S, the line segment joining x to y is entirely included in S. y x Sreˇ cko Brlek Words2011: words and digital geometry

  31. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition (Euclidean convexity) A subset S ⊂ r 2 is said convex if for any pair of points x , y ∈ S, the line segment joining x to y is entirely included in S. y x Sreˇ cko Brlek Words2011: words and digital geometry

  32. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition (Euclidean convexity) A subset S ⊂ r 2 is said convex if for any pair of points x , y ∈ S, the line segment joining x to y is entirely included in S. y x Sreˇ cko Brlek Words2011: words and digital geometry

  33. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition (Euclidean convexity) A subset S ⊂ r 2 is said convex if for any pair of points x , y ∈ S, the line segment joining x to y is entirely included in S. y x Sreˇ cko Brlek Words2011: words and digital geometry

  34. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition (Euclidean convexity) A subset S ⊂ r 2 is said convex if for any pair of points x , y ∈ S, the line segment joining x to y is entirely included in S. y x Sreˇ cko Brlek Words2011: words and digital geometry

  35. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition (Euclidean convexity) A subset S ⊂ r 2 is said convex if for any pair of points x , y ∈ S, the line segment joining x to y is entirely included in S. y x Sreˇ cko Brlek Words2011: words and digital geometry

  36. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition (Euclidean convexity) A subset S ⊂ r 2 is said convex if for any pair of points x , y ∈ S, the line segment joining x to y is entirely included in S. y x Sreˇ cko Brlek Words2011: words and digital geometry

  37. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Sreˇ cko Brlek Words2011: words and digital geometry

  38. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Sreˇ cko Brlek Words2011: words and digital geometry

  39. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Sreˇ cko Brlek Words2011: words and digital geometry

  40. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition (Minsky et Papert 1969, Slansky 1970) A subset S ⊂ Z 2 is digitally convex if it is the discretization of a convex Euclidean figure. Sreˇ cko Brlek Words2011: words and digital geometry

  41. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition (Minsky et Papert 1969, Slansky 1970) A subset S ⊂ Z 2 is digitally convex if it is the discretization of a convex Euclidean figure. Sreˇ cko Brlek Words2011: words and digital geometry

  42. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition (Minsky et Papert 1969, Slansky 1970) A subset S ⊂ Z 2 is digitally convex if it is the discretization of a convex Euclidean figure. Sreˇ cko Brlek Words2011: words and digital geometry

  43. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition (Minsky et Papert 1969, Slansky 1970) A subset S ⊂ Z 2 is digitally convex if it is the discretization of a convex Euclidean figure. Sreˇ cko Brlek Words2011: words and digital geometry

  44. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition (Minsky et Papert 1969, Slansky 1970) A subset S ⊂ Z 2 is digitally convex if it is the discretization of a convex Euclidean figure. Remark : connexity may fail ! Sreˇ cko Brlek Words2011: words and digital geometry

  45. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition A discrete figure is a finite 8 -connected subset of Z 2 , without holes. Sreˇ cko Brlek Words2011: words and digital geometry

  46. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition A discrete figure is a finite 8 -connected subset of Z 2 , without holes. Sreˇ cko Brlek Words2011: words and digital geometry

  47. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition A discrete figure is a finite 8 -connected subset of Z 2 , without holes. Sreˇ cko Brlek Words2011: words and digital geometry

  48. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition A discrete figure is a finite 8 -connected subset of Z 2 , without holes. Sreˇ cko Brlek Words2011: words and digital geometry

  49. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition (Kim) A discrete figure F ⊂ Z 2 is digitally convex if it is the digitization of its Euclidean convex hull. Sreˇ cko Brlek Words2011: words and digital geometry

  50. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition (Kim) A discrete figure F ⊂ Z 2 is digitally convex if it is the digitization of its Euclidean convex hull. Sreˇ cko Brlek Words2011: words and digital geometry

  51. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Basics Definition (Kim) A discrete figure F ⊂ Z 2 is digitally convex if it is the digitization of its Euclidean convex hull. Remark : 8-connexity is included in the hypothesis ! Sreˇ cko Brlek Words2011: words and digital geometry

  52. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings HV-convexity Definition A subset S ⊂ Z 2 is H-convex if all its rows are connected. (a) (b) (c) Sreˇ cko Brlek Words2011: words and digital geometry

  53. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings HV-convexity Definition A subset S ⊂ Z 2 is H-convex if all its rows are connected. Definition A subset S ⊂ Z 2 is V-convex if all its column are connected. (a) (b) (c) Sreˇ cko Brlek Words2011: words and digital geometry

  54. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings HV-convexity Definition A subset S ⊂ Z 2 is H-convex if all its rows are connected. Definition A subset S ⊂ Z 2 is V-convex if all its column are connected. Definition A subset S ⊂ Z 2 is HV-convex if it is H-convex and V-convex. (a) (b) (c) Sreˇ cko Brlek Words2011: words and digital geometry

  55. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Previous result Theorem (Debled-Renneson, R´ emy and Rouyer-Degli) Given an HV-convex discrete figure F. Deciding if F is digitally convex is decidable in linear time. Sreˇ cko Brlek Words2011: words and digital geometry

  56. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Previous result Theorem (Debled-Renneson, R´ emy and Rouyer-Degli) Given an HV-convex discrete figure F. Deciding if F is digitally convex is decidable in linear time. Algorithm based on the segmentation of curves in discrete lines, which requires only arithmetic computations. Sreˇ cko Brlek Words2011: words and digital geometry

  57. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Here, the boundary word w is written clockwise. Proposition A word w is NW-convex iff its Lyndon factorization w = l n 1 1 l n 2 2 · · · l n k is only composed of Christoffel words. k Sreˇ cko Brlek Words2011: words and digital geometry

  58. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Here, the boundary word w is written clockwise. Proposition A word w is NW-convex iff its Lyndon factorization w = l n 1 1 l n 2 2 · · · l n k is only composed of Christoffel words. k 1 0 0 0 0 0 1 0 0 0 1 0 0 1 1 0 1 0 1 w = 1 0 1 0 1 1 0 0 1 0 0 0 0 1 0 0 0 0 1 . Sreˇ cko Brlek Words2011: words and digital geometry

  59. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Here, the boundary word w is written clockwise. Proposition A word w is NW-convex iff its Lyndon factorization w = l n 1 1 l n 2 2 · · · l n k is only composed of Christoffel words. k 1 0 0 0 0 0 1 0 0 0 1 0 0 1 1 0 1 0 1 w = 1 0 1 0 1 1 0 0 1 0 0 0 0 1 0 0 0 0 1 . ���� · (0 1 0 1 1) · (0 0 1) · (0 0 0 0 1) 2 . = (1) Sreˇ cko Brlek Words2011: words and digital geometry

  60. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Here, the boundary word w is written clockwise. Proposition A word w is NW-convex iff its Lyndon factorization w = l n 1 1 l n 2 2 · · · l n k is only composed of Christoffel words. k 1 0 0 0 0 0 1 0 0 0 1 0 0 1 1 0 1 0 1 w = 1 0 1 0 1 1 0 0 1 0 0 0 0 1 0 0 0 0 1 . � �� � ) · (0 0 1) · (0 0 0 0 1) 2 . = (1) ���� · ( 0 1 0 1 1 Sreˇ cko Brlek Words2011: words and digital geometry

  61. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Here, the boundary word w is written clockwise. Proposition A word w is NW-convex iff its Lyndon factorization w = l n 1 1 l n 2 2 · · · l n k is only composed of Christoffel words. k 1 0 0 0 0 0 1 0 0 0 1 0 0 1 1 0 1 0 1 w = 1 0 1 0 1 1 0 0 1 0 0 0 0 1 0 0 0 0 1 . ���� ) · (0 0 0 0 1) 2 . = (1) ���� · ( 0 1 0 1 1 � �� � ) · ( 0 0 1 Sreˇ cko Brlek Words2011: words and digital geometry

  62. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Here, the boundary word w is written clockwise. Proposition A word w is NW-convex iff its Lyndon factorization w = l n 1 1 l n 2 2 · · · l n k is only composed of Christoffel words. k 1 0 0 0 0 0 1 0 0 0 1 0 0 1 1 0 1 0 1 w = 1 0 1 0 1 1 0 0 1 0 0 0 0 1 0 0 0 0 1 . � �� � ) 2 . = (1) ���� · ( 0 1 0 1 1 � �� � ) · ( 0 0 1 ���� ) · ( 0 0 0 0 1 Sreˇ cko Brlek Words2011: words and digital geometry

  63. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Here, the boundary word w is written clockwise. Proposition A word w is NW-convex iff its Lyndon factorization w = l n 1 1 l n 2 2 · · · l n k is only composed of Christoffel words. k 1 0 0 0 0 0 1 0 0 0 1 0 0 1 1 0 1 0 1 w = 1 0 1 0 1 1 0 0 1 0 0 0 0 1 0 0 0 0 1 . � �� � ) 2 . = (1) ���� · ( 0 1 0 1 1 � �� � ) · ( 0 0 1 ���� ) · ( 0 0 0 0 1 Sreˇ cko Brlek Words2011: words and digital geometry

  64. Introduction Self avoiding and non-crossing paths Daurat-Nivat relation : R − S = 4 About the shape Lyndon+Christoffel = Digitally convex Tilings Proposition A word w is NW-convex iff its Lyndon factorization w = l n 1 1 l n 2 2 · · · l n k is only composed of Christoffel words. k In practice there are linear algorithms for building the Lyndon factorization of any word (J.P. Duval) checking if a word is a Christoffel word By combining the two, where each Lyndon factor must be a Christoffel word, this leads to a linear algorithm which is 10 times faster than previous ones. Then it suffices to check NE, ES, SW-convexity by permuting the alphabet NW : (0 , 1) ; NE : (0 , 3) ; ES (3 , 2) ; SW (2 , 1) Sreˇ cko Brlek Words2011: words and digital geometry

  65. Introduction Escher tilings Self avoiding and non-crossing paths Tiling by translation About the shape Algorithms Tilings Double Squares Sreˇ cko Brlek Words2011: words and digital geometry

  66. Introduction Escher tilings Self avoiding and non-crossing paths Tiling by translation About the shape Algorithms Tilings Double Squares Figure : Maurits Cornelis Escher (1898-1972) Sreˇ cko Brlek Words2011: words and digital geometry

  67. Introduction Escher tilings Self avoiding and non-crossing paths Tiling by translation About the shape Algorithms Tilings Double Squares Sreˇ cko Brlek Words2011: words and digital geometry

  68. Introduction Escher tilings Self avoiding and non-crossing paths Tiling by translation About the shape Algorithms Tilings Double Squares Figure : Hexagonal tiling Sreˇ cko Brlek Words2011: words and digital geometry

  69. Introduction Escher tilings Self avoiding and non-crossing paths Tiling by translation About the shape Algorithms Tilings Double Squares Sreˇ cko Brlek Words2011: words and digital geometry

  70. Introduction Escher tilings Self avoiding and non-crossing paths Tiling by translation About the shape Algorithms Tilings Double Squares Figure : Hexagonal and Square tilings Sreˇ cko Brlek Words2011: words and digital geometry

  71. Introduction Escher tilings Self avoiding and non-crossing paths Tiling by translation About the shape Algorithms Tilings Double Squares Sreˇ cko Brlek Words2011: words and digital geometry

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend