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

I have a question regarding the Exists-algorithm:

Let Φ be a&c&!b|a&!b&!c|b&c|b&!a&!c

Then the ROBDD of Φ is

I'm now trying to compute Exists(X,¬Φ) with X = a&d.

The ROBDD of ¬Φ ist just the ROBDD of Φ with 0 and 1 swapped.

If I understand correctly, applying the Exists algorithm Exists(X, ¬Φ) is equivalent to asking ourselves the question "Are there variable assignments satisfying ¬Φ with a=1, d=1?"

Therefore, the algorithm outputs a graph which shows us variable assignments v (with a=1, d=1) satisfying ¬Φ.

Therefore, we should be able to solve the question by just taking a look at the ROBDD of ¬Φ and just "deleting" all arrows starting from {a, d} representing the "false" path (as shown in the picture, deleted paths in red) because these paths are not possible since we know that a, d have to evaluate to TRUE:

Now, I transform this into an ROBDD:

However, this is supposedly wrong (according to the StudentPortal) and the correct solution looks like this:

In which step is my solution wrong?

in * TF "Emb. Sys. and Rob." by (1.7k points)

1 Answer

+2 votes
 
Best answer

If I understand correctly, applying the Exists algorithm Exists(X, ¬Φ) is equivalent to asking ourselves the question "Are there variable assignments satisfying ¬Φ with a=1, d=1?"

I think there was a misconception in this part, that is why the solution is not what was expected. Exists(d&a, ¬Φ)  tells us for which (partial) assignment to all variables besides d,a is there any (not just 1,1) assignment to d,a that satisfies ¬Φ.

by (1.5k points)
selected by

Related questions

Imprint | Privacy Policy
...