From simple 2D lines to n-dimensional Hyperplanes. This is how we separate data in Machine Learning.
Standard Regression notation.
by = -ax - c ⟹ y = (-a/b)x - (c/b)
In ML, we don't write huge equations. We pack everything into Vectors.
This is the Equation of a Straight Line (and Hyperplane) in Vector form.
Represents a flat Plane.
Represents a Hyperplane.
If the line/plane passes through origin, then b = 0.
wᵀx = 0
If w · x = 0, implies cosθ = 0, so θ = 90°.
"The vector w is perpendicular (normal) to the vector x."