Remove Abs from Norms of Vectors

Multi tool use
Multi tool use

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
10
down vote

favorite
1












I have the following norm



Norm[a, b*c]

(* Sqrt[Abs[a]^2 + Abs[b c]^2] *)


How do I remove the Abs from it?



FullSimplify[Norm[a, b*c], Assumptions -> a > 0, b > 0, c > 0]


only kills the first Abs



Sqrt[a^2 + Abs[b c]^2]









share|improve this question



























    up vote
    10
    down vote

    favorite
    1












    I have the following norm



    Norm[a, b*c]

    (* Sqrt[Abs[a]^2 + Abs[b c]^2] *)


    How do I remove the Abs from it?



    FullSimplify[Norm[a, b*c], Assumptions -> a > 0, b > 0, c > 0]


    only kills the first Abs



    Sqrt[a^2 + Abs[b c]^2]









    share|improve this question

























      up vote
      10
      down vote

      favorite
      1









      up vote
      10
      down vote

      favorite
      1






      1





      I have the following norm



      Norm[a, b*c]

      (* Sqrt[Abs[a]^2 + Abs[b c]^2] *)


      How do I remove the Abs from it?



      FullSimplify[Norm[a, b*c], Assumptions -> a > 0, b > 0, c > 0]


      only kills the first Abs



      Sqrt[a^2 + Abs[b c]^2]









      share|improve this question















      I have the following norm



      Norm[a, b*c]

      (* Sqrt[Abs[a]^2 + Abs[b c]^2] *)


      How do I remove the Abs from it?



      FullSimplify[Norm[a, b*c], Assumptions -> a > 0, b > 0, c > 0]


      only kills the first Abs



      Sqrt[a^2 + Abs[b c]^2]






      list-manipulation simplifying-expressions vector






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Sep 26 at 0:24









      Jack LaVigne

      11.4k21329




      11.4k21329










      asked Sep 22 at 20:16









      chr

      583




      583




















          3 Answers
          3






          active

          oldest

          votes

















          up vote
          12
          down vote



          accepted










          ComplexExpand@Norm@a, b c



          Sqrt[a^2 + b^2 c^2]







          share|improve this answer
















          • 2




            Thx. Can you explain why ComplexEpxpand does it and Assumptions does not?
            – chr
            Sep 22 at 20:33






          • 2




            ComplexExpand automatically assumes all its variables to be real. Other than that, I believe it's just a matter of behind-the-scenes expression manipulation (i.e. I don't know...). Though this idea reminds me of this post talking about different ways of assuming things (granted in relation to Integrate).
            – That Gravity Guy
            Sep 22 at 20:48


















          up vote
          8
          down vote













          If you have to use FullSimplify or Simplify, you can use the option ComplexityFunction to make expressions with Abs more costly:



          FullSimplify[Norm[a, b*c], Assumptions -> a > 0, b > 0, c > 0, 
          ComplexityFunction -> (100 Count[#, _Abs, 0, Infinity] + LeafCount[#] &)]



           Sqrt[a^2 + b^2 c^2]







          share|improve this answer
















          • 3




            And the reason that ComplexityFunction is needed in this case is because LeafCount /@ Sqrt[a^2 + Abs[b*c]^2], Sqrt[a^2 + b^2*c^2] evaluates to 14, 15, i.e., the apparent simpler form is not simpler.
            – Bob Hanlon
            Sep 22 at 23:30






          • 1




            @BobHanlon, great point.
            – kglr
            Sep 22 at 23:31

















          up vote
          3
          down vote













          Also, for a real number x, Abs[x] = Sqrt[x^2]



          Norm[a, b*c] /. Abs[x_] :> Sqrt[x^2]

          (* Sqrt[a^2 + b^2 c^2] *)





          share|improve this answer




















            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: "387"
            ;
            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',
            convertImagesToLinks: false,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













             

            draft saved


            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f182373%2fremove-abs-from-norms-of-vectors%23new-answer', 'question_page');

            );

            Post as a guest






























            3 Answers
            3






            active

            oldest

            votes








            3 Answers
            3






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            12
            down vote



            accepted










            ComplexExpand@Norm@a, b c



            Sqrt[a^2 + b^2 c^2]







            share|improve this answer
















            • 2




              Thx. Can you explain why ComplexEpxpand does it and Assumptions does not?
              – chr
              Sep 22 at 20:33






            • 2




              ComplexExpand automatically assumes all its variables to be real. Other than that, I believe it's just a matter of behind-the-scenes expression manipulation (i.e. I don't know...). Though this idea reminds me of this post talking about different ways of assuming things (granted in relation to Integrate).
              – That Gravity Guy
              Sep 22 at 20:48















            up vote
            12
            down vote



            accepted










            ComplexExpand@Norm@a, b c



            Sqrt[a^2 + b^2 c^2]







            share|improve this answer
















            • 2




              Thx. Can you explain why ComplexEpxpand does it and Assumptions does not?
              – chr
              Sep 22 at 20:33






            • 2




              ComplexExpand automatically assumes all its variables to be real. Other than that, I believe it's just a matter of behind-the-scenes expression manipulation (i.e. I don't know...). Though this idea reminds me of this post talking about different ways of assuming things (granted in relation to Integrate).
              – That Gravity Guy
              Sep 22 at 20:48













            up vote
            12
            down vote



            accepted







            up vote
            12
            down vote



            accepted






            ComplexExpand@Norm@a, b c



            Sqrt[a^2 + b^2 c^2]







            share|improve this answer












            ComplexExpand@Norm@a, b c



            Sqrt[a^2 + b^2 c^2]








            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Sep 22 at 20:29









            That Gravity Guy

            1,324512




            1,324512







            • 2




              Thx. Can you explain why ComplexEpxpand does it and Assumptions does not?
              – chr
              Sep 22 at 20:33






            • 2




              ComplexExpand automatically assumes all its variables to be real. Other than that, I believe it's just a matter of behind-the-scenes expression manipulation (i.e. I don't know...). Though this idea reminds me of this post talking about different ways of assuming things (granted in relation to Integrate).
              – That Gravity Guy
              Sep 22 at 20:48













            • 2




              Thx. Can you explain why ComplexEpxpand does it and Assumptions does not?
              – chr
              Sep 22 at 20:33






            • 2




              ComplexExpand automatically assumes all its variables to be real. Other than that, I believe it's just a matter of behind-the-scenes expression manipulation (i.e. I don't know...). Though this idea reminds me of this post talking about different ways of assuming things (granted in relation to Integrate).
              – That Gravity Guy
              Sep 22 at 20:48








            2




            2




            Thx. Can you explain why ComplexEpxpand does it and Assumptions does not?
            – chr
            Sep 22 at 20:33




            Thx. Can you explain why ComplexEpxpand does it and Assumptions does not?
            – chr
            Sep 22 at 20:33




            2




            2




            ComplexExpand automatically assumes all its variables to be real. Other than that, I believe it's just a matter of behind-the-scenes expression manipulation (i.e. I don't know...). Though this idea reminds me of this post talking about different ways of assuming things (granted in relation to Integrate).
            – That Gravity Guy
            Sep 22 at 20:48





            ComplexExpand automatically assumes all its variables to be real. Other than that, I believe it's just a matter of behind-the-scenes expression manipulation (i.e. I don't know...). Though this idea reminds me of this post talking about different ways of assuming things (granted in relation to Integrate).
            – That Gravity Guy
            Sep 22 at 20:48











            up vote
            8
            down vote













            If you have to use FullSimplify or Simplify, you can use the option ComplexityFunction to make expressions with Abs more costly:



            FullSimplify[Norm[a, b*c], Assumptions -> a > 0, b > 0, c > 0, 
            ComplexityFunction -> (100 Count[#, _Abs, 0, Infinity] + LeafCount[#] &)]



             Sqrt[a^2 + b^2 c^2]







            share|improve this answer
















            • 3




              And the reason that ComplexityFunction is needed in this case is because LeafCount /@ Sqrt[a^2 + Abs[b*c]^2], Sqrt[a^2 + b^2*c^2] evaluates to 14, 15, i.e., the apparent simpler form is not simpler.
              – Bob Hanlon
              Sep 22 at 23:30






            • 1




              @BobHanlon, great point.
              – kglr
              Sep 22 at 23:31














            up vote
            8
            down vote













            If you have to use FullSimplify or Simplify, you can use the option ComplexityFunction to make expressions with Abs more costly:



            FullSimplify[Norm[a, b*c], Assumptions -> a > 0, b > 0, c > 0, 
            ComplexityFunction -> (100 Count[#, _Abs, 0, Infinity] + LeafCount[#] &)]



             Sqrt[a^2 + b^2 c^2]







            share|improve this answer
















            • 3




              And the reason that ComplexityFunction is needed in this case is because LeafCount /@ Sqrt[a^2 + Abs[b*c]^2], Sqrt[a^2 + b^2*c^2] evaluates to 14, 15, i.e., the apparent simpler form is not simpler.
              – Bob Hanlon
              Sep 22 at 23:30






            • 1




              @BobHanlon, great point.
              – kglr
              Sep 22 at 23:31












            up vote
            8
            down vote










            up vote
            8
            down vote









            If you have to use FullSimplify or Simplify, you can use the option ComplexityFunction to make expressions with Abs more costly:



            FullSimplify[Norm[a, b*c], Assumptions -> a > 0, b > 0, c > 0, 
            ComplexityFunction -> (100 Count[#, _Abs, 0, Infinity] + LeafCount[#] &)]



             Sqrt[a^2 + b^2 c^2]







            share|improve this answer












            If you have to use FullSimplify or Simplify, you can use the option ComplexityFunction to make expressions with Abs more costly:



            FullSimplify[Norm[a, b*c], Assumptions -> a > 0, b > 0, c > 0, 
            ComplexityFunction -> (100 Count[#, _Abs, 0, Infinity] + LeafCount[#] &)]



             Sqrt[a^2 + b^2 c^2]








            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Sep 22 at 20:33









            kglr

            163k8188387




            163k8188387







            • 3




              And the reason that ComplexityFunction is needed in this case is because LeafCount /@ Sqrt[a^2 + Abs[b*c]^2], Sqrt[a^2 + b^2*c^2] evaluates to 14, 15, i.e., the apparent simpler form is not simpler.
              – Bob Hanlon
              Sep 22 at 23:30






            • 1




              @BobHanlon, great point.
              – kglr
              Sep 22 at 23:31












            • 3




              And the reason that ComplexityFunction is needed in this case is because LeafCount /@ Sqrt[a^2 + Abs[b*c]^2], Sqrt[a^2 + b^2*c^2] evaluates to 14, 15, i.e., the apparent simpler form is not simpler.
              – Bob Hanlon
              Sep 22 at 23:30






            • 1




              @BobHanlon, great point.
              – kglr
              Sep 22 at 23:31







            3




            3




            And the reason that ComplexityFunction is needed in this case is because LeafCount /@ Sqrt[a^2 + Abs[b*c]^2], Sqrt[a^2 + b^2*c^2] evaluates to 14, 15, i.e., the apparent simpler form is not simpler.
            – Bob Hanlon
            Sep 22 at 23:30




            And the reason that ComplexityFunction is needed in this case is because LeafCount /@ Sqrt[a^2 + Abs[b*c]^2], Sqrt[a^2 + b^2*c^2] evaluates to 14, 15, i.e., the apparent simpler form is not simpler.
            – Bob Hanlon
            Sep 22 at 23:30




            1




            1




            @BobHanlon, great point.
            – kglr
            Sep 22 at 23:31




            @BobHanlon, great point.
            – kglr
            Sep 22 at 23:31










            up vote
            3
            down vote













            Also, for a real number x, Abs[x] = Sqrt[x^2]



            Norm[a, b*c] /. Abs[x_] :> Sqrt[x^2]

            (* Sqrt[a^2 + b^2 c^2] *)





            share|improve this answer
























              up vote
              3
              down vote













              Also, for a real number x, Abs[x] = Sqrt[x^2]



              Norm[a, b*c] /. Abs[x_] :> Sqrt[x^2]

              (* Sqrt[a^2 + b^2 c^2] *)





              share|improve this answer






















                up vote
                3
                down vote










                up vote
                3
                down vote









                Also, for a real number x, Abs[x] = Sqrt[x^2]



                Norm[a, b*c] /. Abs[x_] :> Sqrt[x^2]

                (* Sqrt[a^2 + b^2 c^2] *)





                share|improve this answer












                Also, for a real number x, Abs[x] = Sqrt[x^2]



                Norm[a, b*c] /. Abs[x_] :> Sqrt[x^2]

                (* Sqrt[a^2 + b^2 c^2] *)






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Sep 22 at 23:38









                Bob Hanlon

                55.9k23589




                55.9k23589



























                     

                    draft saved


                    draft discarded















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f182373%2fremove-abs-from-norms-of-vectors%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    b20v58EV6l28 lBkaJbUyBYVje Y,EY6OU936c 9ceDB6hfoc4XZT0lO LMvNk Tbk07,9,A0WkJ,TJv0vKrQ7T,HJm1wn ta,L,5njeUhrXVZ0n
                    dJ,W8jpiDqMG5Y9wK,e l5R5AtR,s QQjEPhRv,uI2Ct,riu grFZvvEVfqzJjVnYQ0b8xoOvaR vECucaW 7s06,2EfnU7fR03GMw2Mj

                    Popular posts from this blog

                    How to check contact read email or not when send email to Individual?

                    How many registers does an x86_64 CPU actually have?

                    Displaying single band from multi-band raster using QGIS