svm-soft-margin-three-equivalent-views

IN derived (depth 1)

Created 2026-06-21T10:13:05+00:00 · Reviewed 2026-06-21T15:37:01+00:00

The soft-margin SVM admits three equivalent mathematical formulations — slack variables with margin constraints, empirical risk minimization with hinge loss and Tikhonov regularization, and the C-parameter tradeoff between margin width and classification errors — all describing the same optimization from different theoretical perspectives.

Justifications

SL — depth-1 thematic — three base beliefs about soft-margin SVMs reveal a single optimization viewed through geometric (slack), statistical (ERM), and control (C-parameter) lenses

Antecedents (all must be IN):

  • IN svm-soft-margin-hinge-loss-slack-variables — Soft-margin SVM handles non-separable data by introducing slack variables zeta_i >= 0 and hinge loss max(0, 1 - y_i(w^T x_i - b)), minimizing ||w||² + C * sum(zeta_i).
  • IN svm-equivalent-erm-hinge-loss-tikhonov — The soft-margin SVM is equivalent to empirical risk minimization (ERM) with hinge loss and Tikhonov (L2) regularization.
  • IN svm-c-parameter-margin-error-tradeoff — The regularization parameter C controls the trade-off between maximizing the margin and minimizing classification errors: large C approximates hard-margin behavior (narrow margin, fewer errors); small C allows more violations (wider margin, more errors).

Dependents

These beliefs depend on this one: