The linear classifier is special case 1 of the Gaussian Bayes classifier. All classes share the same covariance matrix, . The quadratic term of the Quadratic Classifier then cancels, and the decision boundary becomes a hyperplane.

Main idea

With $\boldsymbol{\Sigma}_i=\boldsymbol{\Sigma}$, $g_i(\mathbf{x})=\mathbf{w}_i^T\mathbf{x}+w_{i0}$. The boundary is a hyperplane, but in general it is not orthogonal to the line between the means.


Discriminant Function

With , the term is the same for all classes and is dropped:

The term does not depend on the class label . Drop it:

where:

  • (this uses symmetric, so )
  • is the threshold or bias for class

is a linear function of , so this is a linear classifier.


Decision Boundary

The middle term uses , which is true because is symmetric.

Shape of the boundary:

  • a straight line in 2D space
  • a plane in 3D space
  • a hyperplane in higher dimensional space

Orientation of the Hyperplane

The normal vector of the hyperplane is . The line between the means has direction . In general, rotates this direction, so the hyperplane is generally not orthogonal to the line between the means.

The figure shows equal but asymmetric Gaussian distributions. The decision hyperplanes are not perpendicular to the line that connects the means. In the right column, the prior changes from 0.5 to 0.9 for . The hyperplane moves away from the mean of , so the region becomes larger.

In what case is it orthogonal?

The hyperplane is orthogonal to the line between the means when is parallel to . The lecture case is special case 2, , in the Minimum Distance Classifier note. (Extra: it is also true when is an eigenvector of .)