Signal Integration
A neuron receives thousands of inputs across its dendritic tree. This is fundamentally a geometric problem of spatial summation.
The Corporate Boardroom. A CEO (soma) takes a vote. Not all board members (inputs) have the same equity. The CEO calculates the dot product: multiplying each member's vote by their specific voting power (dendritic weight) and summing it to reach a consensus.
The membrane voltage response at the soma is the linear combination of inputs and synaptic weights .
Use NumPy dot products. Create an input vector x (binary spike presence: 0 or 1) and a weight matrix W. This lab proves that a single biological layer is mathematically equivalent to a linear perceptron.