Let us assume neuron which aggregates the input and makes a decision on the basis of this aggregation. If sum of all inputs is greater than the given threshold đťšą then output of this neuron is 1 else it is 0. We can implement a boolean function with this neuron if output of this neuron is consistent with the truth table of the boolean function. In other words if the given input configuration for the boolean function outputs 1 then neuron should also give 1 to the same configuration. Consider the following boolean function (x1 And x2) AND (!x3 And !x4)
if I take the wts w1=1, w2=1, w3=1, w4=1 then if inputs are e.g x1=0, x2=1, x3=1, x4=1, o/p of boolean function should be 0. => 1.0 + 1.1 + 1.1 + 1.1 < threshold
=> threshold > 3