a thoughtful web.
Good ideas and conversation. No ads, no tracking.   Login or Take a Tour!
comment by Cedar
Cedar  ·  3392 days ago  ·  link  ·    ·  parent  ·  post: New type of pentagon discovered with the ability to tile the plane

Tessellation is pretty cool, and to me this is just a form of that. I imagine it's a lot easier now with computers, you could probably throw together a genetic algorithm that mutates a shape until it finds one that gets 100% coverage; I'm sure there's probably some favoured angles or such as well.





user-inactivated  ·  3392 days ago  ·  link  ·  

The only solutions are exact solutions, the search space is very large and the set of solutions is (probably) very small. It's possible you could do something clever to make a genetic algorithm work, but you couldn't just throw one together.

Magnnus  ·  3392 days ago  ·  link  ·  

You just need to provide a gradient for the search space. Something like inverse of average gap between tiles. This is standard for any metaheuristic search (of which genetic algorithms are a sub-category), so I wouldn't call it "doing something clever".

user-inactivated  ·  3392 days ago  ·  link  ·  

Approximate solutions are no good. "Almost plane tiling" is not interesting.

Magnnus  ·  3392 days ago  ·  link  ·  

Metaheuristics search a problem space to find an exact solution (total plane tiling). In order to search that space, they need direction. The "almost plane tiling" is the direction. You said it would be difficult for a genetic algorithm to find a solution because the set of solutions is very small, but that's missing the point of a metaheuristic.

It's the difference between climbing a hill and a cliff. Either way the goal is at the top, but the hill is easier to get up.

Killerhurtz  ·  3392 days ago  ·  link  ·  

Not until quantum computers, anyway.

user-inactivated  ·  3392 days ago  ·  link  ·  

I'd love to see those algorithms: they must be a beauty of a code.