Perceptron

$w_{m+1} = w_{m} + \eta y_i x_i$

$y_i ((w_m+\eta y_i x_i)^T x_i))$

$= y_i w_m^T x_i + \eta y_i^2 x_i^Tx_i$

Does not guarantee that value is greater than 0, but will always add a positive value (moving in right direction).

Linear Separability

Let $X_0 \in \mathbb{R}^n, X_1 \in \mathbb{R}^n$. $X_0, X_1$ are linearly separable if for some vector $w$, all points in $X_0$ have $w^T x_0 > 0$ and all points in $X_1$ have $w^T x_1 < 0$ or vice-versa.

Convergence

Alternatives