I don't think I'm smart enough to solve any of these problems in the near future. I'd be very interested if anybody happens to know how to solve these.
1) Picky partitons
Given a set and a family of subsets of such that every set in contains more than one element, consider a partition of such that no set in is a subset of any of the pieces of the partition of . How many of these partitions are possible, and what is the minimum cardinality of these partitions?
2) Rolling polyhedra
A polyhedron is placed onto a plane. The polyhedron will repeatedly roll over along one of the edges of the face against the plane. The edge is chosen before each roll randomly (independently and uniformly). After rolls, what is the probability that it will rest on the same face that it started on? (Also, what is the probability it will return to its original position?)
I don't think this problem has a general solution, however I solved it for regular tetrahedra, cubes, octahedra and dodecahedra, and I suspect that there is a reasonably simple solution for all uniform polyhedra.
3) Partial combination sums
Find a formula for , where .
If I'm not mistaken, these should be correct:
The third result was from this problem.
I worked on this several weeks ago. I lost the details, but I remember coming up with a (probably incorrect) result that was something like this:
where is the coefficient of the generating function , where is a Fibonacci polynomial.
4) Partition maxima
Let be the number of ways to partition into ordered -tuples such that the maximum of the tuples is . Find a formula for .
This is as far as I got:
5) Some bigger grids
Generalize this problem for all such rectangular grids.
Define as the number of paths from the top-left corner to position , where is the top-left corner and is the bottom-right corner is the horizontal position starting from the left, is the vertical position starting from the top). Define , and for any point outside of the grid.
We can easily derive the recurrence relation . It is possible to write this as a system of first-order linear recurrences, which can collapse into a -order linear recurrence so that is defined in terms of .
I couldn't figure out how to come to this final recurrence except by lots of tedious substitutions within the system of recurrences. If I do find the final recurrence, the only way I know how to find an explicit formula is by factoring a -degree polynomial, which poses obvious problems for .
Pardon the poor explanation. Hopefully this is somewhat comprehensible.
Easy Math Editor
This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.
When posting on Brilliant:
*italics*
or_italics_
**bold**
or__bold__
paragraph 1
paragraph 2
[example link](https://brilliant.org)
> This is a quote
\(
...\)
or\[
...\]
to ensure proper formatting.2 \times 3
2^{34}
a_{i-1}
\frac{2}{3}
\sqrt{2}
\sum_{i=1}^3
\sin \theta
\boxed{123}
Comments
I don't have any idea for Question 1 yet.
The first part of Question 2 is solvable by a Markov chain. The second part depends heavily on the polyhedron, but in most cases I believe it's just "what's the probability that the second half of the journey is the perfect reverse of the first". It's when things are symmetrical and "good" that said second problem is interesting.
Question 3 is solvable by using complex numbers and binomial theorem. Let ω=e2πi/y; consider ∑k=0y−1(1+ωk)x.
It's easy to solve Question 4 by Principle of Inclusion-Exclusion for any a,m,k: number of partitions of k to a nonnegative integers, minus those where at least one of them is greater than m, plus those where at least two of them are greater than m, minus those where at least three of them are greater than m, and so on.
Question 5 is this when you shift the columns down:
Since there doesn't seem to be any closed formula written there, it's safe to say there's no closed formula known yet.
For question 3, I am getting
S(a,b)=b1m=1∑b(1+wm)a
Where w=e2iπ/5
I'll update you if I find a better closed form
Log in to reply
Yup, that's essentially it. You could do slightly better with some trigonometric substitutions and applying Euler's theorem, so that you can get a closed form for it in terms of cos,sinnkπ.
Great list of questions! Let me know what progress you are making.