What does “subject to” mean in reference to Sigma math notation?

221 views

Like in this picture:

View post on imgur.com

I understand the first part, but what does the “subject to” part mean?

Help? Couldn’t find anything on google searching “sigma subject to”.

In: 1

3 Answers

Anonymous 0 Comments

“Subject to” had nothing to do with Sigma. That Sigma is just the regular, standard summation symbol.

This problem is using the phrase “subject to” to express constraints. If you Google “constrained optimization,” you’ll find a bunch of relevant stuff, although it may not be approachable.

Say you want to find the largest marble in a bag of marbles. That’s an optimization problem: If B is your bag of marbles, find the x in B that maximizes size(x).

Say you want to find the largest **red** marble in a bag of marbles. That’s a *constrained* optimization problem: find the x in B that maximizes size(x), **subject to** color(x) = red. There might be values of x that are higher (and there might not), but you are *constrained* to which solutions you are willing to consider.

Constrained Optimization is important is real-world optimization problems. For example if you’re building a bridge, you’ll be trying to find the bridge design that minimizes cost, **subject to** minimum weight that it can hold. And other constraints like build time, geological constraints, maybe additional stuff like ecological impact… basically *everything* you might want to achieve can be modeled as a constraint.

In the mathematical formalization, if you have multiple constraints you might squish them together into a single equation. That’s probably what the Sigma (addition) is doing: combining a multi-dimensional constraint into a single equation.

You are viewing 1 out of 3 answers, click here to view all answers.