Need help have no idea the thought process in doing this kind of simplification.
! - Denotes NOT
Lets say I have !((A+B) * (A+!B)) I need to simplify that using all rules except absortion.
I know it is A * !B + !A * B but I need to know the process to get there. What is a good place to start. I do several different things but I never come up with the right answer.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||||||
|
|
As a process of simplification use De Morgan's Law to move the NOT operator into the parenthesis. So it would be
The next step (again use De Morgan's Law) after this would lead to your answer. I hope this helps. cheers |
|||||||||
|
|
Karnaugh maps should be a good start. |
|||||||||
|
|
Re: "What is a good place to start" - use a reference for boolean laws. Here is one that I found: http://www.laynetworks.com/Boolean%20Algebra.htm Look through the laws and see which ones can be applied; then pick the one that looks most like it is a step in the right direction. With practice you will learn to be able to intuit the right laws to select; in the meantime you will need to hunt and peck a little. |
|||
|
|