The weighted sum method is a scalarization technique that transforms a multi-objective optimization problem into a single-objective problem by assigning a weight to each objective and summing them. This creates a composite scalar function, F(x) = w₁f₁(x) + w₂f₂(x) + ... + wₙfₙ(x), where wᵢ are non-negative weights representing the relative importance of each objective fᵢ(x). Optimizing this single function yields one solution on the Pareto front, the set of optimal trade-offs. The method's primary advantage is its simplicity and compatibility with standard single-objective solvers.
