Questions tagged [truth-table]

A truth table is a mathematical table used in logic—specifically in connection with Boolean algebra, boolean functions, and propositional calculus—which sets out the functional values of logical expressions on each of their functional arguments, that is, for each combination of values taken by their logical variables.

A truth table is a mathematical table used in logic—specifically in connection with Boolean algebra, boolean functions, and propositional calculus—which sets out the functional values of logical expressions on each of their functional arguments, that is, for each combination of values taken by their logical variables (Enderton, 2001). In particular, truth tables can be used to show whether a propositional expression is true for all legitimate input values, that is, logically valid.

A truth table has one column for each input variable (for example, P and Q), and one final column showing all of the possible results of the logical operation that the table represents (for example, P XOR Q). Each row of the truth table contains one possible configuration of the input variables (for instance, P=true Q=false), and the result of the operation for those values.

46 questions
2
votes
3 answers

Name for this logic operation

I'm from math.stackexchange and I wanted to know the name of an operation on multiple variables. I thgouth what I wanted was the XOR gate, but this is not the case. When I looked on this site I noticed the XOR truth table was this: \begin{matrix}…
Ben Crossley
  • 123
  • 5
0
votes
2 answers

Truth table - which is right?

So i've got a question to build a truth table for a controller circuit I've to build. From the wording of the question I'm unsure which of my truth tables are correct (if at all). The controller logic circuit needs to be designed. The controller…
0
votes
1 answer

Missing data in truth table and commenting on missing value

I was trying to solve the attached question from the book Digital Design: With an Introduction to Verilog HDL, 5e however the values of f1 and f2 for the entry (1,1,0) are missing. If we use sum of product or product of sum form the function we get…