what's the difference between dynamic programming and stochastic programming, until i was only familiar with the deterministic and stochastic optimization, what is dynamic and how it is different from the other two??/
Dynamic programming is a different concept from those two. It has derived from using the memory more efficiently, by using dynamic programming, you are storing the results as you iterate over your steps and it saves you from the burden of re-calculating your values of the algorithm from the start, and decreases the complexity of the problem. You can check out the Coin Change problem for instance.
That was a remarkable presentation. Good Job Warren
what's the difference between dynamic programming and stochastic programming, until i was only familiar with the deterministic and stochastic optimization, what is dynamic and how it is different from the other two??/
Dynamic programming is a different concept from those two. It has derived from using the memory more efficiently, by using dynamic programming, you are storing the results as you iterate over your steps and it saves you from the burden of re-calculating your values of the algorithm from the start, and decreases the complexity of the problem. You can check out the Coin Change problem for instance.