1) what is the best known approx factor for MAX 3SAT?!??! could
someone please at least answer that one, i'm totally confused about
that right now and it seems like something i should probably know by
now..
well, we know that every sentence p there exists an assigning such that provides at least 7/8 of the clauses. you can prove this using expectancy. other then that we didn't really learn any approximation solution.
2) NL^NL = NL: True \ False \ Equivalent to an open problem?
I don't really have any clue about this one, to be honest.. I'm
leaning a bit towards it being *true* because of Immerman, then the
original machine can simulate the oracle, like NP = Sigma2 if NP=CoNP,
yet i'm really not sure, since besides the fact that the oracle can
"really solve" problems (unlike the 'normal' NL machine, which, if it
werent for Immerman's law, could only 'half-solve' problems in NL [i
mean that it would be able to accept inputs in the language but would
'quit' on inputs which are not]), the non-determinism might also give
extra power to the oracle, like Sigma2 might be greater than
'just' (NP U CoNP). Also, I remember thinking about problems in NL,
where I wanted to use a subprocedure of NL which i would need to write
poly input for, but i couldnt do it, because of the tape limitation -
with NL^NL, I could..
3) P = Space(n): True \ False \ Equivalent to an open problem?
Ok this feels kind of silly to ask, but i'm not entirely sure how to
prove this easy-looking question actually.. I think the answer is
*false*. There are problems you can solve in P which cannot be solve
in Space(n), like problems where you need to use more than a linear
part of the tape, and there are problems you can solve in Space(n) but
not in P, like problems which require 2^n time. It could be that
P=PSPACE, so Space(n) might be in P actually, but definitely not the
other way around. question is, how do i show an actual problem which
is in P but not in space(n)?
4) GAP-Coloring[3,4] - (min colors to color a graph, 3 being the yes
instance i guess..): I saw in some tests this is in NPC, and that its
the same as 3Col. I'm having some difficulties digesting that - I
would think the problem is in (NP U CoNP). We need to know whether
it's possible or *not possible* to 3-col the graph. we also need to be
able to solve (3Col)' (the conp problem), wouldn't we?
Think about it this way- if you could solve 3COL you could solve this, since you can send this to 3col if you get a positive answer then it is in Y otherwise it's in NO. The other way round- if you have a solution for this, you could send each graph to this algorithm. if you got a positive answer, it means you can color this graph with <=3 colors, hence return true. otherwise, if you got No, it means you need at least 4 colors, hence return false.
Thanks