Consider two perceptrons one denoting boolean AND and one denoting boolean OR. What are two ways to go from an AND perceptron to an OR perceptron?
a) Increase the magnitude of the bias
b) Decrease the value of weights
c) Increase the value of weights
d) Decrease the magnitude of the bias
Decreasing the bias will result in going towards 0 or -ve side of the output whereas on increasing the bias will tend to move the output more towards 0.5 or higher, thus by increasing the weight we will be able to convert AND to OR i.e. cases where one of the weights is TRUE the function should also return TRUE, in case of AND it is less than 0.5 thus by increasing the weight we can turn it into TRUE i.e. option “a)” should be correct not “d)”.