Support vector machine - SVM - calculation on paper

75 Views Asked by At

I have a problem with SVM. I tried to solve this but it doesn't work. I followed a guide on this link, but I'm lost. Okay, the problem:

I have dataset $D = {((0,0),-1),((2,4),-1),((4,2),-1),((6,4),+1),((6,8),+1),((8,8),+1)}$

I need to find a hard margin (A), write a linear model $h(x)$ that corresponds to that margin (B), and determine the width of the margin (C), as well as the offset (D). I also have to determine the support vectors (E). Finally, I need to find the class in which the instance $(5,6)$ should be found (F).

I need to calculate all this (A-F) using a calculator only, not using some algorithm for the computer. Honestly, I can't find any material to guide me on how to solve this on paper, I only can find computer algorithms.

Any help would be appreciated! Thank you.