Victoria H.
asked 03/27/23Truth Table Help...
I need to write a Truth Table for this equation and don't know where to start.
~ A v (B • C) / B ⊃ C // ~ A
1 Expert Answer
Zack G. answered 04/11/23
Philosophy Ph.D. with 10 Years of Teaching Experience
1. Start by listing our the individual letters:
A | B | C
2. Add each sentence to your table as a column to the right of the letters:
A | B | C | ~ A v (B • C) | B ⊃ C || ~A
3. List out every possible ordering of true and false for the sentence letters. I've provided a pattern below that is useful for capturing every possible ordering:
A | B | C | ~ A v (B • C) | B ⊃ C || ~A
T | T | T |
T | T | F |
T | F | T |
T | F | F |
F | T | T |
F | T | F |
F | F | T |
F | F | F |
4. Finally, calculate the truth-value for each of the sentences on each of the rows. For example, on the first row we treat all three of A, B, and C as true. So, ~ A v (B • C) is true, B ⊃ C is true, and ~A is false. So, put those values on the first row.
A | B | C | ~ A v (B • C) | B ⊃ C || ~A
T | T | T | T | T || F
T | T | F |
T | F | T |
T | F | F |
F | T | T |
F | T | F |
F | F | T |
F | F | F |
Still looking for help? Get the right answer, fast.
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.
Jonathan A.
A,B,C max combinations is 2^n, where n = 3 since there are only 3 variables. Write out the combinations accordingly starting with its binary representations. ABC: Below, 0 will be False, 1 will be True 000 001 010 011 100 101 110 111 Then you must start with the innermost function (B*C). where there are only 8 outcomes. Example: B = 0, C = 1, (B*C) = 0 since False and True equals False for combination 1 and so forth.03/28/23