reduction from 3-SAT to Subset Sum problem 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?NAE SAT reduction to weighted MAX CUTHow to reduce from subset-sum problem?Constructing a promise problem equivalent to XSAT from subset sumQuestion on SAT reductionReduction of SUBSET-SUM to SET-PARTITIONSubset-sum variation, multiple sumsCNF-SAT reduction problem variantSubset sum NP-CompletnessKarp reduction from PARTITION to SUBSET SUMHow can I reduce Subset Sum to Almost Subset Sum?

Will I be more secure with my own router behind my ISP's router?

Why are two-digit numbers in Jonathan Swift's "Gulliver's Travels" (1726) written in "German style"?

What's the difference between using dependency injection with a container and using a service locator?

Recursive calls to a function - why is the address of the parameter passed to it lowering with each call?

Why these surprising proportionalities of integrals involving odd zeta values?

Compiling and throwing simple dynamic exceptions at runtime for JVM

Who's this lady in the war room?

What is the ongoing value of the Kanban board to the developers as opposed to management

What is the evidence that custom checks in Northern Ireland are going to result in violence?

Is my guitar’s action too high?

Unix AIX passing variable and arguments to expect and spawn

What documents does someone with a long-term visa need to travel to another Schengen country?

What helicopter has the most rotor blades?

Can 'non' with gerundive mean both lack of obligation and negative obligation?

Has a Nobel Peace laureate ever been accused of war crimes?

Why do people think Winterfell crypts is the safest place for women, children & old people?

How to leave only the following strings?

Why is one lightbulb in a string illuminated?

Trying to enter the Fox's den

Is there a way to convert Wolfram Language expression to string?

Weaponising the Grasp-at-a-Distance spell

How to mute a string and play another at the same time

Should man-made satellites feature an intelligent inverted "cow catcher"?

How to get a single big right brace?



reduction from 3-SAT to Subset Sum problem



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?NAE SAT reduction to weighted MAX CUTHow to reduce from subset-sum problem?Constructing a promise problem equivalent to XSAT from subset sumQuestion on SAT reductionReduction of SUBSET-SUM to SET-PARTITIONSubset-sum variation, multiple sumsCNF-SAT reduction problem variantSubset sum NP-CompletnessKarp reduction from PARTITION to SUBSET SUMHow can I reduce Subset Sum to Almost Subset Sum?










1












$begingroup$


How to reduce 3-SAT to subset sum problem?










share|cite|improve this question







New contributor




SiluPanda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







$endgroup$
















    1












    $begingroup$


    How to reduce 3-SAT to subset sum problem?










    share|cite|improve this question







    New contributor




    SiluPanda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.







    $endgroup$














      1












      1








      1





      $begingroup$


      How to reduce 3-SAT to subset sum problem?










      share|cite|improve this question







      New contributor




      SiluPanda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.







      $endgroup$




      How to reduce 3-SAT to subset sum problem?







      complexity-theory automata reductions






      share|cite|improve this question







      New contributor




      SiluPanda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|cite|improve this question







      New contributor




      SiluPanda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|cite|improve this question




      share|cite|improve this question






      New contributor




      SiluPanda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 8 hours ago









      SiluPandaSiluPanda

      666




      666




      New contributor




      SiluPanda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      SiluPanda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      SiluPanda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















          1 Answer
          1






          active

          oldest

          votes


















          2












          $begingroup$

          The trick to the reduction is to use numbers to encode statements about the 3CNF formula, crafting those numbers in such a way that you can later make an arithmetic proposition about the numbers that is only true if the original 3CNF formula is satisfiable. The reduction below is lifted directly from the lecture notes found at https://people.clarkson.edu/~alexis/PCMI/Notes/lectureB07.pdf .




          We reduce 3SAT to SUBSET-SUM. Consider a 3CNF formula with variables $x_1, . . . , x_n$ and clauses $c_1, . . . , c_r$. For each variable $x_i$, we will have two numbers $y_i$ and $z_i$ in the list. For each clause $c_j$, we will also have two numbers $s_j$ and $t_j$. We define all of these numbers by specifying their base 10 representations. The construction is best explained by an example and a picture. If the formula is $(x_1∨x_2∨overlinex_3)∧(overlinex_1∨x_2∨overlinex_3)$, then the base 10 representations of the numbers will look like this:



          beginarrayc
          & x_1 & x_2 & x_3 & c_1 & c_2 \
          hline
          y_1 & 1 & 0 & 0 & 1 & 0 \
          z_1 & 1 & 0 & 0 & 0 & 1 \
          y_2 & 0 & 1 & 0 & 1 & 1 \
          z_2 & 0 & 1 & 0 & 0 & 0 \
          y_3 & 0 & 0 & 1 & 0 & 0 \
          z_3 & 0 & 0 & 1 & 1 & 1 \
          hline
          s_1 & 0 & 0 & 0 & 1 & 0 \
          t_1 & 0 & 0 & 0 & 1 & 0 \
          s_2 & 0 & 0 & 0 & 0 & 1 \
          t_2 & 0 & 0 & 0 & 0 & 1 \
          hline
          k & 1 & 1 & 1 & 3 & 3 \
          endarray



          The number $y_i$ corresponds to the positive occurrences of $x_i$ in the formula while the number $z_i$ corresponds to its negative occurrences. It should be clear how to generalize this construction to an arbitrary 3CNF formula. And the list of numbers can clearly be constructed in polynomial time. We claim that a subset of these numbers adds to exactly $k$ if and only if the formula is satisfiable. A key point is that the sum of the numbers can be done column by column, independently, because carries will never occur.




          The $s$ value is crafted the same way for each clause; put a one in the digit position corresponding to that clause, and zeroes everywhere else. The $t$ value will be the same as the $s$ value for each clause.



          The $k$ value is always 1111... followed by 33333.... where the number of ones is the same as the number of distinct variables in the formula and the number of threes is the number of clauses in the formula. Note that the required sum $k$ has a one in each digit position corresponding to the variables. This means that any solution to the subset sum problem can include only encoded statements about either a positive instance of the variable or a negative instance in each clause, not both. Note also that sum $k$ has a three in the digit position corresponding to each clause. The $s$ and $t$ values for each clause will sum to two, but to complete the sum a third one will have to come from one of the $y$ or $z$ values. All three ones could come from the $y$ and $z$ values, but the fact that $s$ and $t$ will only sum to two for any clause guarantees that any empty clause in the 3CNF formula forces the subset sum problem to become unsatisfiable.






          share|cite|improve this answer









          $endgroup$













            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "419"
            ;
            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: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            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
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );






            SiluPanda is a new contributor. Be nice, and check out our Code of Conduct.









            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcs.stackexchange.com%2fquestions%2f107376%2freduction-from-3-sat-to-subset-sum-problem%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            2












            $begingroup$

            The trick to the reduction is to use numbers to encode statements about the 3CNF formula, crafting those numbers in such a way that you can later make an arithmetic proposition about the numbers that is only true if the original 3CNF formula is satisfiable. The reduction below is lifted directly from the lecture notes found at https://people.clarkson.edu/~alexis/PCMI/Notes/lectureB07.pdf .




            We reduce 3SAT to SUBSET-SUM. Consider a 3CNF formula with variables $x_1, . . . , x_n$ and clauses $c_1, . . . , c_r$. For each variable $x_i$, we will have two numbers $y_i$ and $z_i$ in the list. For each clause $c_j$, we will also have two numbers $s_j$ and $t_j$. We define all of these numbers by specifying their base 10 representations. The construction is best explained by an example and a picture. If the formula is $(x_1∨x_2∨overlinex_3)∧(overlinex_1∨x_2∨overlinex_3)$, then the base 10 representations of the numbers will look like this:



            beginarrayc
            & x_1 & x_2 & x_3 & c_1 & c_2 \
            hline
            y_1 & 1 & 0 & 0 & 1 & 0 \
            z_1 & 1 & 0 & 0 & 0 & 1 \
            y_2 & 0 & 1 & 0 & 1 & 1 \
            z_2 & 0 & 1 & 0 & 0 & 0 \
            y_3 & 0 & 0 & 1 & 0 & 0 \
            z_3 & 0 & 0 & 1 & 1 & 1 \
            hline
            s_1 & 0 & 0 & 0 & 1 & 0 \
            t_1 & 0 & 0 & 0 & 1 & 0 \
            s_2 & 0 & 0 & 0 & 0 & 1 \
            t_2 & 0 & 0 & 0 & 0 & 1 \
            hline
            k & 1 & 1 & 1 & 3 & 3 \
            endarray



            The number $y_i$ corresponds to the positive occurrences of $x_i$ in the formula while the number $z_i$ corresponds to its negative occurrences. It should be clear how to generalize this construction to an arbitrary 3CNF formula. And the list of numbers can clearly be constructed in polynomial time. We claim that a subset of these numbers adds to exactly $k$ if and only if the formula is satisfiable. A key point is that the sum of the numbers can be done column by column, independently, because carries will never occur.




            The $s$ value is crafted the same way for each clause; put a one in the digit position corresponding to that clause, and zeroes everywhere else. The $t$ value will be the same as the $s$ value for each clause.



            The $k$ value is always 1111... followed by 33333.... where the number of ones is the same as the number of distinct variables in the formula and the number of threes is the number of clauses in the formula. Note that the required sum $k$ has a one in each digit position corresponding to the variables. This means that any solution to the subset sum problem can include only encoded statements about either a positive instance of the variable or a negative instance in each clause, not both. Note also that sum $k$ has a three in the digit position corresponding to each clause. The $s$ and $t$ values for each clause will sum to two, but to complete the sum a third one will have to come from one of the $y$ or $z$ values. All three ones could come from the $y$ and $z$ values, but the fact that $s$ and $t$ will only sum to two for any clause guarantees that any empty clause in the 3CNF formula forces the subset sum problem to become unsatisfiable.






            share|cite|improve this answer









            $endgroup$

















              2












              $begingroup$

              The trick to the reduction is to use numbers to encode statements about the 3CNF formula, crafting those numbers in such a way that you can later make an arithmetic proposition about the numbers that is only true if the original 3CNF formula is satisfiable. The reduction below is lifted directly from the lecture notes found at https://people.clarkson.edu/~alexis/PCMI/Notes/lectureB07.pdf .




              We reduce 3SAT to SUBSET-SUM. Consider a 3CNF formula with variables $x_1, . . . , x_n$ and clauses $c_1, . . . , c_r$. For each variable $x_i$, we will have two numbers $y_i$ and $z_i$ in the list. For each clause $c_j$, we will also have two numbers $s_j$ and $t_j$. We define all of these numbers by specifying their base 10 representations. The construction is best explained by an example and a picture. If the formula is $(x_1∨x_2∨overlinex_3)∧(overlinex_1∨x_2∨overlinex_3)$, then the base 10 representations of the numbers will look like this:



              beginarrayc
              & x_1 & x_2 & x_3 & c_1 & c_2 \
              hline
              y_1 & 1 & 0 & 0 & 1 & 0 \
              z_1 & 1 & 0 & 0 & 0 & 1 \
              y_2 & 0 & 1 & 0 & 1 & 1 \
              z_2 & 0 & 1 & 0 & 0 & 0 \
              y_3 & 0 & 0 & 1 & 0 & 0 \
              z_3 & 0 & 0 & 1 & 1 & 1 \
              hline
              s_1 & 0 & 0 & 0 & 1 & 0 \
              t_1 & 0 & 0 & 0 & 1 & 0 \
              s_2 & 0 & 0 & 0 & 0 & 1 \
              t_2 & 0 & 0 & 0 & 0 & 1 \
              hline
              k & 1 & 1 & 1 & 3 & 3 \
              endarray



              The number $y_i$ corresponds to the positive occurrences of $x_i$ in the formula while the number $z_i$ corresponds to its negative occurrences. It should be clear how to generalize this construction to an arbitrary 3CNF formula. And the list of numbers can clearly be constructed in polynomial time. We claim that a subset of these numbers adds to exactly $k$ if and only if the formula is satisfiable. A key point is that the sum of the numbers can be done column by column, independently, because carries will never occur.




              The $s$ value is crafted the same way for each clause; put a one in the digit position corresponding to that clause, and zeroes everywhere else. The $t$ value will be the same as the $s$ value for each clause.



              The $k$ value is always 1111... followed by 33333.... where the number of ones is the same as the number of distinct variables in the formula and the number of threes is the number of clauses in the formula. Note that the required sum $k$ has a one in each digit position corresponding to the variables. This means that any solution to the subset sum problem can include only encoded statements about either a positive instance of the variable or a negative instance in each clause, not both. Note also that sum $k$ has a three in the digit position corresponding to each clause. The $s$ and $t$ values for each clause will sum to two, but to complete the sum a third one will have to come from one of the $y$ or $z$ values. All three ones could come from the $y$ and $z$ values, but the fact that $s$ and $t$ will only sum to two for any clause guarantees that any empty clause in the 3CNF formula forces the subset sum problem to become unsatisfiable.






              share|cite|improve this answer









              $endgroup$















                2












                2








                2





                $begingroup$

                The trick to the reduction is to use numbers to encode statements about the 3CNF formula, crafting those numbers in such a way that you can later make an arithmetic proposition about the numbers that is only true if the original 3CNF formula is satisfiable. The reduction below is lifted directly from the lecture notes found at https://people.clarkson.edu/~alexis/PCMI/Notes/lectureB07.pdf .




                We reduce 3SAT to SUBSET-SUM. Consider a 3CNF formula with variables $x_1, . . . , x_n$ and clauses $c_1, . . . , c_r$. For each variable $x_i$, we will have two numbers $y_i$ and $z_i$ in the list. For each clause $c_j$, we will also have two numbers $s_j$ and $t_j$. We define all of these numbers by specifying their base 10 representations. The construction is best explained by an example and a picture. If the formula is $(x_1∨x_2∨overlinex_3)∧(overlinex_1∨x_2∨overlinex_3)$, then the base 10 representations of the numbers will look like this:



                beginarrayc
                & x_1 & x_2 & x_3 & c_1 & c_2 \
                hline
                y_1 & 1 & 0 & 0 & 1 & 0 \
                z_1 & 1 & 0 & 0 & 0 & 1 \
                y_2 & 0 & 1 & 0 & 1 & 1 \
                z_2 & 0 & 1 & 0 & 0 & 0 \
                y_3 & 0 & 0 & 1 & 0 & 0 \
                z_3 & 0 & 0 & 1 & 1 & 1 \
                hline
                s_1 & 0 & 0 & 0 & 1 & 0 \
                t_1 & 0 & 0 & 0 & 1 & 0 \
                s_2 & 0 & 0 & 0 & 0 & 1 \
                t_2 & 0 & 0 & 0 & 0 & 1 \
                hline
                k & 1 & 1 & 1 & 3 & 3 \
                endarray



                The number $y_i$ corresponds to the positive occurrences of $x_i$ in the formula while the number $z_i$ corresponds to its negative occurrences. It should be clear how to generalize this construction to an arbitrary 3CNF formula. And the list of numbers can clearly be constructed in polynomial time. We claim that a subset of these numbers adds to exactly $k$ if and only if the formula is satisfiable. A key point is that the sum of the numbers can be done column by column, independently, because carries will never occur.




                The $s$ value is crafted the same way for each clause; put a one in the digit position corresponding to that clause, and zeroes everywhere else. The $t$ value will be the same as the $s$ value for each clause.



                The $k$ value is always 1111... followed by 33333.... where the number of ones is the same as the number of distinct variables in the formula and the number of threes is the number of clauses in the formula. Note that the required sum $k$ has a one in each digit position corresponding to the variables. This means that any solution to the subset sum problem can include only encoded statements about either a positive instance of the variable or a negative instance in each clause, not both. Note also that sum $k$ has a three in the digit position corresponding to each clause. The $s$ and $t$ values for each clause will sum to two, but to complete the sum a third one will have to come from one of the $y$ or $z$ values. All three ones could come from the $y$ and $z$ values, but the fact that $s$ and $t$ will only sum to two for any clause guarantees that any empty clause in the 3CNF formula forces the subset sum problem to become unsatisfiable.






                share|cite|improve this answer









                $endgroup$



                The trick to the reduction is to use numbers to encode statements about the 3CNF formula, crafting those numbers in such a way that you can later make an arithmetic proposition about the numbers that is only true if the original 3CNF formula is satisfiable. The reduction below is lifted directly from the lecture notes found at https://people.clarkson.edu/~alexis/PCMI/Notes/lectureB07.pdf .




                We reduce 3SAT to SUBSET-SUM. Consider a 3CNF formula with variables $x_1, . . . , x_n$ and clauses $c_1, . . . , c_r$. For each variable $x_i$, we will have two numbers $y_i$ and $z_i$ in the list. For each clause $c_j$, we will also have two numbers $s_j$ and $t_j$. We define all of these numbers by specifying their base 10 representations. The construction is best explained by an example and a picture. If the formula is $(x_1∨x_2∨overlinex_3)∧(overlinex_1∨x_2∨overlinex_3)$, then the base 10 representations of the numbers will look like this:



                beginarrayc
                & x_1 & x_2 & x_3 & c_1 & c_2 \
                hline
                y_1 & 1 & 0 & 0 & 1 & 0 \
                z_1 & 1 & 0 & 0 & 0 & 1 \
                y_2 & 0 & 1 & 0 & 1 & 1 \
                z_2 & 0 & 1 & 0 & 0 & 0 \
                y_3 & 0 & 0 & 1 & 0 & 0 \
                z_3 & 0 & 0 & 1 & 1 & 1 \
                hline
                s_1 & 0 & 0 & 0 & 1 & 0 \
                t_1 & 0 & 0 & 0 & 1 & 0 \
                s_2 & 0 & 0 & 0 & 0 & 1 \
                t_2 & 0 & 0 & 0 & 0 & 1 \
                hline
                k & 1 & 1 & 1 & 3 & 3 \
                endarray



                The number $y_i$ corresponds to the positive occurrences of $x_i$ in the formula while the number $z_i$ corresponds to its negative occurrences. It should be clear how to generalize this construction to an arbitrary 3CNF formula. And the list of numbers can clearly be constructed in polynomial time. We claim that a subset of these numbers adds to exactly $k$ if and only if the formula is satisfiable. A key point is that the sum of the numbers can be done column by column, independently, because carries will never occur.




                The $s$ value is crafted the same way for each clause; put a one in the digit position corresponding to that clause, and zeroes everywhere else. The $t$ value will be the same as the $s$ value for each clause.



                The $k$ value is always 1111... followed by 33333.... where the number of ones is the same as the number of distinct variables in the formula and the number of threes is the number of clauses in the formula. Note that the required sum $k$ has a one in each digit position corresponding to the variables. This means that any solution to the subset sum problem can include only encoded statements about either a positive instance of the variable or a negative instance in each clause, not both. Note also that sum $k$ has a three in the digit position corresponding to each clause. The $s$ and $t$ values for each clause will sum to two, but to complete the sum a third one will have to come from one of the $y$ or $z$ values. All three ones could come from the $y$ and $z$ values, but the fact that $s$ and $t$ will only sum to two for any clause guarantees that any empty clause in the 3CNF formula forces the subset sum problem to become unsatisfiable.







                share|cite|improve this answer












                share|cite|improve this answer



                share|cite|improve this answer










                answered 5 hours ago









                Kyle JonesKyle Jones

                5,81211840




                5,81211840




















                    SiluPanda is a new contributor. Be nice, and check out our Code of Conduct.









                    draft saved

                    draft discarded


















                    SiluPanda is a new contributor. Be nice, and check out our Code of Conduct.












                    SiluPanda is a new contributor. Be nice, and check out our Code of Conduct.











                    SiluPanda is a new contributor. Be nice, and check out our Code of Conduct.














                    Thanks for contributing an answer to Computer Science 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%2fcs.stackexchange.com%2fquestions%2f107376%2freduction-from-3-sat-to-subset-sum-problem%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?