2.1 Single Layer Perceptron (SLP) vs Multilayer Perceptron (MLP)
Single Layer Perceptron (Rosenblatt, 1958): The simplest feedforward neural network consisting of input nodes directly connected to output threshold units without hidden layers. It can only classify linearly separable patterns (e.g., AND, OR logic gates) and fundamentally fails on non-linear problems like the XOR problem (proven by Minsky & Papert, 1969).
Multilayer Perceptron (MLP): Stacks one or more hidden layers between inputs and outputs with non-linear activations. By learning composite hyperplanes, MLPs can approximate arbitrary continuous non-linear decision boundaries.