low dimensional euclidean buildings iii
play

Low dimensional Euclidean buildings: III Thibaut Dumont University - PowerPoint PPT Presentation

Low dimensional Euclidean buildings: III Thibaut Dumont University of Jyv askyl a June 2019 UNCG Thibaut Dumont University of Jyvskyl June 2019 1 / 43 Table of Contents Projective plane Triangle Lattices Score and the score


  1. Low dimensional Euclidean buildings: III Thibaut Dumont University of Jyv¨ askyl¨ a June 2019 – UNCG Thibaut Dumont University of Jyväskylä June 2019 1 / 43

  2. Table of Contents Projective plane Triangle Lattices Score and the score algorithm Improving the score Radu’s C++ program and results Thibaut Dumont University of Jyväskylä June 2019 2 / 43

  3. Long time ago, in a building far away Thibaut Dumont University of Jyväskylä June 2019 3 / 43

  4. b b b b b b b Finite projective plane A building of type A 2 is called a projective planes . It’s a graph of diameter 3 and girth 6 with two type of vertices called points or lines . ◮ If it is finite, every vertex has the same number of neighbor, q + 1 (with q ≥ 2 if thick). ◮ A projective plane has q 2 + q + 1 vertices of each types (points or lines). ◮ A projective plane has ( q + 1)( q 2 + q + 1) edges (chambers). Thibaut Dumont University of Jyväskylä June 2019 4 / 43

  5. The game: Dobble Thibaut Dumont University of Jyväskylä June 2019 5 / 43

  6. The game: Dobble Thibaut Dumont University of Jyväskylä June 2019 6 / 43

  7. Triangle Lattices Let ∆ be a thick locally finite building of type ˜ A 2 , shortly a triangle building . ◮ Let q ≥ 2 denote the regularity parameter of ∆ . ◮ Let I = { 0 , 1 , 2 } denote the types and V i the set of residues of type { j, k } where { i, j, k } = { 0 , 1 , 2 } . ◮ In other words, V i is the set of vertices of type i . ◮ The residues are finite projective plane of order q (equivalently a finite thick A 2 -building). Thibaut Dumont University of Jyväskylä June 2019 7 / 43

  8. Triangle Lattices Let Γ be a group acting on ∆ . Assume the action is: ◮ type-rotating : either g ∈ G fixes all types or permutes them cyclically. ◮ simply-transitive on the set of vertices on V = V 0 ∪ V 1 ∪ V 2 : for every v, w ∈ V there is a unique g mapping v to w . ◮ The elements of G are in bijection with the vertices. (Think of Z n acting on itself by translation). Thibaut Dumont University of Jyväskylä June 2019 8 / 43

  9. Triangle Lattices Let Γ be a group acting on ∆ . Assume the action is: ◮ type-rotating : either g ∈ G fixes all types or permutes them cyclically. ◮ simply-transitive on the set of vertices on V = V 0 ∪ V 1 ∪ V 2 : for every v, w ∈ V there is a unique g mapping v to w . ◮ The elements of G are in bijection with the vertices. (Think of Z n acting on itself by translation). Theorem (CMSZ) Any such action gives a point-line correspondence and a compatible a triangular presentation. Conversely, any point-line correspondence in a projective plane admitting a triangular presentation yields a triangle building and a lattice as above. Thibaut Dumont University of Jyväskylä June 2019 8 / 43

  10. Triangle Lattices Thibaut Dumont University of Jyväskylä June 2019 9 / 43

  11. Triangle Presentation Thibaut Dumont University of Jyväskylä June 2019 10 / 43

  12. Score Thibaut Dumont University of Jyväskylä June 2019 11 / 43

  13. Graph G λ Thibaut Dumont University of Jyväskylä June 2019 12 / 43

  14. Score of a Correlation Thibaut Dumont University of Jyväskylä June 2019 13 / 43

  15. Score of a Correlation Thibaut Dumont University of Jyväskylä June 2019 14 / 43

  16. Score: Algorithm 1 Thibaut Dumont University of Jyväskylä June 2019 15 / 43

  17. Score: Algorithm 1 Thibaut Dumont University of Jyväskylä June 2019 16 / 43

  18. Improving the Score: Algorithm 2 Thibaut Dumont University of Jyväskylä June 2019 17 / 43

  19. Results Thibaut Dumont University of Jyväskylä June 2019 18 / 43

  20. Results Thibaut Dumont University of Jyväskylä June 2019 19 / 43

  21. Radu’s C++ program A few things to know about the C++ code: ◮ Radu uses the fact that the lines 0, 1, 10 and 30 generate the Hughes plane. ◮ It was too slow to check all pairs a, b , so he tests and selects only a few pairs. Especially the vertices for which few triangles have been used. He calls them bad vertices. What the code does: ◮ Generates correlations until it finds one with a good score ≥ 750 . ◮ Apply the improving algorithm, which permutes some a and b to see if it gets to the score max of 910 . (Keeps track of the permutations to not fall in a local maximum). ◮ If after 150 steps the score is still low, it moves on to the next correlation. Thibaut Dumont University of Jyväskylä June 2019 20 / 43

  22. b b b b b b b ◮ Finite projective plane A 2 ( F 2 ) . Thibaut Dumont University of Jyväskylä June 2019 21 / 43

  23. b b b b b b b Goal 1: Radu’s lattice ◮ Finite projective plane A 2 ( F 2 ) . Thibaut Dumont University of Jyväskylä June 2019 22 / 43

  24. b b b b b b b Goal 1: Radu’s lattice ◮ A point-line correspondence λ forming pairs. Thibaut Dumont University of Jyväskylä June 2019 23 / 43

  25. b b b b b b b Goal 1: Radu’s lattice ◮ The incidence relation: point ⊂ line Thibaut Dumont University of Jyväskylä June 2019 24 / 43

  26. b b b b b b b Goal 1: Radu’s lattice ◮ A graph G λ associated to the point line correspondence λ . Thibaut Dumont University of Jyväskylä June 2019 25 / 43

  27. b b b b b b b Goal 1: Radu’s lattice ◮ The triangle presentation T is a cover of G λ by disjoint of triangles. Thibaut Dumont University of Jyväskylä June 2019 26 / 43

  28. b b b b b b b Goal 1: Radu’s lattice ◮ Triangle can also mean loop. Thibaut Dumont University of Jyväskylä June 2019 27 / 43

  29. b b b b b b b Goal 1: Radu’s lattice ◮ So we remove triangles (or loop) one by one to obtain T . Thibaut Dumont University of Jyväskylä June 2019 28 / 43

  30. b b b b b b b Goal 1: Radu’s lattice ◮ So we remove triangles (or loop) one by one to obtain T . Thibaut Dumont University of Jyväskylä June 2019 29 / 43

  31. b b b b b b b Goal 1: Radu’s lattice ◮ So we remove triangles (or loop) one by one to obtain T . Thibaut Dumont University of Jyväskylä June 2019 30 / 43

  32. b b b b b b b Goal 1: Radu’s lattice ◮ So we remove triangles (or loop) one by one to obtain T . Thibaut Dumont University of Jyväskylä June 2019 31 / 43

  33. b b b b b b b Goal 1: Radu’s lattice ◮ So we remove triangles (or loop) one by one to obtain T . Thibaut Dumont University of Jyväskylä June 2019 32 / 43

  34. b b b b b b b Goal 1: Radu’s lattice ◮ So we remove triangles (or loop) one by one to obtain T . Thibaut Dumont University of Jyväskylä June 2019 33 / 43

  35. b b b b b b b Goal 1: Radu’s lattice ◮ So we remove triangles (or loop) one by one to obtain T . Thibaut Dumont University of Jyväskylä June 2019 34 / 43

  36. b b b b b b b Goal 1: Radu’s lattice ◮ So we remove triangles (or loop) one by one to obtain T . Thibaut Dumont University of Jyväskylä June 2019 35 / 43

  37. b b b b b b b Goal 1: Radu’s lattice ◮ So we remove triangles (or loop) one by one to obtain T . Thibaut Dumont University of Jyväskylä June 2019 36 / 43

  38. b b b b b b b Goal 1: Radu’s lattice ◮ So we remove triangles (or loop) one by one to obtain T . Thibaut Dumont University of Jyväskylä June 2019 37 / 43

  39. b b b b b b b Goal 1: Radu’s lattice ◮ So we remove triangles (or loop) one by one to obtain T . Thibaut Dumont University of Jyväskylä June 2019 38 / 43

  40. b b b b b b b Goal 1: Radu’s lattice ◮ So we remove triangles (or loop) one by one to obtain T . Thibaut Dumont University of Jyväskylä June 2019 39 / 43

  41. b b b b b b b Goal 1: Radu’s lattice ◮ So we remove triangles (or loop) one by one to obtain T . Thibaut Dumont University of Jyväskylä June 2019 40 / 43

  42. b b b b b b b Goal 1: Radu’s lattice ◮ So we remove triangles (or loop) one by one to obtain T . Thibaut Dumont University of Jyväskylä June 2019 41 / 43

  43. b b b b b b b Goal 1: Radu’s lattice ◮ So we remove triangles (or loop) one by one to obtain T . Thibaut Dumont University of Jyväskylä June 2019 42 / 43

  44. b b b b b b b Goal 1: Radu’s lattice ◮ So we remove triangles (or loop) one by one to obtain T . Thibaut Dumont University of Jyväskylä June 2019 43 / 43

  45. b b b b b b b Goal 1: Radu’s lattice ◮ No triangle left, so we the triangle we removed form a cover of G λ . Pretty lucky! Thibaut Dumont University of Jyväskylä June 2019 44 / 43

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