edited by
1,333 views
4 votes
4 votes

What is the time complexity for checking whether an assignment of truth values to variables $x_1,\dots ,x_n$ satisfies a given formula $f(x_1\dots,x_n)$?

  1. $O(2^n)$
  2. $O(g(n))$ where $g$ is a polynomial
  3. $O(log(n))$
  4. None of the above
edited by

3 Answers

0 votes
0 votes
If i'd have to check whether assigning a true value to each of $x_1,x_2,....x_n$ satisfies the formula or not can be done in polynomial time. i.e option B.
edited by
0 votes
0 votes
Since , the formula is given , we are to check whether assignment of truth value to all the variables satisfies the formula , this can be done in polynomial time. i.e Option B.
0 votes
0 votes

Answer : B

its 2-SAT problem

2-SAT is a special case of Boolean Satisfiability Problem and can be solved
in polynomial time.

Related questions

2.9k
views
1 answers
2 votes
val_pro20 asked May 11, 2019
2,939 views
$(a) A = 101010$ and $B = 011101$ are $1’s$ complement numbers. Perform the following operations and indicate whether overflow occurs.$(i) A + B$(ii) A − B$(b)$ Repeat part $(a)$ assuming the numbers are $2’s$ complement numbers.
1.5k
views
4 answers
4 votes
vupadhayayx86 asked May 2, 2019
1,458 views
Simplify the following expressionAB’C + A’BC + A’B’CSolution given is A’C + B’C can someone show me how?
1.4k
views
0 answers
1 votes
Gupta731 asked Nov 8, 2018
1,395 views
which of the following subtraction operations will result in F16?(BA)16 - (AB)16(BC)16 - (CB)16(CB)16 - (BC)16Select the correct answer using the code given below:A. only 2 and 3B. only 1 and 2C. 3, 1 and 2D. only 1 and 3