Finding the minimum number to be multiplied to reach the closest kth root












0












$begingroup$


I was trying to solve this coding question.



You are given an integer $N$ and a value $k$. You need to find a minimum number $X$ which when multiplied to $N$ results in the value of $N^{1/k}$
as an integer.



For example let $N = 6$ and $k = 2$ and , then the answer will be $6$ because $ 6 * 6 = 36 $ and if we calculate $36 ^ {1/2}$ it is equal to $6$ which is an integer.



Constraints



$1 < N < 10 ^ {12}$



$1 < k < 10 ^ {12}$



I realized that we needed to find the the minimum integer $X$ which when multiplied to $N$ gives the closest kth root.



for example with $N = 12$ and $k = 2$



Kth Power 
1
4
9
16
25
36


Starting from $N ^ {1/ k}$ I iterated over over each of kthPower $p^k$



Thus the equation become finding the first $X$ where $X$ is a whole number from the below equation



$frac{p^k - N}N = X$ where $p$ starts from $ceil(N^{1/k})$



This approach loops through each possible power and hence isn't the most efficent solution. Can you help me solve this equation so that we can avoid looping and have better run time complexity.










share|cite|improve this question









$endgroup$

















    0












    $begingroup$


    I was trying to solve this coding question.



    You are given an integer $N$ and a value $k$. You need to find a minimum number $X$ which when multiplied to $N$ results in the value of $N^{1/k}$
    as an integer.



    For example let $N = 6$ and $k = 2$ and , then the answer will be $6$ because $ 6 * 6 = 36 $ and if we calculate $36 ^ {1/2}$ it is equal to $6$ which is an integer.



    Constraints



    $1 < N < 10 ^ {12}$



    $1 < k < 10 ^ {12}$



    I realized that we needed to find the the minimum integer $X$ which when multiplied to $N$ gives the closest kth root.



    for example with $N = 12$ and $k = 2$



    Kth Power 
    1
    4
    9
    16
    25
    36


    Starting from $N ^ {1/ k}$ I iterated over over each of kthPower $p^k$



    Thus the equation become finding the first $X$ where $X$ is a whole number from the below equation



    $frac{p^k - N}N = X$ where $p$ starts from $ceil(N^{1/k})$



    This approach loops through each possible power and hence isn't the most efficent solution. Can you help me solve this equation so that we can avoid looping and have better run time complexity.










    share|cite|improve this question









    $endgroup$















      0












      0








      0





      $begingroup$


      I was trying to solve this coding question.



      You are given an integer $N$ and a value $k$. You need to find a minimum number $X$ which when multiplied to $N$ results in the value of $N^{1/k}$
      as an integer.



      For example let $N = 6$ and $k = 2$ and , then the answer will be $6$ because $ 6 * 6 = 36 $ and if we calculate $36 ^ {1/2}$ it is equal to $6$ which is an integer.



      Constraints



      $1 < N < 10 ^ {12}$



      $1 < k < 10 ^ {12}$



      I realized that we needed to find the the minimum integer $X$ which when multiplied to $N$ gives the closest kth root.



      for example with $N = 12$ and $k = 2$



      Kth Power 
      1
      4
      9
      16
      25
      36


      Starting from $N ^ {1/ k}$ I iterated over over each of kthPower $p^k$



      Thus the equation become finding the first $X$ where $X$ is a whole number from the below equation



      $frac{p^k - N}N = X$ where $p$ starts from $ceil(N^{1/k})$



      This approach loops through each possible power and hence isn't the most efficent solution. Can you help me solve this equation so that we can avoid looping and have better run time complexity.










      share|cite|improve this question









      $endgroup$




      I was trying to solve this coding question.



      You are given an integer $N$ and a value $k$. You need to find a minimum number $X$ which when multiplied to $N$ results in the value of $N^{1/k}$
      as an integer.



      For example let $N = 6$ and $k = 2$ and , then the answer will be $6$ because $ 6 * 6 = 36 $ and if we calculate $36 ^ {1/2}$ it is equal to $6$ which is an integer.



      Constraints



      $1 < N < 10 ^ {12}$



      $1 < k < 10 ^ {12}$



      I realized that we needed to find the the minimum integer $X$ which when multiplied to $N$ gives the closest kth root.



      for example with $N = 12$ and $k = 2$



      Kth Power 
      1
      4
      9
      16
      25
      36


      Starting from $N ^ {1/ k}$ I iterated over over each of kthPower $p^k$



      Thus the equation become finding the first $X$ where $X$ is a whole number from the below equation



      $frac{p^k - N}N = X$ where $p$ starts from $ceil(N^{1/k})$



      This approach loops through each possible power and hence isn't the most efficent solution. Can you help me solve this equation so that we can avoid looping and have better run time complexity.







      linear-algebra exponentiation






      share|cite|improve this question













      share|cite|improve this question











      share|cite|improve this question




      share|cite|improve this question










      asked Dec 8 '18 at 5:30









      thebenmanthebenman

      1254




      1254






















          1 Answer
          1






          active

          oldest

          votes


















          0












          $begingroup$

          Note that if $m$ is a perfect $k^{th}$ power, then every prime factor must appear some multiple of $k$ times. So what you should do is factor $N$, and find the smallest number you can multiply by so that all of its prime factors appear some multiple of $k$ times.






          share|cite|improve this answer









          $endgroup$













            Your Answer





            StackExchange.ifUsing("editor", function () {
            return StackExchange.using("mathjaxEditing", function () {
            StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
            StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
            });
            });
            }, "mathjax-editing");

            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%2f3030727%2ffinding-the-minimum-number-to-be-multiplied-to-reach-the-closest-kth-root%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









            0












            $begingroup$

            Note that if $m$ is a perfect $k^{th}$ power, then every prime factor must appear some multiple of $k$ times. So what you should do is factor $N$, and find the smallest number you can multiply by so that all of its prime factors appear some multiple of $k$ times.






            share|cite|improve this answer









            $endgroup$


















              0












              $begingroup$

              Note that if $m$ is a perfect $k^{th}$ power, then every prime factor must appear some multiple of $k$ times. So what you should do is factor $N$, and find the smallest number you can multiply by so that all of its prime factors appear some multiple of $k$ times.






              share|cite|improve this answer









              $endgroup$
















                0












                0








                0





                $begingroup$

                Note that if $m$ is a perfect $k^{th}$ power, then every prime factor must appear some multiple of $k$ times. So what you should do is factor $N$, and find the smallest number you can multiply by so that all of its prime factors appear some multiple of $k$ times.






                share|cite|improve this answer









                $endgroup$



                Note that if $m$ is a perfect $k^{th}$ power, then every prime factor must appear some multiple of $k$ times. So what you should do is factor $N$, and find the smallest number you can multiply by so that all of its prime factors appear some multiple of $k$ times.







                share|cite|improve this answer












                share|cite|improve this answer



                share|cite|improve this answer










                answered Dec 8 '18 at 6:19









                plattyplatty

                3,360320




                3,360320






























                    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%2f3030727%2ffinding-the-minimum-number-to-be-multiplied-to-reach-the-closest-kth-root%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

                    Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

                    ComboBox Display Member on multiple fields

                    Is it possible to collect Nectar points via Trainline?