User matt ollis - MathOverflow most recent 30 from http://mathoverflow.net 2013-05-21T15:14:51Z http://mathoverflow.net/feeds/user/14187 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://mathoverflow.net/questions/66529/counting-graceful-paths/66540#66540 Answer by Matt Ollis for Counting graceful paths Matt Ollis 2011-05-31T12:28:25Z 2011-05-31T12:28:25Z <p>An efficient algorithm is described in <a href="http://arXiv.com/pdf/math/0608513v1" rel="nofollow">a paper by Michael Adamaszek</a> which is powerful enough to count the number of graceful labelings of paths up to length 40. It concludes: "It also remains an open question to find an exponential upper bound on [the number of graceful labelings of paths of length n]"</p> http://mathoverflow.net/questions/64617/mathematical-ideas-named-after-places/64689#64689 Answer by Matt Ollis for Mathematical ideas named after places Matt Ollis 2011-05-11T20:15:52Z 2011-05-11T20:15:52Z <p><a href="http://books.google.com/books?id=Ey8iXKkQpDkC&amp;pg=PA80&amp;lpg=PA80&amp;dq=%22italian+square%22+latin+tuscan&amp;source=bl&amp;ots=AzcDDPTqUk&amp;sig=v9GIP3l1wKs6Yu0oXXnLQfxbJlQ&amp;hl=en&amp;ei=7u3KTd6uNoragQeLr5HeBQ&amp;sa=X&amp;oi=book_result&amp;ct=result&amp;resnum=1&amp;ved=0CCQQ6AEwAA#v=onepage&amp;q=%22italian%20square%22%20latin%20tuscan&amp;f=false" rel="nofollow">Italian squares</a> which include Latin squares, Tuscan squares, Roman squares, Florentine squares and Vatican squares as special cases.</p> http://mathoverflow.net/questions/64617/mathematical-ideas-named-after-places/64671#64671 Answer by Matt Ollis for Mathematical ideas named after places Matt Ollis 2011-05-11T18:42:53Z 2011-05-11T18:42:53Z <p><a href="http://www.spsu.edu/math/holliday/Oberwolfachs.html" rel="nofollow">The Oberwolfach Problem and the Hamilton-Waterloo Problem</a></p> http://mathoverflow.net/questions/61165/generating-fixtures-for-a-chess-league-with-a-twist/61205#61205 Answer by Matt Ollis for Generating fixtures for a chess league, with a twist Matt Ollis 2011-04-10T12:13:14Z 2011-04-10T12:13:14Z <p>This is an answer to the general advice part of the question rather than the specifics of the chess league problem.</p> <p>I think the field of math to look at is that of Combinatorial Designs. Roughly speaking, this deals with arranging objects according to constraints and it has subfields that look particularly at various types of tournament/league design (I haven't come across anything that reminds me closely of your particular problem, but that's not good evidence that there isn't something out there already). If you can get access to <a href="http://www.emba.uvm.edu/~dinitz/hcd.html" rel="nofollow">The Handbook of Combinatorial Designs</a> somehow, that will probably give you some good pointers. (I don't have a copy nearby at the moment to be more specific, sorry.)</p> <p>The second area you could look at is from the computational side: <a href="http://en.wikipedia.org/wiki/Hill_climbing" rel="nofollow"> hill-climbing algorithms</a>. Implementing such an algorithm would mean that you did not have to search through all of the possible combinations, with the trade-off that you are not guaranteed the optimal result. The idea is that you ignore the extra constraint initially and generate a valid schedule. Then you successively tweak the schedule to reduce the number of times teams from the same club play on the same evening. If it doesn't get close enough, start over and try again. You'll need a method of generating initial schedules (which I guess you already have) and a method for tweaking that works nicely with the constraint (usually the difficult step). </p> <p>Hope this helps.</p> http://mathoverflow.net/questions/60856/hamilton-paths-in-k-2n/60859#60859 Answer by Matt Ollis for Hamilton Paths in $K_{2n}$ Matt Ollis 2011-04-06T23:24:27Z 2011-04-06T23:24:27Z <p>We can explicitly construct such a decomposition.</p> <p>Label the vertices of the graph with ${0,1,...,n-1}$, take the first path to be $0, n-1, 1, n-2, 2,... ,n/2$ and generate the other paths by addition modulo $n$ (the $n$ paths come in pairs in which one is the reverse of the other).</p> <p>More generally, a symmetric sequencing in a group with a single involution is sufficient to construct the decomposition. </p> http://mathoverflow.net/questions/67351/a-game-on-numbers/67354#67354 Comment by Matt Ollis Matt Ollis 2011-06-09T16:40:43Z 2011-06-09T16:40:43Z Oops, didn't see Emil's comment before I posted (and I also swapped a and c). http://mathoverflow.net/questions/67351/a-game-on-numbers/67354#67354 Comment by Matt Ollis Matt Ollis 2011-06-09T16:39:46Z 2011-06-09T16:39:46Z I'm not convinced that the best strategy is to get two numbers as big as possible (I'm not convinced otherwise either). What if we try and win on $a$ and $c$ and give up on $b$? That suggests a strategy of the form $a = b = (1-c)/2$, and if we choose $c &gt; 1/2$ we beat someone using your method.