1. What is the computational complexity of computing the number of standard Young tableaux?
The computational complexity of computing the number of standard Young tableaux depends on the input encoding. If the input is encoded in unary, the problem is in FP, as the HLF formula allows the computation in O(n) time. However, if the input is in binary, the input size is O(log 2(|I|)), and the number of SYTs of shape l can be computed in polynomial time. For binary input, the answer is too large to be encoded in exponential space. The next natural problem is to compute the number of SSYTs of shape l and given type a, but no product or determinantal formula is known for this problem.
read more
2. Is KostkaPos P?
KostkaPos is a computational problem that checks if Kostka numbers K l,a are positive. Given l and a in either binary or unary, it verifies the inequalities in O(l(l)) time. The problem is not trivial, but it can be solved in polynomial time. The computational problem ComputeKostka, which computes the value of K l,a, is #P-complete when the input is in binary. However, when the input is in unary, it is conjectured to be #P-complete. The problem's complexity depends on the input encoding, which is usually part of the problem specification.
read more
3. Is ComputeLR #P-complete when input is in unary?
Yes, ComputeLR is conjectured to be #P-complete when the input is in unary. This is based on the Littlewood-Richardson rule and its polytopal equivalent formulation. The hard part is to show that computing them is still hard, meaning that an #P-complete problem like 3SAT would reduce to ComputeLR. However, this has not been proven for Kronecker and plethysm coefficients due to the lack of any positive combinatorial formula.
read more
4. Is KroneckerPos NP-hard in unary?
Yes, KroneckerPos is NP-hard when the input l, u, n is in unary. This means that the problem cannot be solved in polynomial time. The proof utilizes the fact that g(l, u, n) represents the number of pyramids with marginals l, u, n, which is NP-complete. However, the problem is not in NP as there are no polynomially verifiable witnesses to show that g(l, u, n) > 0 when it occurs. The problem becomes even more challenging when the input is in binary, but it is not considered in this context. Additionally, Mulmuley conjectured that computing the Kronecker coefficients would be in #P, similar to the Littlewood-Richardson coefficients.
read more