Timmy
Timmy

Reputation: 12838

Reverse truth table to generate boolean statement?

So I'm given some scenarios where I exhaustively generate a list of possible events:

A = True, B = True, C = True -> True
A = False, B = False, C = True -> True
... more lists ...

any suggestions on merging them, to something like

( A || B || C )

thanks

Upvotes: 3

Views: 6062

Answers (2)

Cybercartel
Cybercartel

Reputation: 12592

Karnaugh-Map is a table in which the row and columns are ordered not in a binary order but in a gray code order. Most likely by solving the k-map you can eliminate short-circuit and non-maskable interrupts.

Upvotes: 1

nmichaels
nmichaels

Reputation: 50981

Use a k-map.

Upvotes: 6

Related Questions