Difference between revisions of "Truth table proofs"
(Created page with "Truth tables are used to show all possible values that a given logical expression might take. For example, the following gives the definition of the logical AND operation. {|...") |
|||
Line 1: | Line 1: | ||
Truth tables are used to show all possible values that a given logical expression might take. For example, the following gives the definition of the logical AND operation. | Truth tables are used to show all possible values that a given logical expression might take. For example, the following gives the definition of the logical AND operation. | ||
− | {| class="wikitable | + | {| class="wikitable" |
|+ caption="Truth table for ⋀ (logical AND)" | |+ caption="Truth table for ⋀ (logical AND)" | ||
|- | |- |
Revision as of 14:44, 29 August 2022
Truth tables are used to show all possible values that a given logical expression might take. For example, the following gives the definition of the logical AND operation.
A | B | A ⋀ B | false | false | false |
---|---|---|---|---|---|
false | true | false | |||
true | false | false | |||
true | true | true |