At the time, Bellman was looking for a way to solve complex optimization problems. Optimization problems require you to pick the best solution from a set of options. An example of an optimization problem is the Traveling salesman problem. The goal is to find the shortest route to allow the salesman to visit each city exactly once and return to the starting city. Bellman’s approach to these problems was to break them into smaller sub-problems and solve the sub-problems from the smallest to the largest. He then stored the results of the sub-problems and reused them to solve larger sub-problems. This is the main idea behind dynamic programming.

What is Dynamic Programming?

Dynamic programming solves optimization problems by breaking them down into smaller sub-problems, solving each sub-problem once, and storing their solutions so that they can be reused and combined to solve the larger problem. The problems are solved from the smallest to the largest, allowing solutions to be reused.

How Dynamic Programming Works?

Solving a problem using dynamic programming involves the following steps: To see this in action, we calculate the 6th Fibonacci number, F(6), using this process. First, define the sub-problems that need to be solved. The second step involves solving each sub-problems using a recursive function or an iterative process. We solve the sub-problems from the smallest to the largest, reusing results from smaller sub-problems. This gives us the following: Therefore: F(6) = F(5) + F(4) F(5) = F(4) + F(3) F(4) = F(3) + F(2) F(3) = F(2) + F(1) F(2) = F(1) + F(0) F(1) = 1 F(0) = 0 As we solve each of the sub-problems, we store the solutions in an array or table so that they can be reused in solving larger sub-problems like so: F(1) = 1 F(2) = F(1) + F(0) = 1 + 0 = 1 F(3) = F(2) + F(1) = 1 + 1 = 2 F(4) = F(3) + F(2) = 2 + 1 = 3 F(5) = F(4) + F(3) = 3 + 2 = 5 F(6) = F(5) + F(4) = 5 + 3 = 8 Once all of the sub-problems have been solved, we use the solutions to construct the solution to the original problem. In this case, the solution to the original problem is the 6th Fibonacci number, which is found by summing the results of F(5) and F(4), sub-problems identified from the largest problem. The result gives us 8.

Where and Why Dynamic Programming Is Used?

Dynamic programming is used in areas where we have problems that can be divided into smaller sub-problems, and their solutions are used to solve larger problems. These areas include computer science, economics, mathematics, and engineering. In computer science, it is used to solve problems involving sequences, graphs, and integer values and in competitive programming. In economics, it is used to solve optimization problems in finance, production, and resource allocation. In mathematics, dynamic programming is used in game theory, statistics, and probability, where it is used to solve optimization problems. In engineering, it is used to solve problems in resource allocation, scheduling, manufacturing, communication, and control systems. There are several advantages to using dynamic programming to solve optimization problems: When it comes to solving optimization problems, dynamic programming is a very useful tool to ensure efficiency in solutions.

Approaches Used in Dynamic Programming

In dynamic programming, two approaches are used to solve optimization problems. These are the top-down approach and the bottom-up approach.

Top-Down Approach

This approach is also known as memoization. Memoization is an optimization technique primarily used to make computer programs faster by storing the results of function calls in the cache and returning the cached results the next time they are needed rather than computing them again. The top-down approach involves recursion and caching. Recursion involves a function calling itself with simpler versions of the problem as its argument. Recursion is used to break down the problem into smaller sub-problems and solve the sub-problems. Once a sub-problem is solved, its result is cached and reused whenever a similar problem occurs. The top-down is easy to understand and implement and only solves a sub-problem once. A downside to it, however, is that it takes up a lot of memory because of recursion. This can lead to a stack overflow error.

Bottom-Up Approach

The bottom-up approach, also known as tabulation, does away with recursion, replacing it with iteration, thus avoiding stack overflow errors. In this approach, a large problem is broken into smaller sub-problems, and the solutions for the sub-problems are used to solve the larger problem. Smaller sub-problems are first solved from the largest to smallest, and their results are stored in a matrix, array, or table, hence the name tabulation. The stored results solve larger problems that depend on the sub-problems. The result of the original problem is then found by solving the largest sub-problem using previously computed values. This approach has the advantage of being memory and time efficient by doing away with recursion. 

Examples of Problems That Can Be Solved by Dynamic Programming

The following are some programming problems that can be solved using dynamic programming:

#1. Knapsack Problem

A knapsack is a bag made of canvas, nylon, or leather typically strapped on the back and used by soldiers and hikers to carry supplies. In the knapsack problem, you’re presented with a knapsack, and given its carrying capacity, you are required to choose items, each with its value. Your selection should be such that you get the maximum total value of items picked and the weight of the items is less than or equal to the knapsack capacity. An example of the knapsack problem is given below: Imagine that you are going on a hiking trip and have a knapsack with a capacity of 15 kilograms. You have a list of items that you can bring with you, along with their values and weights, as shown in the table below: Choose a subset of the items to bring such that the total value of the items is maximized while the total weight is less than or equal to the knapsack capacity, which is 15 kilograms. Real-world applications of the knapsack problem involve selecting securities to add to a portfolio to minimize risk and maximize profit and finding the least wasteful ways to cut raw materials.

#2. Scheduling Problem

A scheduling problem is an optimization problem in which the goal is to optimally assign tasks to a set of resources. The resources may be machines, personnel, or other resources used to complete the tasks. An example of a scheduling problem is given below: Imagine that you are a project manager responsible for scheduling a set of tasks that need to be completed by a team of employees. Each task has a start time, an end time, and a list of employees who are qualified to complete it.  Here is a table that describes the tasks and their characteristics: Assign each task to an employee to minimize total completion time. The scheduling problem can be encountered in the manufacturing industry when trying to optimize the allocation of resources such as machines, materials, tools, and labour. It can also be encountered in healthcare when optimizing the use of beds, personnel, and medical supplies. Other industries where this problem can occur are project management, supply chain management, and education.

#3. Travelling Salesman Problem

This is one of the most studied optimization problems that can be solved using dynamic programming. The travelling salesman problem provides a list of cities and the distances between each pair of cities. You are required to find the shortest possible route that visits each city exactly once and returns to the origin city. An example of a travelling salesman problem is given below: Imagine that you are a salesperson who needs to visit a set of cities in the shortest possible time. You have a list of the cities that you need to visit and the distances between each pair of cities, as shown in the table below: The travelling salesman problem can be encountered in the leisure industry when trying to plan routes for tourists, logistics when planning the shipping of goods, transport when planning bus routes, and in the sales industry, among others. Clearly, dynamic programming has many real-world applications, which helps to learn more about it. Consider the following resources to expound your knowledge of dynamic programming.

Resources

Dynamic Programming by Richard Bellman

Dynamic Programming is a book by Richard Bellman, who came up with dynamic programming and developed it in its early stages. The book is written in an easy-to-understand way that only requires basic knowledge of mathematics and calculus to understand the text. In the book, Bellman introduces the mathematical theory of a multistage decision process which is key in dynamic programming. The book then examines bottleneck problems in multistage production processes, existence and uniqueness theorems, and the optimal inventory equation. The best thing about the book is that Bellman offers examples of many complex problems in fields such as logistics, scheduling theory, communication theory, mathematical economics, and control processes and shows how dynamic programming can solve the problems. The book is available in Kindle, hardcover, and paperback versions.

Dynamic Programming Algorithms Master Course

This Dynamic Programming Algorithms Master Course by Udemy is offered by Apaar Kamal, a software engineer at Google, and Prateek Narang, who also worked with Google. The course is optimized to help learners excel in programming competition which features a lot of problems that require dynamic programming. Aside from programming competitors, the course is ideal for programmers looking to improve their understanding of algorithms and people preparing for programming interviews and online coding rounds. The course, which is over 40hrs long, covers dynamic programming in depth. The course first offers a refresher on concepts such as recursion and backtracking. It then covers dynamic programming in game theory, strings, trees & graphs, matrix exponentiation, bitmasks, combinatorics & subsequences, partition problems, and multi-dimensional dynamic programming, among many other concepts.

Competitive Programming Essentials, Master Algorithms

Udemy offers a Competitive Programming Essentials Course by Prateek Narang and Amal Kamaar that covers dynamic programming, maths, number theory, and advanced data structures & algorithms in a manner that is useful and relevant to competitive programmers. The course offers a refresher on data structures and algorithms before diving into more complex algorithms and techniques that come in handy in competitive programming. The course covers dynamic programming, mathematics, game theory, pattern matching, Bitmasking, and a myriad of advanced algorithms used and tested in programming competitions. The Udemy course is divided into 10 modules and 42 sections and provides lots of practice questions after each section. This bestseller course is a must-have for anyone interested in competitive programming.

Final Words

Dynamic programming is a beneficial skill for any programmer to learn to improve their problem-solving of real-world problems. Therefore, programmers should consider going through the suggested resources to add this crucial tool to their toolbox. Next, you can check out programming languages to use in data science.

Dynamic Programming  What It Is  How It Works  and Learning Resources - 5Dynamic Programming  What It Is  How It Works  and Learning Resources - 16Dynamic Programming  What It Is  How It Works  and Learning Resources - 34Dynamic Programming  What It Is  How It Works  and Learning Resources - 5Dynamic Programming  What It Is  How It Works  and Learning Resources - 33Dynamic Programming  What It Is  How It Works  and Learning Resources - 51Dynamic Programming  What It Is  How It Works  and Learning Resources - 38Dynamic Programming  What It Is  How It Works  and Learning Resources - 80Dynamic Programming  What It Is  How It Works  and Learning Resources - 98Dynamic Programming  What It Is  How It Works  and Learning Resources - 24Dynamic Programming  What It Is  How It Works  and Learning Resources - 75Dynamic Programming  What It Is  How It Works  and Learning Resources - 74Dynamic Programming  What It Is  How It Works  and Learning Resources - 5Dynamic Programming  What It Is  How It Works  and Learning Resources - 25Dynamic Programming  What It Is  How It Works  and Learning Resources - 50Dynamic Programming  What It Is  How It Works  and Learning Resources - 27Dynamic Programming  What It Is  How It Works  and Learning Resources - 19Dynamic Programming  What It Is  How It Works  and Learning Resources - 71Dynamic Programming  What It Is  How It Works  and Learning Resources - 12Dynamic Programming  What It Is  How It Works  and Learning Resources - 59Dynamic Programming  What It Is  How It Works  and Learning Resources - 4Dynamic Programming  What It Is  How It Works  and Learning Resources - 93Dynamic Programming  What It Is  How It Works  and Learning Resources - 90Dynamic Programming  What It Is  How It Works  and Learning Resources - 80Dynamic Programming  What It Is  How It Works  and Learning Resources - 19Dynamic Programming  What It Is  How It Works  and Learning Resources - 96Dynamic Programming  What It Is  How It Works  and Learning Resources - 54Dynamic Programming  What It Is  How It Works  and Learning Resources - 67Dynamic Programming  What It Is  How It Works  and Learning Resources - 37Dynamic Programming  What It Is  How It Works  and Learning Resources - 84Dynamic Programming  What It Is  How It Works  and Learning Resources - 84