I would like to know the steps to convert a binary formula to Shannon Normal Form.
a⪯b⪯c⪯d - variable ordering.
F = b&c&!d|c&d&!b|d&!c|!c&!d
How can I convert this to Shannon Normal Form?
I would like to know the steps to convert a binary formula to Shannon Normal Form.
a⪯b⪯c⪯d - variable ordering.
F = b&c&!d|c&d&!b|d&!c|!c&!d
How can I convert this to Shannon Normal Form?
Copyright © 2021 Jogjafile Inc.
You start by calculating F|{a=0} and F|{a=1}. Because F is not dependent on variable a, you will get F for both case:
You continue by calculating F|{a=0,b=0}, F|{a=0,b=1}, F|{a=1,b=0}, and F|{a=1,b=1}. You will get
You continue with variable c and variable d and finally you get:
If you need the opposite ordering, just calculate in revert order of variables, you may get quite different result.
And here is the screenshot from BDD Scout (http://biddy.meolic.com/), unfortunately this tool does not support BDDs without complemented edges, yet.