the following function should be put into table values: $$y = \overline{(a*b*d+c)}$$ So the first thing i am doing is using DeMorgan to get rid of the "whole-term-negation": $$y = (\tilde a + \tilde b +\tilde d * \tilde c)$$
from here all i do is making a 4 variables truth table (4 columns, 16 rows) and set a "1" if the row equals the term.
However, i used an online tool (http://www.elektroniker-bu.de/kvdiagramm.htm) to check my solution and depending on the term i am using {~(a*b*d+c); (~a+~b+~d*~c)}, i get different results. Am i using De Morgan wrong?
~(abc+d)you get(~a+~b+~c) * (~d). So it seems to think adjacency $ab$ has precendence over $+$, but $*$ and $+$ are evaluated left-to-right. – Thomas Andrews Jul 19 '13 at 13:32