DP: What's a subproblem space? Why have varying indices for a subproblem?

In summary, in dynamic programming, the space of subproblems has a mathematical definition, and it is necessary to have an arbitrary index for the subproblem to vary in order to optimize the parenthesization of matrix-chain multiplication.
  • #1
CGandC
326
34
In dynamic programming:
1. what is the definition of the space of subproblems? does it have a mathematical definition?

2. why is it necessary to have an arbitrary index for the subproblem to vary?

To elaborate on question 2, I've taken the following paragraph from chapter 15.3 in CLRS:Conversely, suppose that we had tried to constrain our subproblem space for
matrix-chain multiplication to matrix products of the form ## A_1A_2... A_j ## . As before,
an optimal parenthesization must split this product between ## A_k ## and ## A_{k+1} ## for some
## 1 \leq k < j ##. Unless we could guarantee that ## k ## always equals ## j - 1 ##, we would find that we had subproblems of the form ## A_1 A_2 ... A_k ## and ## A_{k+1} A_{k+2} ... A_j ##, and that the latter subproblem is not of the form ## A_1 A_2 ... A_j ## . For this problem, we needed to allow our subproblems to vary at “both ends,” that is, to allow both ##i## and ##j## to
vary in the subproblem ## A_i A_{i+1} ... A_j ## .
2.a. I don't understand why the subproblem ## A_{k+1} A_{k+2} ... A_j ## is not of the form ## A_1 A_2 ... A_j ## ( ## k+1 ## is considered to be the first index in the problem of finding the optimal parenthization for ## A_{k+1} A_{k+2} ... A_j ## ) whilst ## A_1 A_2 ... A_k ## is considered a correct form ?
2.b. is there some sort of universal instantiation I'm missing in-terms of logic? what do variable indexes have to do with the issue In question 2.a. ?
( I'm think the issue relates to the fact that when we prove a problem has a substructure, we need to prove it for arbitrary indexes, but I'm unable to see the relation between this proof and why ## A_{k+1} A_{k+2} ... A_j ## is not of the form ## A_1 A_2 ... A_j ## if we consider ##k+1## as the first index in the subproblem ## A_{k+1} A_{k+2} ... A_j ## )
 
Technology news on Phys.org
  • #2
I think there is a distinction between "apply this algorithm to the first [itex]k[/itex] elements of this list" and "apply this algorithm to elements [itex]k+1[/itex] to [itex]j[/itex] of this list". The first only requires passing and tracking one index (the right index) but the second requires passing and tracking both left and right indices.

I think you aren't allowed to conflate these by creating a new list consisting only of elements [itex]k+1[/itex] to [itex]j[/itex] of the original list and applying the algorithm to the first [itex]j-k[/itex] elements of this new list. The exact semantics of "create a new list" will vary, and may have costs (in terms of memory and processor cycles) associated with them which are real in computer science but non-existent in abstract mathematics.
 
  • Like
Likes CGandC
  • #3
So "## A_1 A_2 \cdots A_j ##" stands for a contiguous sequence of elements in the matrix chain that start from ##A_1##, a fixed element, which implies that it is enough for one number, the value of ## j##, to completely specify those elements given the matrix chain?
and in this sense, "## A_{k+1} A_{k+2} \cdots A_j ##" is not of the form of "## A_1 A_2 \cdots A_j ##", since two numbers are needed to specify them?
 
  • #4
CGandC said:
So "## A_1 A_2 \cdots A_j ##" stands for a contiguous sequence of elements in the matrix chain that start from ##A_1##, a fixed element, which implies that it is enough for one number, the value of ## j##, to completely specify those elements given the matrix chain?
and in this sense, "## A_{k+1} A_{k+2} \cdots A_j ##" is not of the form of "## A_1 A_2 \cdots A_j ##", since two numbers are needed to specify them?
Right
 
  • #5
Ok, I understand now, thanks for the help!
 
  • Like
Likes berkeman

What is a subproblem space?

A subproblem space is a subset of a larger problem that is broken down into smaller, more manageable parts. These smaller parts are often interdependent and need to be solved in order to solve the larger problem.

Why do we have varying indices for a subproblem?

Varying indices for a subproblem allow for different starting points or perspectives when approaching a subproblem. This can lead to different solutions and can help to ensure that all possible angles are considered in finding the best overall solution.

What is the purpose of breaking a problem down into a subproblem space?

Breaking a problem down into a subproblem space can make it easier to understand and solve the problem as a whole. It allows for a more systematic and structured approach, as well as the ability to focus on smaller, more manageable parts of the problem.

Are subproblem spaces always necessary in problem solving?

No, subproblem spaces are not always necessary in problem solving. They can be helpful in complex problems, but they may not be needed in simpler problems. It ultimately depends on the nature of the problem and the approach that works best for solving it.

How do varying indices for a subproblem affect the overall solution?

Varying indices for a subproblem can lead to different solutions, which can affect the overall solution in a few ways. It may result in a more comprehensive solution that takes into account different perspectives, or it may lead to a more efficient or effective solution by considering alternative approaches.

Similar threads

  • Programming and Computer Science
Replies
17
Views
969
  • Engineering and Comp Sci Homework Help
Replies
10
Views
1K
Replies
4
Views
1K
  • Programming and Computer Science
Replies
27
Views
6K
  • Linear and Abstract Algebra
Replies
8
Views
796
Replies
4
Views
1K
  • Linear and Abstract Algebra
Replies
3
Views
1K
  • Math POTW for Secondary and High School Students
Replies
1
Views
1K
  • Calculus and Beyond Homework Help
Replies
5
Views
2K
  • Calculus and Beyond Homework Help
Replies
28
Views
2K
Back
Top