Reddit mentions: The best industrial production & management books

We found 10 Reddit comments discussing the best industrial production & management books. We ran sentiment analysis on each of these comments to determine how redditors feel about different products. We found 7 products and ranked them based on the amount of positive reactions they received. Here are the top 20.

1. Cake-Cutting Algorithms: Be Fair if You Can

    Features:
  • Used Book in Good Condition
Cake-Cutting Algorithms: Be Fair if You Can
Specs:
Height9.3 Inches
Length6.26 Inches
Number of items1
Weight1.10010668738 Pounds
Width0.75 Inches
▼ Read Reddit mentions

2. Optimization in Operations Research (2nd Edition)

Optimization in Operations Research (2nd Edition)
Specs:
Height9.4 Inches
Length7 Inches
Number of items1
Weight3.84265722666 Pounds
Width1.7 Inches
▼ Read Reddit mentions

6. Analysis with Ultrasmall Numbers (Textbooks in Mathematics)

Analysis with Ultrasmall Numbers (Textbooks in Mathematics)
Specs:
Height9 Inches
Length6.3 Inches
Number of items1
Weight1.3007273458 Pounds
Width1 Inches
▼ Read Reddit mentions

🎓 Reddit experts on industrial production & management books

The comments and opinions expressed on this page are written exclusively by redditors. To provide you with the most relevant data, we sourced opinions from the most knowledgeable Reddit users based the total number of upvotes and downvotes received across comments on subreddits where industrial production & management books are discussed. For your reference and for the sake of transparency, here are the specialists whose opinions mattered the most in our ranking.
Total score: 3
Number of comments: 1
Relevant subreddits: 1
Total score: 2
Number of comments: 2
Relevant subreddits: 1
Total score: 2
Number of comments: 1
Relevant subreddits: 1
Total score: 2
Number of comments: 1
Relevant subreddits: 1
Total score: 1
Number of comments: 1
Relevant subreddits: 1
Total score: 1
Number of comments: 1
Relevant subreddits: 1
Total score: 1
Number of comments: 1
Relevant subreddits: 1
Total score: 0
Number of comments: 2
Relevant subreddits: 1

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

Shuffle: random products popular on Reddit

Top Reddit comments about Industrial Production & Management:

u/sven_ftw · 2 pointsr/datascience

Sounds like you are interested in Operations Research as a discipline.

If you are looking for something to give you ideas about what longterm projects and outcomes look like, something like this book here(The Applied Business Analytics Casebook: Applications in Supply Chain Management, Operations Management, and Operations Research) might be good.

If you are looking for something more hands on, then either the Rardin or Nocedal and Wright books might be a good starting point.

u/jaaz42 · 0 pointsr/LifeProTips

What if there are 3 people? Or 4?

Ok, how about a book dedicated to this subject that uses this idea and extends it to voting? https://www.amazon.com/Fair-Division-Cake-Cutting-Dispute-Resolution/dp/0521556449

​

And another book: https://www.amazon.com/Cake-Cutting-Algorithms-Fair-You-Can/dp/1568810768

​

u/sciolizer · 1 pointr/IAmA

Cool idea. If you go into business with multiple friends, you can look at the cake-cutting book for other ways to set up the contract.

u/autoditactics · 1 pointr/learnmath

Some elementary geometry of differentiable curves (check out Gibson's book) would probably be a cool project. This is how differential geometry began, which has applications in physics (the book by Gibson talks about the geometry of trajectories).

Another idea: infinitesimals, the foundations of calculus, and nonstandard calculus (check out Henle or Hrbacek). This also has a historical component, which might make it more interesting. You can substitute nonstandard calculus into most applications of standard calculus, so just use one of those for an application.

A project on a specific function with interesting properties might also be a good idea. For example, the Gamma function, the Lambert W function, or even the Riemann Zeta function to name a few. These pop up in a lot of place in and outside math.

I think the fractional calculus has some applications in quantum physics, but that would probably be hard to talk about.

u/bag_of_words · 2 pointsr/askscience

Genetic algorithms (GAs), the most popular type of evolutionary algorithm, have attracted a lot of attention in the past. They're generally used to attack NP-hard problems, which basically means that the problems don't have a fast way of directly solving them and you'll have to settle for an approximation for serious problems. When it comes to solving these types of problems, you can imagine a large space that needs searching in some manner, where the dimensionality is usually very high. GAs work by combining information from candidate solutions in the space. Combining solutions can be slow and there's usually no reason that combining solutions the way GAs do should be very useful. Even worse, depending on the type of problem you're attacking and the way you encode solutions, the new candidate solution might not even be viable in the space.

I took a course in optimization where the book pretty much flat out said that GAs aren't worth it. I've spent some time working with these things and I found that, for my problems, implementing a local search component made it run faster, pretty much in proportion to how much I integrated the local search. I think GAs are really cool conceptually and people should know how they work, but I would not reach for one to solve a real problem.

From the GA Wikipedia page: "The question of which, if any, problems are suited to genetic algorithms (in the sense that such algorithms are better than others) is open and controversial."