Md. Asif Uddin
Problem I.2.B01

One hyperplane, four points, four signed distances

numeric▲△△

All values rounded to 4 d.p.

STATEMENT

A perceptron’s parameters are given. Write the equation of its decision boundary, classify four points, and compute each point’s signed distance from the boundary.

GIVEN

w=[21],b=1\vec{w} = \begin{bmatrix} 2 \\ -1 \end{bmatrix}, \qquad b = -1

and the four points

A=(2,1),B=(0,1),C=(1,1),D=(0,3)A = (2, 1), \quad B = (0, 1), \quad C = (1, -1), \quad D = (0, 3)

FIND

The boundary as an equation in x1,x2x_1, x_2; the predicted label of each point; and each signed distance, a scalar in the same units as the coordinates.

STRATEGY

Compute the raw score s=w,x+bs = \langle \vec{w}, \vec{x}\rangle + b once per point. The sign of ss gives the class and s/ws/\lVert\vec{w}\rVert gives the distance, so one quantity answers both questions.

SOLUTION

Step 1 — the boundary. By Definition 2 the boundary is the set where the score is zero:

2x1x21=0equivalentlyx2=2x112x_1 - x_2 - 1 = 0 \qquad\text{equivalently}\qquad x_2 = 2x_1 - 1

A line of slope 22 through (0.5,0)(0.5, 0). Note that w=(2,1)\vec{w} = (2, -1) is perpendicular to it: the direction along the line is (1,2)(1, 2), and (2,1),(1,2)=22=0\langle (2,-1),(1,2)\rangle = 2 - 2 = 0. The weight vector is always the normal to the boundary. That single fact makes every later step geometric rather than algebraic.

Step 2 — the norm. Needed once, for all four points:

w=22+(1)2=5=2.2361\lVert \vec{w}\rVert = \sqrt{2^2 + (-1)^2} = \sqrt{5} = 2.2361

Step 3 — the scores.

sA=(2)(2)+(1)(1)1=411=+2sB=(2)(0)+(1)(1)1=011=2sC=(2)(1)+(1)(1)1=2+11=+2sD=(2)(0)+(1)(3)1=031=4\begin{aligned} s_A &= (2)(2) + (-1)(1) - 1 = 4 - 1 - 1 = +2 \\ s_B &= (2)(0) + (-1)(1) - 1 = 0 - 1 - 1 = -2 \\ s_C &= (2)(1) + (-1)(-1) - 1 = 2 + 1 - 1 = +2 \\ s_D &= (2)(0) + (-1)(3) - 1 = 0 - 3 - 1 = -4 \end{aligned}

Step 4 — labels and distances. Divide each score by 5\sqrt5 (Projections and orthogonality 0.LA.05):

PointScoreDistanceClass
A=(2,1)A = (2,1)+2+2+0.8944+0.8944+1+1
B=(0,1)B = (0,1)2-20.8944-0.89441-1
C=(1,1)C = (1,-1)+2+2+0.8944+0.8944+1+1
D=(0,3)D = (0,3)4-41.7889-1.78891-1

Answer

Boundary: 2x1x21=02x_1 - x_2 - 1 = 0.

dist(A)=+0.8944,dist(B)=0.8944,dist(C)=+0.8944,dist(D)=1.7889\text{dist}(A) = +0.8944,\quad \text{dist}(B) = -0.8944,\quad \text{dist}(C) = +0.8944,\quad \text{dist}(D) = -1.7889

Classes: A,C+1A, C \to +1 and B,D1B, D \to -1. Distances are scalars in the units of the coordinate axes; the scores are not, which is why the division by w\lVert\vec{w}\rVert is not optional.

Check — numeric · i-2-b01-decision-boundary.py
norm = sqrt(w[0] ** 2 + w[1] ** 2)
score = w[0] * x[0] + w[1] * x[1] + b
dist  = score / norm

Prints ||w|| = 2.2361 and the four distances above.

Executed in CI. The digits above are the digits it printed.

Check — sanity

A point on the boundary has distance zero. Take x=(0.5,0)x = (0.5, 0), which satisfies x2=2x11x_2 = 2x_1 - 1. Its score is (2)(0.5)01=0(2)(0.5) - 0 - 1 = 0, so its distance is 00. The formula agrees with the definition it came from.

Rescaling the parameters changes nothing geometric. Double both: w=(4,2)\vec{w} = (4,-2), b=2b = -2. Then sA=4s_A = 4 and w=25\lVert\vec{w}\rVert = 2\sqrt5, so the distance is 4/(25)=0.89444/(2\sqrt5) = 0.8944 — unchanged. The scores doubled and the distances did not, which is exactly the difference between the functional margin (Definition 4) and the geometric one (Definition 5).

Moving a point along the boundary direction changes nothing. Shift AA by (1,2)(1,2), the direction along the line, to get (3,3)(3,3): its score is 631=26 - 3 - 1 = 2, identical. Moving perpendicular to w\vec{w} cannot change the score, because w\vec{w} is what the score measures against.

Where this breaks

The distance formula requires w0\lVert\vec{w}\rVert \neq 0. At w=0\vec{w} = \vec{0} the score is the constant bb for every input, the “boundary” is empty or all of R2\R^2, and the division is undefined. That is not a pathological corner: it is the state a perceptron is initialised in, which is why the first update of I.2.B02 has margin exactly zero and the rule must treat 0\le 0 rather than <0< 0 as a mistake.

Variation

Keep w\vec{w} and change bb from 1-1 to 5-5. Predict, before computing, which points change class — then verify, and state in one sentence what the bias does geometrically.

Draws on