Non-Deterministic Selection in NPD Decider: CLIQUE

  • MHB
  • Thread starter JohnDoe2013
  • Start date
In summary: Overall, the key idea is that a nondeterministic polynomial time decider for CLIQUE will guess a set of k nodes and checks if they form a clique in the given graph. This guessing process can be interpreted in different ways, but the end result is that the decider either accepts or rejects the input based on this guess. In summary, "Non-Deterministically select" in the context of a Non-Deterministic Polynomial Time Decider means that the machine will guess a set of k nodes and check if they form a clique in the given graph, with different interpretations on how this guessing process is actually carried out.
  • #1
JohnDoe2013
5
0
Meaning of "Non-Deterministically select" in context of a Non-Deterministic Polynomial Time Decider

The following is an example from Sipser.

CLIQUE = { <G, k> : G s an undirected graph with a k-clique}

The following is a Non-Deterministic Polynomial Time Decider that decides CLIQUE:

1. Non-Deterministically select a set Q of k nodes where each node is in G.
2. Test whether G contains all edges connecting nodes in Q.
3. If yes, accept; otherwise reject.

I'm not sure what is meant by "$Non-Deterministically$ $select$".

I'm assuming it does not literally mean to just pick one of the possible branches to execute. Wikipedia says that one way of thinking about Non-Deterministic TM (NTM) is to assume that they are the "luckiest guesser". That is, they will always select a branch that leads to an accepting state (if one exists). Alternatively, it says to imagine that the NTM branches into multiple copies each of which follows one of the possible transitions.

From this I'm assuming that the NTM does not just "select a single set Q". It is basically generating one branch for each of the $\binom{n}{k}$ possible set of k-nodes and then computing each of the branches in parallel.

Can someone clarify?
 
Technology news on Phys.org
  • #2
Hi, and welcome to the forum.

The transition function of a nondeterministic Turing machine has the type
\[
\delta:Q\times\Gamma\to \mathcal{P}(Q\times\Gamma\times\{\text{L},\text{R}\}).
\]
Here $Q$ is the set of states, $\Gamma$ is the tape alphabet, L and R direct the head to move left and right, and $\mathcal{P}(\cdot)$ denotes the powerset. That is, for each state and symbol read on the tape, the transition function returns a set of new states and symbols to write.

This is the definition, and there are two ways to interpret it. One says that for each $q\in Q$ and $a\in\Gamma$ the machine initiates a new process for each element of $\delta(q,a)$. These processes work in parallel, and each process is deterministic. The other interpretation is that the machine chooses one element of $\delta(q,a)$ and goes into that state. In the first interpretation there is only one "run" of the machine on a given input, and it consists of a tree of processes. In the second interpretation, there are multiple possible runs of the machine on a given input, and each one is the trace of a single process.

What ties these interpretation together is the definition of when the input word is accepted. Formally, this happens if there is (at least one) run that ends in the accepting state. Unfortunately, Sipser's book does not have a formal definition of acceptance for Turing machines, but it has it for nondeterministic finite automata, and the idea is quite analogous. There is a definition for TMs, for example, in the "Elements of the Theory of Computation" by Lewis and Papadimitriou, p. 222. So, we can think of an accepting computation as either a tree of deterministic processes working in parallel at least one of whom accepts, or we can think about it as a set of deterministic attempts, again at least one of whom is successful.

JohnDoe2013 said:
I'm assuming it does not literally mean to just pick one of the possible branches to execute.
This is a valid interpretation.

JohnDoe2013 said:
From this I'm assuming that the NTM does not just "select a single set Q". It is basically generating one branch for each of the $\binom{n}{k}$ possible set of k-nodes and then computing each of the branches in parallel.
This is another valid interpretation.
 

Related to Non-Deterministic Selection in NPD Decider: CLIQUE

1. What is non-deterministic selection in NPD Decider: CLIQUE?

Non-deterministic selection in NPD Decider: CLIQUE refers to the process of choosing the next design alternative in a non-deterministic way, meaning that the selection is based on randomness rather than a predetermined rule.

2. Why is non-deterministic selection used in NPD Decider: CLIQUE?

Non-deterministic selection is used in NPD Decider: CLIQUE because it allows for a more diverse set of design alternatives to be considered, increasing the chances of finding an optimal solution. It also helps to avoid bias and encourages creativity in the decision-making process.

3. How does non-deterministic selection work in NPD Decider: CLIQUE?

In NPD Decider: CLIQUE, non-deterministic selection works by randomly selecting a design alternative from the pool of available options, based on a set of predetermined criteria. This allows for a more varied and unbiased selection process.

4. What are the benefits of using non-deterministic selection in NPD Decider: CLIQUE?

There are several benefits of using non-deterministic selection in NPD Decider: CLIQUE. These include increasing the diversity of design alternatives considered, avoiding bias in the decision-making process, and promoting creativity.

5. Are there any drawbacks to using non-deterministic selection in NPD Decider: CLIQUE?

While non-deterministic selection has many benefits, it also has some drawbacks. These include the potential for the selection process to become too random, leading to a less optimal or feasible solution, and the difficulty in replicating the selection process for future decisions.

Similar threads

  • Engineering and Comp Sci Homework Help
Replies
2
Views
1K
  • Programming and Computer Science
Replies
9
Views
3K
  • Programming and Computer Science
Replies
1
Views
2K
  • Programming and Computer Science
Replies
1
Views
2K
Replies
88
Views
7K
  • Programming and Computer Science
Replies
32
Views
3K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
7
Views
2K
  • Computing and Technology
2
Replies
52
Views
3K
  • Quantum Interpretations and Foundations
2
Replies
54
Views
4K
Back
Top