Question 1
Consider a neuron with binary inputs x1 and x2, and an output y. The neuron computes the weighted sum of its inputs and produces an output according to a threshold. The threshold is denoted as θ. The activation function is such that y = 1 if the weighted sum is greater than or equal to θ, otherwise y = 0.
Which of the following statements are correct regarding the neuron’s ability to represent logical AND and OR functions?
The neuron can implement the AND function by setting appropriate weights and a threshold.
The neuron can implement the OR function by setting appropriate weights and a threshold.
There exists a single set of weights and a threshold that allows the same neuron to correctly implement both the AND and OR functions simultaneously.
Neurons are limited to implementing either the AND or the OR function and cannot represent both simultaneously.
