Hi I am new to this site.
I got an assessment to complete tomorrow. Its about Computer programming, and i am having trouble with these questions. Can anyone please help me.
Using truth tables show that:
- $A+B+C = (A+B)+C$
- $A\cdot 1 = A$
- $A'\cdot B = (A+B)'$
please someone who knows the answer please help me.
To make a truth table, you make columns for all the variables and rows for all combinations of truth values of the variables. Then you make as many columns as you want to assess the truth value of the statement in question. If you want to prove equality of two expressions, they must agree on all values of the truth value of the variables. It looks like you may have miscopied two of the problems: I would expect the first to be $A+(B+C)=(A+B)+C$ (because $+$ is usually defined as a binary operator) and the third is not correct. I'll give some lines of the first:
$$\begin {array}{c|c|c|c|c|c} \\ A&B&C&(A+B)&(A+B)+C&A+B+C \\ \hline T&T&T&T&T&T\\T&T&F&T&T&T\\F&F&T&F&T&T \end {array}$$
There are five more lines. Mine would usually be the first, second, and seventh lines in the table.