Here you can ask questions and find or give answers to organizational, academic and other questions about studying computer science.

1.1k questions

1.2k answers

1.6k comments

529 users

0 votes

Let abcda⪯b⪯c⪯d be the variable ordering.
ϕ=ϕ= a&!b&!c&!d|b&!a&!c&!d|c&d|c&!d|d&!a&!c

b) X={c,d} is the set of quantified variables. Compute the ROBDD of the existential quantification formula X.¬ϕ using the Exists algorithm, and convert the result to Shannon normal form

Question: Could you explain how to get the ROBDD for {c,d} ?

in # Study-Organisation (Bachelor) by (290 points)

1 Answer

0 votes

Your question does not make sense. {c,d} is a set of variables, and we can only compute ROBDDs for propositional formulas. The task is to compute the existential quantification over the variables c,d on the formula ¬ϕ. With the variable ordering given, this is straightforward, since the variables c,d appear topmost. Thus, we just have to compute the BDD for ¬ϕ and then make a cut between variables {c,d} and {a,b} which gives us some (at most four) BDDs on variables  {a,b}. We then have to compute the disjunction of these BDDs.

The BDD is as follows: 

The cut mentioned above yields the three formulas false, a, a<->b so that the result would be the disjunction of these formulas. The Shannon normal form would then by (b?a:1). 

by (166k points)

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
Imprint | Privacy Policy
...