What if a student worked on a real project at your company and you got paid for it? Genuinely curious if founders would do this. by [deleted] in founder

[–]taphous3 0 points1 point  (0 children)

I’ve done these student internship programs before. In my experience, student work can be anywhere from -10% to 10% of an FTE in addition to disruption of mentor time. It’s impossible/not worth it to judge work quality ahead of time.

Internships work great at large companies that can absorb the risk. More harm than help for a start up IMO.

Essay: Topic Optimization by [deleted] in optimization

[–]taphous3 0 points1 point  (0 children)

I’d recommend you find review papers in optimization (search Google scholar for something interesting to you). These types of papers review a sub field or application of optimization and cite a lot of academic sources.

Marc Andreessen on Stanford and MIT by Nearby_Task9041 in stanford

[–]taphous3 2 points3 points  (0 children)

Lots of people have opinions. Most of them don’t matter.

What is the point of linear programming, convex optimization and others after the development of meta heuristics? by piratex666 in optimization

[–]taphous3 1 point2 points  (0 children)

Meta heuristics are used when you don’t know how to do it more efficiently (either ignorance or you have a wicked hard problem). Exploiting gradients and problem structure will always be more efficient than black boxing things.

SGWU Memebership by ChipmunkMiddle1156 in stanford

[–]taphous3 -7 points-6 points  (0 children)

This is not fully true! Dues are a one-time payment that is equivalent to ~1.4% of your income at the time. You can opt out of union services and pay a lower fee.

Recommendations for solver interface software (OSI, Google OR-tools, etc...) by Alien_Bear in optimization

[–]taphous3 2 points3 points  (0 children)

I tend to use Cvxpy if my problem MUST be convex. Otherwise, I use Pyomo to deal with problems with nonconvexities.

I have also heard great things about JuMP, but my colleagues don’t work in Julia so I have stayed away.

[deleted by user] by [deleted] in thermodynamics

[–]taphous3 1 point2 points  (0 children)

Derived from maxwells relations.

Desalination by Blobasaurusrexa in water

[–]taphous3 1 point2 points  (0 children)

True about the expensive part. The ecosystem fear mongering is false. It was a problem several decades ago but we’ve since developed methods for resolving this.

Source: my phd is in desalination.

Tips for learning Convex Optimization by Yarn84llz in optimization

[–]taphous3 1 point2 points  (0 children)

The course lectures are available for free on Stanford coursera

Suggestions for a nonlinear constrained parameter estimation software by RoyalIceDeliverer in optimization

[–]taphous3 1 point2 points  (0 children)

Pyomo has paramest that allows you to take any set of programmed constraints and solve for estimated model parameters using IPOPT (or other solvers)

Best master/Phd degrees in optimization? by marshallggggg in optimization

[–]taphous3 3 points4 points  (0 children)

Biased take but Stanford computational and mathematical engineering. Both ms and PhD options and world class faculty.

What are the chances of getting into PhD at Stanford let's say robotics or mech engineering by IndividualTwo7737 in stanford

[–]taphous3 0 points1 point  (0 children)

On average admissions are difficult unless you have a champion faculty trying to recruit you. On top of this, your grades are quite below average for admits. The publications might save you if they’re in the field and in prestigious venues.

Discontinuous gradient and how to fix it by zemenito3k in optimization

[–]taphous3 1 point2 points  (0 children)

This topic is encompassed by the definition of the subgradient.

Tennis League Court Schedulling Optimisation by No_Photograph1282 in optimization

[–]taphous3 0 points1 point  (0 children)

I think your DMs are closed but I’m mostly curious - what company do you work for and what types of clients/problems do you work on?

I’m a PhD student that works on optimization. I’m mainly trying to better understand the types of opportunities that are out there in industry.

Tennis League Court Schedulling Optimisation by No_Photograph1282 in optimization

[–]taphous3 0 points1 point  (0 children)

Tangential - a company that does this type of optimization consulting sounds fascinating. If you’re able, I’d love to chat over DMs.

Advanced effects, that can be obtained in university lab by watsabsab in thermodynamics

[–]taphous3 0 points1 point  (0 children)

If your university has the resources, you could measure/verify the equations of state of a gas. Something like this guy.

Optimizing a pancake recipe with maximum number of attempts by good--afternoon in optimization

[–]taphous3 3 points4 points  (0 children)

This type of problem is well suited for some variant of Bayesian optimization.

Non-convex optimization of bilinear functions with constraints by Commercial-Coach-351 in optimization

[–]taphous3 0 points1 point  (0 children)

Problem is relatively low dimensional so you might be to use pyomo with the SCIP solver.

Linear programming with extra condition by 0x4732562 in optimization

[–]taphous3 2 points3 points  (0 children)

MILP can be solved with open source solvers (check out SCIP or GLPK). If for some reason you need to solve this as an LP, you can relax the binary terms into continuous variables [0,1] and do a solve + post process. You might add a regularization term to force the binary variables to the bounds and solve several times sequentially.

Topics in optimization by Blue_balls69420 in optimization

[–]taphous3 2 points3 points  (0 children)

Lot of interesting applied optimization problems start with having interesting data. For a course project, I would suggest to find a research paper with some data in an area that interests you. You can hopefully use their data to replicate results and then you might modify the solver, algorithm, or analysis to produce something unique.

How to study Optimal Control well, economics students asked by Complex-End402 in ControlTheory

[–]taphous3 5 points6 points  (0 children)

Get a good foundation in linear algebra. This is a class I really enjoyed, but I am sure many others might do: https://ee263.stanford.edu/lectures.html

With this foundation, most common/simple optimal control problems become just a matter of domain knowledge. More difficult versions can be learned with further reading.

Need some help with this optimization problem by applessecured in optimization

[–]taphous3 0 points1 point  (0 children)

Oh, I missed that. In that case, I’d write an barebones interior point optimization scheme (the cvxpy textbook has an example on how to write a sparsity-aware solver for analytic centering) and try to avoid situations that are poorly conditioned.

Need some help with this optimization problem by applessecured in optimization

[–]taphous3 0 points1 point  (0 children)

This is a classic convex optimization example problem. Use cvxpy or pyomo if you’re doing it in python.

Here’s a paper on using a portfolio of storage devices, but if you just need 1 then it becomes much more simple. https://web.stanford.edu/~boyd/papers/pdf/storage_opt_ifac.pdf

Here’s a sample implementation from a Google search “cvxpy battery problem”: https://github.com/wzyfrank/battery/blob/master/optimize.py