#2,968 in Business & money books

Reddit mentions of Integer Programming

Sentiment score: 1
Reddit mentions: 1

We found 1 Reddit mentions of Integer Programming. Here are the top ones.

Integer Programming
Buying options
View on Amazon.com
or
    Features:
  • Complete kit includes: (4pcs) 100 Watt Polycrystalline Solar Panel, 30-amp P30L Solar Charge Controller (w/ LCD Display and user adjustable settings), 40 feet of UL Listed 12 AWG Solar Cable, connectors for wiring, solar mounting hardware + 1500 Watt (3000 Watt surge) VertaMax DC to AC Power Inverter, 2 pcs of 2 AWG Battery Cables for connecting the inverter to a 12V battery
  • Solar charging will provide on average 1600 Watt Hours (Wh) or 135 Amp hours of charge per day (depends on sunlight availability)
  • Designed for RVs, cabins, homes, boats, back-up and remote power use
  • Bundle and save! Purchase all the components together and save time and money!
  • Perfect kit for a off-grid 12 volt battery system. 1500 Watt VertaMax Inverter provides plenty of AC power to run your household appliances!
Specs:
Height9.21 Inches
Length6.14 Inches
Number of items1
Release dateSeptember 1998
Weight1.2566348934 Pounds
Width0.84 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 1 comment on 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.