I was reading the following sample problem on http://nlp.stanford.edu/
"Consider building an SVM over the (very little) data set shown in Figure. Working geometrically, for an example like this, the maximum margin weight vector will be parallel to the shortest line connecting points of the two classes, that is, the line between (1,1) and (2,3), giving a weight vector of (1,2). The optimal decision surface is orthogonal to that line and intersects it at the halfway point. Therefore, it passes through (1.5,2). So, the SVM decision boundary is:
y = x_1 + 2x_2 - 5.5"
Can anybody kindly explain to me how we have got this equation? Thanks a lot in advance.