I need to solve / simplify the output of a logic circuit. The output is $(A+B)'C'(C+D)$
I wrote the truth table and it returns 0 in all outputs. I tried to solve it using laws of boolean algebra:
$(A+B)' = A'B'$
And $C′(C+D) = (C′C + C′D)$
$C′C = 0$ [Boolean law $A.A′ = 0$]
Does that mean $(C′C + C′D) = 0$ as well?
If that's the case, the result of the entire output would be zero. Am I right or is there any mistakes? Is there any other law applied here?
Update: I made a mistake in the truth table. It doesn't return zero in all outputs.