Reddit Reddit reviews Integer Programming

We found 1 Reddit comments about Integer Programming. Here are the top ones, ranked by their Reddit score.

Business & Money
Books
Business Management & Leadership
Total Quality Management
Quality Control & Management
Integer Programming
Check price on Amazon

1 Reddit comment about Integer Programming:

u/cocojambles ยท 3 pointsr/math

I'd probably start with a combination of Boyd's Convex Optimization and Nocedal's Numerical Optimization.

Convex optimization optimizes convex functions over convex sets, and thus provably finds global optima efficiently. Nocedal's book on the other hand first covers unconstrained and then later constrained methods for the optimization of non-linear functions which may or may not be convex. Thus these methods will only provably converge to local optima.

Convex optimization has a rather structured almost algebraic feel to it, when compared to the more free-form and heuristic feel of general nonlinear optimization.

For Boyd's book you can supplement it with his online course EE364a as well as a set of excellent supplemental problems found here.

For Nocedal's book you can supplement it with some notes by Blomgren found here.

After this you could move on to more advanced convex optimization with Boyd's follow-up course on advanced convex optimization EE364b. Or you could look into heuristic/global optimization which relaxes guarantees on convergence in an attempt to find the global optima of non-convex functions.

There is also integer programming/combinatorial optimization. For this in my opinion the best introduction for a mathematically mature student is Wosley's Integer Programming.

Integer programming generally proceeds via relaxations to convex optimization problems, followed by rounding the results to integer values, and tends to incorporate more probabilistic methods than do either convex or nonlinear optimization. Integer programming is also inextricably linked to complexity theory, so you'll get to learn about the various complexity classes and how they relate to various families of integer programming problems.

This should be enough to get you started.