PCP Flashcards
{<P>|there is a match using less than n cards}
determinable, We just try all finite number of possibilities
{<P>|there is a match using more than n cards}
Same as PCP, if there is some solution that there is solution with more than n because we can concat solutions.
{<P>|there is a match using an even number of cards}
Same as PCP, if there is some solution then we can just concat it with itself, giving us an even number of cards.
{<P>|there is a match using an un-even number of cards}
Acceptable: We just test all the un-even options and if we find a solution we stop.
Non determinable: using reduction from PCP
{<P>|the alphabet only has one character}
Determinable:
If in all cards the top is shorter than the bottom or the opposite we will return false. else return true, because there is some way to solve this.
{<P>|there are no adjecent identical cards}
Acceptable: We just check all the options that satisfy the requirement.
Non-decidable: Reduction from PCP.
{<P>|there is a solution that uses all of the cards}
Acceptable: try all the options.
Non-decidable: proof by contraction. If this is solvable, then for the regular PCP problem you could just go over all the sub groups and send them to this problem.
{<P>|there is no solution}
Not acceptable: using Post’s theorem. Since PCP is known to not be acceptable, PCP~ has to be as well.