Addition chain with two sub-optimal sub-addition chains The 2019 Stack Overflow Developer...

60's-70's movie: home appliances revolting against the owners

Simulating Exploding Dice

Do working physicists consider Newtonian mechanics to be "falsified"?

Did the UK government pay "millions and millions of dollars" to try to snag Julian Assange?

Deal with toxic manager when you can't quit

What aspect of planet Earth must be changed to prevent the industrial revolution?

Python - Fishing Simulator

What force causes entropy to increase?

Didn't get enough time to take a Coding Test - what to do now?

Using dividends to reduce short term capital gains?

What's the point in a preamp?

How did the audience guess the pentatonic scale in Bobby McFerrin's presentation?

How to type a long/em dash `—`

Am I ethically obligated to go into work on an off day if the reason is sudden?

Can I visit the Trinity College (Cambridge) library and see some of their rare books

Is there a way to generate uniformly distributed points on a sphere from a fixed amount of random real numbers per point?

Does Parliament need to approve the new Brexit delay to 31 October 2019?

One-dimensional Japanese puzzle

Example of compact Riemannian manifold with only one geodesic.

Mortgage adviser recommends a longer term than necessary combined with overpayments

Was credit for the black hole image misappropriated?

Is 'stolen' appropriate word?

Is every episode of "Where are my Pants?" identical?

Is there a writing software that you can sort scenes like slides in PowerPoint?



Addition chain with two sub-optimal sub-addition chains



The 2019 Stack Overflow Developer Survey Results Are In
Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar ManaraIs finding the length of the shortest addition chain for a number $n$ really $NP$-hard?Properties of shortest addition chains for small numbers (e.g. up to 600)Finding the minimum length of an addition chainNumber of Unimodular SequncesThe number of sequences with k elements, containing a given elementProblem on Möbius function on a finite posetAddition chain search tree pruning by discarding non-minimal chainsCounting the number of maximal chains in a posetPuzzle: How many ways can a chain of length $n$ be “cracked” to form new smaller chains?Prove $operatorname{height}(P) cdot operatorname{width}(P) geq |A|$ in partially ordered set?












0












$begingroup$


An addition chain is a finite sequence of positive integers that starts at $1$, so that any element of the sequence is a sum of two previous elements. That is, it is a sequence $(a_1, ldots, a_k)$ where $a_1 = 1$, and for each $i > 1$ there are $j, k < i$ such that $a_i = a_j + a_k$. An example of an addition chain is
$$
(1, 2, 3, 6, 12, 15).
$$

We call an addition chain that ends in $k$ an addition chain for $k$. We write $l(k)$ for the length of the shorted addition chain for $k$, not counting the 1 at the start of the sequence. Our example above shows that $l(15) leq 5$; in fact $l(15) = 5$.



You can read much more about addition chains on Achim Flammenkamp's page or on Wikipedia.



Write $C(k)$ for the set of addition chains for $k$, and $s(c)$ for the length of a chain $c$ (again not counting the initial 1). Furthermore, we use the notation $c_1 cup c_2$ informally to mean joining the chains $c_1, c_2$ while pruning repeat elements. Then we trivially have
$$
l(k) = min_{i < k \c_1 in C(i)\ c_2 in C(k - i)} s(c_1 cup c_2) + 1.
$$

Now in many cases, we will find that this minimum is not achieved if we restrict to $c_1, c_2$ such that $s(c_1) = l(i)$ and $s(c_2) = l(k - i)$; to achieve maximal overlap, we may want a sequence for one of the summands which is suboptimal. My question is:




Is it possible that we need both subsequences to be suboptimal? That is, is the same minimum attained if we restrict to pairs $(c_1, c_2)$ such that at least one of $s(c_1) = l(i)$ and $s(c_2) = l(k - i)$ holds?











share|cite|improve this question











$endgroup$












  • $begingroup$
    or mathworld ...
    $endgroup$
    – Roddy MacPhee
    Mar 25 at 13:11
















0












$begingroup$


An addition chain is a finite sequence of positive integers that starts at $1$, so that any element of the sequence is a sum of two previous elements. That is, it is a sequence $(a_1, ldots, a_k)$ where $a_1 = 1$, and for each $i > 1$ there are $j, k < i$ such that $a_i = a_j + a_k$. An example of an addition chain is
$$
(1, 2, 3, 6, 12, 15).
$$

We call an addition chain that ends in $k$ an addition chain for $k$. We write $l(k)$ for the length of the shorted addition chain for $k$, not counting the 1 at the start of the sequence. Our example above shows that $l(15) leq 5$; in fact $l(15) = 5$.



You can read much more about addition chains on Achim Flammenkamp's page or on Wikipedia.



Write $C(k)$ for the set of addition chains for $k$, and $s(c)$ for the length of a chain $c$ (again not counting the initial 1). Furthermore, we use the notation $c_1 cup c_2$ informally to mean joining the chains $c_1, c_2$ while pruning repeat elements. Then we trivially have
$$
l(k) = min_{i < k \c_1 in C(i)\ c_2 in C(k - i)} s(c_1 cup c_2) + 1.
$$

Now in many cases, we will find that this minimum is not achieved if we restrict to $c_1, c_2$ such that $s(c_1) = l(i)$ and $s(c_2) = l(k - i)$; to achieve maximal overlap, we may want a sequence for one of the summands which is suboptimal. My question is:




Is it possible that we need both subsequences to be suboptimal? That is, is the same minimum attained if we restrict to pairs $(c_1, c_2)$ such that at least one of $s(c_1) = l(i)$ and $s(c_2) = l(k - i)$ holds?











share|cite|improve this question











$endgroup$












  • $begingroup$
    or mathworld ...
    $endgroup$
    – Roddy MacPhee
    Mar 25 at 13:11














0












0








0





$begingroup$


An addition chain is a finite sequence of positive integers that starts at $1$, so that any element of the sequence is a sum of two previous elements. That is, it is a sequence $(a_1, ldots, a_k)$ where $a_1 = 1$, and for each $i > 1$ there are $j, k < i$ such that $a_i = a_j + a_k$. An example of an addition chain is
$$
(1, 2, 3, 6, 12, 15).
$$

We call an addition chain that ends in $k$ an addition chain for $k$. We write $l(k)$ for the length of the shorted addition chain for $k$, not counting the 1 at the start of the sequence. Our example above shows that $l(15) leq 5$; in fact $l(15) = 5$.



You can read much more about addition chains on Achim Flammenkamp's page or on Wikipedia.



Write $C(k)$ for the set of addition chains for $k$, and $s(c)$ for the length of a chain $c$ (again not counting the initial 1). Furthermore, we use the notation $c_1 cup c_2$ informally to mean joining the chains $c_1, c_2$ while pruning repeat elements. Then we trivially have
$$
l(k) = min_{i < k \c_1 in C(i)\ c_2 in C(k - i)} s(c_1 cup c_2) + 1.
$$

Now in many cases, we will find that this minimum is not achieved if we restrict to $c_1, c_2$ such that $s(c_1) = l(i)$ and $s(c_2) = l(k - i)$; to achieve maximal overlap, we may want a sequence for one of the summands which is suboptimal. My question is:




Is it possible that we need both subsequences to be suboptimal? That is, is the same minimum attained if we restrict to pairs $(c_1, c_2)$ such that at least one of $s(c_1) = l(i)$ and $s(c_2) = l(k - i)$ holds?











share|cite|improve this question











$endgroup$




An addition chain is a finite sequence of positive integers that starts at $1$, so that any element of the sequence is a sum of two previous elements. That is, it is a sequence $(a_1, ldots, a_k)$ where $a_1 = 1$, and for each $i > 1$ there are $j, k < i$ such that $a_i = a_j + a_k$. An example of an addition chain is
$$
(1, 2, 3, 6, 12, 15).
$$

We call an addition chain that ends in $k$ an addition chain for $k$. We write $l(k)$ for the length of the shorted addition chain for $k$, not counting the 1 at the start of the sequence. Our example above shows that $l(15) leq 5$; in fact $l(15) = 5$.



You can read much more about addition chains on Achim Flammenkamp's page or on Wikipedia.



Write $C(k)$ for the set of addition chains for $k$, and $s(c)$ for the length of a chain $c$ (again not counting the initial 1). Furthermore, we use the notation $c_1 cup c_2$ informally to mean joining the chains $c_1, c_2$ while pruning repeat elements. Then we trivially have
$$
l(k) = min_{i < k \c_1 in C(i)\ c_2 in C(k - i)} s(c_1 cup c_2) + 1.
$$

Now in many cases, we will find that this minimum is not achieved if we restrict to $c_1, c_2$ such that $s(c_1) = l(i)$ and $s(c_2) = l(k - i)$; to achieve maximal overlap, we may want a sequence for one of the summands which is suboptimal. My question is:




Is it possible that we need both subsequences to be suboptimal? That is, is the same minimum attained if we restrict to pairs $(c_1, c_2)$ such that at least one of $s(c_1) = l(i)$ and $s(c_2) = l(k - i)$ holds?








combinatorics recreational-mathematics discrete-optimization






share|cite|improve this question















share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited Mar 22 at 13:26







Mees de Vries

















asked Mar 22 at 13:21









Mees de VriesMees de Vries

17.6k13060




17.6k13060












  • $begingroup$
    or mathworld ...
    $endgroup$
    – Roddy MacPhee
    Mar 25 at 13:11


















  • $begingroup$
    or mathworld ...
    $endgroup$
    – Roddy MacPhee
    Mar 25 at 13:11
















$begingroup$
or mathworld ...
$endgroup$
– Roddy MacPhee
Mar 25 at 13:11




$begingroup$
or mathworld ...
$endgroup$
– Roddy MacPhee
Mar 25 at 13:11










0






active

oldest

votes












Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3158136%2faddition-chain-with-two-sub-optimal-sub-addition-chains%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Mathematics Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


Use MathJax to format equations. MathJax reference.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3158136%2faddition-chain-with-two-sub-optimal-sub-addition-chains%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Magento 2 - Add success message with knockout Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

Fil:Tokke komm.svg

Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?