A topic in the Open Knowledge Graph — a free, open map of 15,290 topics and the order to learn them in.

Regularization Theory (Tikhonov, Spectral)

Research Depth 102 in the knowledge graph I know this Set as goal
13topics build on this
723prerequisites beneath it
See this on the map →
Eigenvalues and EigenvectorsRegularization Techniques+2 moreDeep Learning TheoryImplicit Regularization+1 more
regularization inverse-problems tikhonov spectral-methods

Core Idea

Regularization theory provides the mathematical framework for solving ill-posed inverse problems — problems where the solution does not depend continuously on the data. In machine learning, learning from finite samples is ill-posed: small changes in the training data can cause large changes in the learned function. Tikhonov regularization stabilizes the problem by adding a squared-norm penalty, shrinking the solution toward zero. Spectral regularization generalizes this by applying a filter function to the eigenvalues of the kernel matrix, controlling which frequency components of the solution are retained. Both approaches can be understood through the bias-variance lens: the regularization parameter trades off approximation error against estimation stability.

Explainer

Regularization in machine learning is often presented as a practical trick to prevent overfitting — add a penalty to the loss and tune its strength. Regularization theory reveals the deeper mathematical reason this works: learning from finite data is an ill-posed inverse problem, and regularization is the principled way to restore well-posedness.

An inverse problem is well-posed (in Hadamard's sense) if a solution exists, is unique, and depends continuously on the data. Learning from finite samples violates the third condition: the mapping from training data to learned function is discontinuous. Small perturbations to the labels can cause the learned function to change dramatically, especially when the model is flexible. In the spectral view, the kernel matrix K has eigenvalues that decay toward zero. The unregularized solution involves dividing by these eigenvalues (inverting K), which amplifies noise in the directions corresponding to small eigenvalues — exactly the high-frequency, fine-grained components where the signal-to-noise ratio is worst.

Tikhonov regularization adds lambda * ||f||^2 to the loss, changing the effective inversion from K-1 to (K + lambda * I)-1 * K. In the eigendecomposition, each eigencomponent is multiplied by the filter factor sigma_i / (sigma_i + lambda) instead of being divided by sigma_i. When sigma_i is large (strong signal directions), the filter is close to 1 — the information is preserved. When sigma_i is small (noisy directions), the filter suppresses the component toward zero. The regularization parameter lambda sets the threshold: eigencomponents above lambda pass through; those below lambda are attenuated. This is a smooth, principled tradeoff between retaining signal and suppressing noise.

Spectral regularization generalizes this idea. Any method that applies a filter function g_lambda(sigma) to the eigenvalues of the kernel matrix is a spectral regularizer. Tikhonov uses g(sigma) = sigma/(sigma + lambda). Truncated SVD uses a hard cutoff: g(sigma) = 1 for sigma above a threshold, 0 below. Early stopping in iterative methods like gradient descent is also a spectral regularizer: after t iterations, the implicit filter is g(sigma) = 1 - (1 - eta*sigma)t, which gradually incorporates more eigencomponents as training proceeds. This unifying eigenvalue perspective reveals that many seemingly different regularization strategies — norm penalties, truncation, early stopping — are all performing the same fundamental operation: controlling which spectral components of the solution are retained, trading bias for stability in a way that depends on the eigenstructure of the problem.

Practice Questions 4 questions

Prerequisite Chain

Understanding ZeroThe Number ZeroCounting to FiveCounting to 10Counting to 20Counting a Set of Objects Up to 20Cardinality: The Last Number CountedMatching Numerals to QuantitiesSubitizing Small QuantitiesAddition Within 10Number Bonds to 10Addition Within 20Doubles and Near DoublesDoubles Facts Within 10Near Doubles Facts Within 20Mental Math Strategies for AdditionMental Math: Adding and Subtracting TensAddition Within 100Repeated Addition as MultiplicationMultiplication as Equal GroupsMultiplication: ArraysBasic Multiplication Facts (0s, 1s, 2s, 5s, 10s)Multiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Multiplication and Division Fact FamiliesRelationship Between Multiplication and DivisionDivision Facts as Inverse of MultiplicationRemainders and Quotients in DivisionDivision Word ProblemsMulti-Step Word ProblemsSolving Multi-Step Word ProblemsMultiplication Word ProblemsDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueIntegers and the Number LineComparing and Ordering IntegersAbsolute ValueAdding IntegersSubtracting IntegersMultiplying IntegersDividing IntegersUnit RatesProportionsPercent ConceptConverting Between Fractions, Decimals, and PercentsOperations with Rational NumbersTwo-Step EquationsSolving Multi-Step EquationsEquations with Variables on Both SidesAngle Pairs: Complementary, Supplementary, and VerticalParallel Lines and TransversalsCorresponding AnglesAlternate Interior AnglesTriangle Angle Sum TheoremExterior Angle TheoremTriangle Inequality TheoremSimilar Triangles: AA SimilaritySimilar Triangles: SSS and SAS SimilarityProportions in Similar TrianglesRight Triangle Trigonometry IntroductionSine, Cosine, and Tangent RatiosTrigonometric Ratios ReviewRadian MeasureConverting Between Degrees and RadiansThe Unit CircleGraphing Sine and CosineGraphing Tangent and Reciprocal Trigonometric FunctionsDerivatives of Trigonometric FunctionsAntiderivativesIndefinite IntegralsBasic Integration RulesRiemann SumsDefinite Integral DefinitionProbability Density Functions and Continuous DistributionsCumulative Distribution FunctionsContinuous Random VariablesProbability Density FunctionsExpected ValueLinear Regression in Machine LearningNeural Network FundamentalsBackpropagation AlgorithmMultilayer Perceptrons (MLPs)Activation Functions in Neural NetworksVanishing Gradient ProblemGradient Descent and OptimizationGradient Boosting MachinesSupport Vector MachinesKernel Methods and the Kernel TrickKernel Theory and RKHSRepresenter TheoremRegularization Theory (Tikhonov, Spectral)

Longest path: 103 steps · 723 total prerequisite topics

Prerequisites (4)

Leads To (3)