to CNF efficiently
- From: "Thomas A. Li" <tli@xxxxxxxxxxxxx>
- Date: Mon, 20 Jun 2005 09:06:54 -0400
Given a Boolean Expression of length n, how to convert it into a CNF of
length m, which is a polynomial of n?
Here the length is defined as the number of variables, parenthesis pairs and
operators. CNF stands for conjunctive norm form.
In traditional conversion, the use of distribution may "double" the length,
e.g. A+BC ==> (A+B)(A+C) where A is doubled. If the length of A is much
bigger than B and C, the result has "nearly" double length. Can somebody
give a firm proof about whether the length is kept polynomial or not in the
conversion?
>From Cook's proof of NP-completeness, a Boolean expression can be
transformed into a CNF of polynomial length, but it is not intuitive.
Is there another intuitive algorithm to do so? Any reference will be
appreciated.
Thanks in advance,
Thomas Li
.
- Follow-Ups:
- Re: to CNF efficiently
- From: Daniel A. Jimenez
- Re: to CNF efficiently
- Prev by Date: Re: NP-complete and NP-Hard?
- Next by Date: Re: to CNF efficiently
- Previous by thread: NP-complete and NP-Hard?
- Next by thread: Re: to CNF efficiently
- Index(es):
Relevant Pages
|