Talk:Dynamic programming
This is the talk page for discussing improvements to the Dynamic programming article. This is not a forum for general discussion of the article's subject. |
Article policies
|
Find sources: Google (books · news · scholar · free images · WP refs) · FENS · JSTOR · TWL |
Archives: 1Auto-archiving period: 12 months ![]() |
![]() | This ![]() It is of interest to the following WikiProjects: | |||||||||||||||||||||||||||||||||||||||||||||||||||||
|
This page has archives. Sections older than 365 days may be automatically archived by Lowercase sigmabot III when more than 5 sections are present. |
The first paragraph of the second part and the article on algorithms states that dynamic programming is a bottom-up approach, but later this article says dynamic programming may use bottom-up or top-down approaches. --zeno 11:46, 9 Feb 2004 (UTC)
- I've revised that section. It was very vague and somewhat incorrect. I hope there's less confusion now. Derrick Coetzee 20:18, 5 Oct 2004 (UTC)
The page says "i dont know" in those terms, which is not only weirdly misplaced, but also improperly formatted. Someone check.
The part following "The steps for using dynamic program goes as follows:" is out of place. Out of nowhere the article starts using terms like 'gap penalties' and 'sequence alignment.' Seems like this was copied from some article on a specific application, such as protien sequencing. Anon, Wed Jul 11 14:11:43 EDT 2007
This is not a textbook. One good example would suffice. Even worse, many of them are just too long (and boring). Put them in wikibooks. Unfortunately, any attempt to fix this article would be blocked as "vandalism". Way to go, Wikipedia!
Hello , in
function fib(n)
if n <= 1 return n return fib(n − 1) + fib(n − 2)
I doubt that the return function would return a false if, so maybe you make a if n larger or equal to 1 out of it ? That also has the nice side effect that the Fibonacci numbers would become larger than -1, like the original series is larger than +1, I guess that is what you intended ...
Some programming languages can automatically memoize the result of a function call with a particular set of arguments, in order to speed up call-by-name evaluation (this mechanism is referred to as call-by-need).
This is technically correct but quite misleadingly worded. In call-by-need, the value at a particular call site may be (but need not be) memoized. If I call the same function with the same arguments but from a different call site, the result will be computed again. That is, rather than a memo table, call-by-need at most provides a cached value for a particular function call.
For example, in Haskell, a "lazy" language with call-by-need, we can define factorial recursively as
fact n = if n == 0 then 1 else n * fact (n -1)
If we then call it from a single call site
sum (map (\_ -> fact 5) [1..3])
the call to fact 5
and its child calls will each be evaluated but once, even though the lambda appears to be evaluated three times.
However, in
fact 5 + fact 5 + fact 5
each call to fact 5
and children will be evaluated separately: no memoization will occur.
This distinction makes call-by-need useless for memoization when decomposing a typical recursion: the subproblems are all called from separate call sites, and thus no memoization will occur.
Some languages make it possible portably (e.g. Scheme, Common Lisp, Perl or D).
Citations needed, at the least. Futures / promises are not a memoization mechanism, but a manual implementation of the call-by-need caching described above. In general Scheme and Perl, at least, are strict languages as far as I am aware. Bart Massey (talk) 20:03, 19 February 2025 (UTC)
This section describes a dynamic programming approach, in which the state of a partially-filled matrix specifies, for each column, the number of 0's and 1's to be placed in that column. This simplifies the problem, but not nearly enough to compute all of the terms included in the OEIS. In the case of an 18 by 18 matrix, this approach requires 44,926,130,009,521,017 different states. For example, after filling one row there are 48,620 different states. Each of these states has (9, 8) nine times and (8, 9) nine times, and there is one way to reach each of these states.
A better approach is to realize that these states are essentially all the same. We can count matrices without knowing which columns are (9, 8) and which columns are (8, 9). I would describe all of these as a single state (9, 9, 0, 0, 0, 0, 0, 0, 0, 0), indicating 9 columns with 0 ones, 9 columns with 1 one, and 0 columns with 2, 3, 4, 5, 6, 7, 8, or 9 ones. There are 48,620 ways to reach this state.
After filling the second row, there are 10 different states: (0, 18, 0, 0, 0, 0, 0, 0, 0, 0), (1, 16, 1, 0, 0, 0, 0, 0, 0, 0), (2, 14, 2, 0, 0, 0, 0, 0, 0, 0), ..., (9, 0, 9, 0, 0, 0, 0, 0, 0, 0). This approach uses a total of 194,182 states to count about 2.2*1072 matrices. David.wasserman (talk) 01:06, 19 May 2025 (UTC)
- Some things just grow during incremental edits and sometimes get out of hand. The "External links" section, one of the optional appendices, has grown to 12 entries. Three seems to be an acceptable number, and of course, everyone has their favorite to try to add for a fourth. Consensus needs to determine this. A tag indicates concerns.
- However, none is needed for article promotion.
- Some links may be included in WP:ELNO, various points in What Wikipedia is not like WP:NOTREPOSITORY or WP:NOTGUIDE, WP:ELDEAD, Others, listed below:
- ELpoints #3) states:
Links in the "External links" section should be kept to a minimum. A lack of external links or a small number of external links is not a reason to add external links.
- LINKFARM states:
There is nothing wrong with adding one or more useful content-relevant links to the external links section of an article; however, excessive lists can dwarf articles and detract from the purpose of Wikipedia. On articles about topics with many fansites, for example, including a link to one major fansite may be appropriate.
- ELMIN:
Minimize the number of links
. -- - ELCITE:
Do not use {{cite web}} or other citation templates in the External links section. Citation templates are permitted in the Further reading section.
- External links This page in a nutshell:
External links in an article can be helpful to the reader, but they should be kept minimal, meritable, and directly relevant to the article. With rare exceptions, external links should not be used in the body of an article.
- Second paragraph,
acceptable external links include those that contain further research that is accurate and on-topic, information that could not be added to the article for reasons such as copyright or amount of detail, or other meaningful, relevant content that is not suitable for inclusion in an article for reasons unrelated to its accuracy.
- Please also note:
- WP:ELBURDEN:
Disputed links should be excluded by default unless and until there is a consensus to include them
. Please do not add back more links without consensus. Simple solution to facilitate career maintenance tag. Move links here for discussion.
- Moved links:
- A Tutorial on Dynamic programming
- MIT course on algorithms - Includes 4 video lectures on DP, lectures 15–18
- Applied Mathematical Programming by Bradley, Hax, and Magnanti, Chapter 11
- More DP Notes
- Dynamic Programming: from novice to advanced A TopCoder.com article by Dumitru on Dynamic Programming
- Algebraic Dynamic Programming – a formalized framework for dynamic programming, including an entry-level course to DP, University of Bielefeld
- Dreyfus, Stuart, "Richard Bellman on the birth of Dynamic Programming. Archived 2020-10-13 at the Wayback Machine"
- Dynamic programming tutorial
- A Gentle Introduction to Dynamic Programming and the Viterbi Algorithm
- Tabled Prolog BProlog, XSB, SWI-Prolog
- IFORS online interactive dynamic programming modules including, shortest path, traveling salesman, knapsack, false coin, egg dropping, bridge and torch, replacement, chained matrix products, and critical path problem. -- Otr500 (talk) 15:41, 12 June 2025 (UTC)
- B-Class level-5 vital articles
- Wikipedia level-5 vital articles in Mathematics
- B-Class vital articles in Mathematics
- B-Class Computer science articles
- Top-importance Computer science articles
- WikiProject Computer science articles
- B-Class Molecular Biology articles
- Unknown-importance Molecular Biology articles
- B-Class Computational Biology articles
- Top-importance Computational Biology articles
- WikiProject Computational Biology articles
- All WikiProject Molecular Biology pages
- B-Class Systems articles
- High-importance Systems articles
- Systems articles in control theory
- WikiProject Systems articles
- B-Class mathematics articles
- Mid-priority mathematics articles