Integrating an absolute function using Mathematica





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







2












$begingroup$


I was unsure as to how to integrate an absolute function, such as $int_0^3 left|sqrt{9-x^2}right|dx$, so I tried:



Integrate[Abs[(9-x^2)^(1/2)],x]


But it returned:




$int sqrt{Abs[9-x^2]}mathbb{d}x$




Could someone please show me how to do so correctly? And also, is there a way of evaluating the integral without having to make it a function and sub in the values of the terminals?










share|improve this question











$endgroup$














  • $begingroup$
    Welcome to the Mathematica StackExchange. We would typically prefer that you post your code rather than pictures of your code, or that you use LaTeX to format mathematical expressions. I transcribed your pictures to both ends, but please feel free to edit your post again if you feel I've changed the intent somehow.
    $endgroup$
    – eyorble
    May 26 at 3:23










  • $begingroup$
    Thanks for letting me know. I'll try to keep that in mind next time I ask a question, @eyerble
    $endgroup$
    – wendy
    May 26 at 3:24


















2












$begingroup$


I was unsure as to how to integrate an absolute function, such as $int_0^3 left|sqrt{9-x^2}right|dx$, so I tried:



Integrate[Abs[(9-x^2)^(1/2)],x]


But it returned:




$int sqrt{Abs[9-x^2]}mathbb{d}x$




Could someone please show me how to do so correctly? And also, is there a way of evaluating the integral without having to make it a function and sub in the values of the terminals?










share|improve this question











$endgroup$














  • $begingroup$
    Welcome to the Mathematica StackExchange. We would typically prefer that you post your code rather than pictures of your code, or that you use LaTeX to format mathematical expressions. I transcribed your pictures to both ends, but please feel free to edit your post again if you feel I've changed the intent somehow.
    $endgroup$
    – eyorble
    May 26 at 3:23










  • $begingroup$
    Thanks for letting me know. I'll try to keep that in mind next time I ask a question, @eyerble
    $endgroup$
    – wendy
    May 26 at 3:24














2












2








2





$begingroup$


I was unsure as to how to integrate an absolute function, such as $int_0^3 left|sqrt{9-x^2}right|dx$, so I tried:



Integrate[Abs[(9-x^2)^(1/2)],x]


But it returned:




$int sqrt{Abs[9-x^2]}mathbb{d}x$




Could someone please show me how to do so correctly? And also, is there a way of evaluating the integral without having to make it a function and sub in the values of the terminals?










share|improve this question











$endgroup$




I was unsure as to how to integrate an absolute function, such as $int_0^3 left|sqrt{9-x^2}right|dx$, so I tried:



Integrate[Abs[(9-x^2)^(1/2)],x]


But it returned:




$int sqrt{Abs[9-x^2]}mathbb{d}x$




Could someone please show me how to do so correctly? And also, is there a way of evaluating the integral without having to make it a function and sub in the values of the terminals?







calculus-and-analysis






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 26 at 19:55









Michael E2

158k13 gold badges216 silver badges513 bronze badges




158k13 gold badges216 silver badges513 bronze badges










asked May 26 at 3:04









wendywendy

663 bronze badges




663 bronze badges















  • $begingroup$
    Welcome to the Mathematica StackExchange. We would typically prefer that you post your code rather than pictures of your code, or that you use LaTeX to format mathematical expressions. I transcribed your pictures to both ends, but please feel free to edit your post again if you feel I've changed the intent somehow.
    $endgroup$
    – eyorble
    May 26 at 3:23










  • $begingroup$
    Thanks for letting me know. I'll try to keep that in mind next time I ask a question, @eyerble
    $endgroup$
    – wendy
    May 26 at 3:24


















  • $begingroup$
    Welcome to the Mathematica StackExchange. We would typically prefer that you post your code rather than pictures of your code, or that you use LaTeX to format mathematical expressions. I transcribed your pictures to both ends, but please feel free to edit your post again if you feel I've changed the intent somehow.
    $endgroup$
    – eyorble
    May 26 at 3:23










  • $begingroup$
    Thanks for letting me know. I'll try to keep that in mind next time I ask a question, @eyerble
    $endgroup$
    – wendy
    May 26 at 3:24
















$begingroup$
Welcome to the Mathematica StackExchange. We would typically prefer that you post your code rather than pictures of your code, or that you use LaTeX to format mathematical expressions. I transcribed your pictures to both ends, but please feel free to edit your post again if you feel I've changed the intent somehow.
$endgroup$
– eyorble
May 26 at 3:23




$begingroup$
Welcome to the Mathematica StackExchange. We would typically prefer that you post your code rather than pictures of your code, or that you use LaTeX to format mathematical expressions. I transcribed your pictures to both ends, but please feel free to edit your post again if you feel I've changed the intent somehow.
$endgroup$
– eyorble
May 26 at 3:23












$begingroup$
Thanks for letting me know. I'll try to keep that in mind next time I ask a question, @eyerble
$endgroup$
– wendy
May 26 at 3:24




$begingroup$
Thanks for letting me know. I'll try to keep that in mind next time I ask a question, @eyerble
$endgroup$
– wendy
May 26 at 3:24










4 Answers
4






active

oldest

votes


















6












$begingroup$

Use RealAbs



Integrate[RealAbs[(9 - x^2)^(1/2)], x]


enter image description here






share|improve this answer









$endgroup$























    6












    $begingroup$

    Use Assumptions:



    Integrate[Abs[(9 - x^2)^(1/2)], x, Assumptions -> x [Element] Reals]
    Differences[% /. {{x -> 0}, {x -> 3}}]


    Mathematica graphics



    Explanation of the math: Mathematica defaults to complex analysis, but many users I suspect tend to think in terms of real-variable calculus, often just in terms of single-variable calculus on problems like the OP's. Unlike the real absolute value, the complex absolute value does not have an antiderivative. More particularly, integrals of (continuous) functions of the real absolute value are "path independent"1): that is, there is a "potential function" F[x] such that the integral from a to b is given by the values of at the end points F[b] - F[a], and the values of F[x] along the path from a to b do not matter. For integrals on the 1D real line, the potential function is the same as the antiderivative. However, integrals over paths in the complex plane of functions of the complex absolute value Abs are generally not path independent. Hence there cannot be a potential function that can be used to evaluate the integral by subtracting values at the end points. Here's a numerical example, in which the end points of the paths are the same but the values of the integrals are not (Integrate and NIntegrate use straight-lined paths through the complex numbers specified):



    NIntegrate[Abs[(9 - x^2)^(1/2)], {x, 0, 3}]
    (* 7.06858 *)

    NIntegrate[Abs[(9 - x^2)^(1/2)], {x, 0, 2 + 2 I, 3}]
    (* 8.55748 + 1.50584 I *)


    Consequently, the answer to the OP's integral,



    Integrate[Abs[(9 - x^2)^(1/2)], x]


    does not exist.



    1) Note: I'm borrowing the terms "path independent" and "potential function" from vector calculus. They are usually only introduced in dimension 2 and higher, because dimension 1 may be understood in simpler terms in first-year calculus. In a comparison of complex analysis with single-variable real calculus, it is natural to consider the real integral $int_a^b f(x) , dx$ as a path integral in the complex plane whose path happens to lie on the real axis. It is also valid to consider it a path integral of a 1D vector field on the 1D real line.






    share|improve this answer











    $endgroup$























      4












      $begingroup$

      Integrate's variable declaration can be either a variable by itself, as you currently have it (x), or as a variable with its endpoints. The latter form will evaluate in full automatically:



      Integrate[Abs[(9 - x^2)^(1/2)], {x, 0, 3}]



      $frac{9pi}{4}$




      This is the second usage shown in Integrate's documentation, so please check there if you have any further questions on it.



      In general, the indefinite integrals of functions containing an absolute value are messier than strictly necessary. However, if you specify appropriate assumptions (particularly that x is real), Mathematica can divide it into a piecewise function:



      Integrate[Abs[(9 - x^2)^(1/2)], x, Assumptions -> {x [Element] Reals}]


      The result is a mess, so I'd recommend looking at it on your own machine. If complex values are allowed, then ComplexExpand would ordinarily be helpful.



      Integrate[ComplexExpand[Abs[(9 - x^2)^(1/2)], x], x]


      In this case, however, it just returns a different, more complicated looking integral.






      share|improve this answer









      $endgroup$















      • $begingroup$
        thank you so much for answering! sorry for replying late, just came out of class.
        $endgroup$
        – wendy
        May 26 at 5:46



















      3












      $begingroup$

      For indefinite integrals replace Abs by the square root of the square:



      Integrate[Sqrt[((9 - x^2)^(1/2))^2], x]
      (* 1/2 x Sqrt[9 - x^2] + 9/2 ArcSin[x/3] *)





      share|improve this answer









      $endgroup$


















        Your Answer








        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',
        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
        });


        }
        });














        draft saved

        draft discarded


















        StackExchange.ready(
        function () {
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f199114%2fintegrating-an-absolute-function-using-mathematica%23new-answer', 'question_page');
        }
        );

        Post as a guest















        Required, but never shown

























        4 Answers
        4






        active

        oldest

        votes








        4 Answers
        4






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        6












        $begingroup$

        Use RealAbs



        Integrate[RealAbs[(9 - x^2)^(1/2)], x]


        enter image description here






        share|improve this answer









        $endgroup$




















          6












          $begingroup$

          Use RealAbs



          Integrate[RealAbs[(9 - x^2)^(1/2)], x]


          enter image description here






          share|improve this answer









          $endgroup$


















            6












            6








            6





            $begingroup$

            Use RealAbs



            Integrate[RealAbs[(9 - x^2)^(1/2)], x]


            enter image description here






            share|improve this answer









            $endgroup$



            Use RealAbs



            Integrate[RealAbs[(9 - x^2)^(1/2)], x]


            enter image description here







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered May 26 at 9:42









            rmwrmw

            6581 silver badge7 bronze badges




            6581 silver badge7 bronze badges




























                6












                $begingroup$

                Use Assumptions:



                Integrate[Abs[(9 - x^2)^(1/2)], x, Assumptions -> x [Element] Reals]
                Differences[% /. {{x -> 0}, {x -> 3}}]


                Mathematica graphics



                Explanation of the math: Mathematica defaults to complex analysis, but many users I suspect tend to think in terms of real-variable calculus, often just in terms of single-variable calculus on problems like the OP's. Unlike the real absolute value, the complex absolute value does not have an antiderivative. More particularly, integrals of (continuous) functions of the real absolute value are "path independent"1): that is, there is a "potential function" F[x] such that the integral from a to b is given by the values of at the end points F[b] - F[a], and the values of F[x] along the path from a to b do not matter. For integrals on the 1D real line, the potential function is the same as the antiderivative. However, integrals over paths in the complex plane of functions of the complex absolute value Abs are generally not path independent. Hence there cannot be a potential function that can be used to evaluate the integral by subtracting values at the end points. Here's a numerical example, in which the end points of the paths are the same but the values of the integrals are not (Integrate and NIntegrate use straight-lined paths through the complex numbers specified):



                NIntegrate[Abs[(9 - x^2)^(1/2)], {x, 0, 3}]
                (* 7.06858 *)

                NIntegrate[Abs[(9 - x^2)^(1/2)], {x, 0, 2 + 2 I, 3}]
                (* 8.55748 + 1.50584 I *)


                Consequently, the answer to the OP's integral,



                Integrate[Abs[(9 - x^2)^(1/2)], x]


                does not exist.



                1) Note: I'm borrowing the terms "path independent" and "potential function" from vector calculus. They are usually only introduced in dimension 2 and higher, because dimension 1 may be understood in simpler terms in first-year calculus. In a comparison of complex analysis with single-variable real calculus, it is natural to consider the real integral $int_a^b f(x) , dx$ as a path integral in the complex plane whose path happens to lie on the real axis. It is also valid to consider it a path integral of a 1D vector field on the 1D real line.






                share|improve this answer











                $endgroup$




















                  6












                  $begingroup$

                  Use Assumptions:



                  Integrate[Abs[(9 - x^2)^(1/2)], x, Assumptions -> x [Element] Reals]
                  Differences[% /. {{x -> 0}, {x -> 3}}]


                  Mathematica graphics



                  Explanation of the math: Mathematica defaults to complex analysis, but many users I suspect tend to think in terms of real-variable calculus, often just in terms of single-variable calculus on problems like the OP's. Unlike the real absolute value, the complex absolute value does not have an antiderivative. More particularly, integrals of (continuous) functions of the real absolute value are "path independent"1): that is, there is a "potential function" F[x] such that the integral from a to b is given by the values of at the end points F[b] - F[a], and the values of F[x] along the path from a to b do not matter. For integrals on the 1D real line, the potential function is the same as the antiderivative. However, integrals over paths in the complex plane of functions of the complex absolute value Abs are generally not path independent. Hence there cannot be a potential function that can be used to evaluate the integral by subtracting values at the end points. Here's a numerical example, in which the end points of the paths are the same but the values of the integrals are not (Integrate and NIntegrate use straight-lined paths through the complex numbers specified):



                  NIntegrate[Abs[(9 - x^2)^(1/2)], {x, 0, 3}]
                  (* 7.06858 *)

                  NIntegrate[Abs[(9 - x^2)^(1/2)], {x, 0, 2 + 2 I, 3}]
                  (* 8.55748 + 1.50584 I *)


                  Consequently, the answer to the OP's integral,



                  Integrate[Abs[(9 - x^2)^(1/2)], x]


                  does not exist.



                  1) Note: I'm borrowing the terms "path independent" and "potential function" from vector calculus. They are usually only introduced in dimension 2 and higher, because dimension 1 may be understood in simpler terms in first-year calculus. In a comparison of complex analysis with single-variable real calculus, it is natural to consider the real integral $int_a^b f(x) , dx$ as a path integral in the complex plane whose path happens to lie on the real axis. It is also valid to consider it a path integral of a 1D vector field on the 1D real line.






                  share|improve this answer











                  $endgroup$


















                    6












                    6








                    6





                    $begingroup$

                    Use Assumptions:



                    Integrate[Abs[(9 - x^2)^(1/2)], x, Assumptions -> x [Element] Reals]
                    Differences[% /. {{x -> 0}, {x -> 3}}]


                    Mathematica graphics



                    Explanation of the math: Mathematica defaults to complex analysis, but many users I suspect tend to think in terms of real-variable calculus, often just in terms of single-variable calculus on problems like the OP's. Unlike the real absolute value, the complex absolute value does not have an antiderivative. More particularly, integrals of (continuous) functions of the real absolute value are "path independent"1): that is, there is a "potential function" F[x] such that the integral from a to b is given by the values of at the end points F[b] - F[a], and the values of F[x] along the path from a to b do not matter. For integrals on the 1D real line, the potential function is the same as the antiderivative. However, integrals over paths in the complex plane of functions of the complex absolute value Abs are generally not path independent. Hence there cannot be a potential function that can be used to evaluate the integral by subtracting values at the end points. Here's a numerical example, in which the end points of the paths are the same but the values of the integrals are not (Integrate and NIntegrate use straight-lined paths through the complex numbers specified):



                    NIntegrate[Abs[(9 - x^2)^(1/2)], {x, 0, 3}]
                    (* 7.06858 *)

                    NIntegrate[Abs[(9 - x^2)^(1/2)], {x, 0, 2 + 2 I, 3}]
                    (* 8.55748 + 1.50584 I *)


                    Consequently, the answer to the OP's integral,



                    Integrate[Abs[(9 - x^2)^(1/2)], x]


                    does not exist.



                    1) Note: I'm borrowing the terms "path independent" and "potential function" from vector calculus. They are usually only introduced in dimension 2 and higher, because dimension 1 may be understood in simpler terms in first-year calculus. In a comparison of complex analysis with single-variable real calculus, it is natural to consider the real integral $int_a^b f(x) , dx$ as a path integral in the complex plane whose path happens to lie on the real axis. It is also valid to consider it a path integral of a 1D vector field on the 1D real line.






                    share|improve this answer











                    $endgroup$



                    Use Assumptions:



                    Integrate[Abs[(9 - x^2)^(1/2)], x, Assumptions -> x [Element] Reals]
                    Differences[% /. {{x -> 0}, {x -> 3}}]


                    Mathematica graphics



                    Explanation of the math: Mathematica defaults to complex analysis, but many users I suspect tend to think in terms of real-variable calculus, often just in terms of single-variable calculus on problems like the OP's. Unlike the real absolute value, the complex absolute value does not have an antiderivative. More particularly, integrals of (continuous) functions of the real absolute value are "path independent"1): that is, there is a "potential function" F[x] such that the integral from a to b is given by the values of at the end points F[b] - F[a], and the values of F[x] along the path from a to b do not matter. For integrals on the 1D real line, the potential function is the same as the antiderivative. However, integrals over paths in the complex plane of functions of the complex absolute value Abs are generally not path independent. Hence there cannot be a potential function that can be used to evaluate the integral by subtracting values at the end points. Here's a numerical example, in which the end points of the paths are the same but the values of the integrals are not (Integrate and NIntegrate use straight-lined paths through the complex numbers specified):



                    NIntegrate[Abs[(9 - x^2)^(1/2)], {x, 0, 3}]
                    (* 7.06858 *)

                    NIntegrate[Abs[(9 - x^2)^(1/2)], {x, 0, 2 + 2 I, 3}]
                    (* 8.55748 + 1.50584 I *)


                    Consequently, the answer to the OP's integral,



                    Integrate[Abs[(9 - x^2)^(1/2)], x]


                    does not exist.



                    1) Note: I'm borrowing the terms "path independent" and "potential function" from vector calculus. They are usually only introduced in dimension 2 and higher, because dimension 1 may be understood in simpler terms in first-year calculus. In a comparison of complex analysis with single-variable real calculus, it is natural to consider the real integral $int_a^b f(x) , dx$ as a path integral in the complex plane whose path happens to lie on the real axis. It is also valid to consider it a path integral of a 1D vector field on the 1D real line.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited May 26 at 13:26

























                    answered May 26 at 12:47









                    Michael E2Michael E2

                    158k13 gold badges216 silver badges513 bronze badges




                    158k13 gold badges216 silver badges513 bronze badges


























                        4












                        $begingroup$

                        Integrate's variable declaration can be either a variable by itself, as you currently have it (x), or as a variable with its endpoints. The latter form will evaluate in full automatically:



                        Integrate[Abs[(9 - x^2)^(1/2)], {x, 0, 3}]



                        $frac{9pi}{4}$




                        This is the second usage shown in Integrate's documentation, so please check there if you have any further questions on it.



                        In general, the indefinite integrals of functions containing an absolute value are messier than strictly necessary. However, if you specify appropriate assumptions (particularly that x is real), Mathematica can divide it into a piecewise function:



                        Integrate[Abs[(9 - x^2)^(1/2)], x, Assumptions -> {x [Element] Reals}]


                        The result is a mess, so I'd recommend looking at it on your own machine. If complex values are allowed, then ComplexExpand would ordinarily be helpful.



                        Integrate[ComplexExpand[Abs[(9 - x^2)^(1/2)], x], x]


                        In this case, however, it just returns a different, more complicated looking integral.






                        share|improve this answer









                        $endgroup$















                        • $begingroup$
                          thank you so much for answering! sorry for replying late, just came out of class.
                          $endgroup$
                          – wendy
                          May 26 at 5:46
















                        4












                        $begingroup$

                        Integrate's variable declaration can be either a variable by itself, as you currently have it (x), or as a variable with its endpoints. The latter form will evaluate in full automatically:



                        Integrate[Abs[(9 - x^2)^(1/2)], {x, 0, 3}]



                        $frac{9pi}{4}$




                        This is the second usage shown in Integrate's documentation, so please check there if you have any further questions on it.



                        In general, the indefinite integrals of functions containing an absolute value are messier than strictly necessary. However, if you specify appropriate assumptions (particularly that x is real), Mathematica can divide it into a piecewise function:



                        Integrate[Abs[(9 - x^2)^(1/2)], x, Assumptions -> {x [Element] Reals}]


                        The result is a mess, so I'd recommend looking at it on your own machine. If complex values are allowed, then ComplexExpand would ordinarily be helpful.



                        Integrate[ComplexExpand[Abs[(9 - x^2)^(1/2)], x], x]


                        In this case, however, it just returns a different, more complicated looking integral.






                        share|improve this answer









                        $endgroup$















                        • $begingroup$
                          thank you so much for answering! sorry for replying late, just came out of class.
                          $endgroup$
                          – wendy
                          May 26 at 5:46














                        4












                        4








                        4





                        $begingroup$

                        Integrate's variable declaration can be either a variable by itself, as you currently have it (x), or as a variable with its endpoints. The latter form will evaluate in full automatically:



                        Integrate[Abs[(9 - x^2)^(1/2)], {x, 0, 3}]



                        $frac{9pi}{4}$




                        This is the second usage shown in Integrate's documentation, so please check there if you have any further questions on it.



                        In general, the indefinite integrals of functions containing an absolute value are messier than strictly necessary. However, if you specify appropriate assumptions (particularly that x is real), Mathematica can divide it into a piecewise function:



                        Integrate[Abs[(9 - x^2)^(1/2)], x, Assumptions -> {x [Element] Reals}]


                        The result is a mess, so I'd recommend looking at it on your own machine. If complex values are allowed, then ComplexExpand would ordinarily be helpful.



                        Integrate[ComplexExpand[Abs[(9 - x^2)^(1/2)], x], x]


                        In this case, however, it just returns a different, more complicated looking integral.






                        share|improve this answer









                        $endgroup$



                        Integrate's variable declaration can be either a variable by itself, as you currently have it (x), or as a variable with its endpoints. The latter form will evaluate in full automatically:



                        Integrate[Abs[(9 - x^2)^(1/2)], {x, 0, 3}]



                        $frac{9pi}{4}$




                        This is the second usage shown in Integrate's documentation, so please check there if you have any further questions on it.



                        In general, the indefinite integrals of functions containing an absolute value are messier than strictly necessary. However, if you specify appropriate assumptions (particularly that x is real), Mathematica can divide it into a piecewise function:



                        Integrate[Abs[(9 - x^2)^(1/2)], x, Assumptions -> {x [Element] Reals}]


                        The result is a mess, so I'd recommend looking at it on your own machine. If complex values are allowed, then ComplexExpand would ordinarily be helpful.



                        Integrate[ComplexExpand[Abs[(9 - x^2)^(1/2)], x], x]


                        In this case, however, it just returns a different, more complicated looking integral.







                        share|improve this answer












                        share|improve this answer



                        share|improve this answer










                        answered May 26 at 3:34









                        eyorbleeyorble

                        6,5231 gold badge11 silver badges30 bronze badges




                        6,5231 gold badge11 silver badges30 bronze badges















                        • $begingroup$
                          thank you so much for answering! sorry for replying late, just came out of class.
                          $endgroup$
                          – wendy
                          May 26 at 5:46


















                        • $begingroup$
                          thank you so much for answering! sorry for replying late, just came out of class.
                          $endgroup$
                          – wendy
                          May 26 at 5:46
















                        $begingroup$
                        thank you so much for answering! sorry for replying late, just came out of class.
                        $endgroup$
                        – wendy
                        May 26 at 5:46




                        $begingroup$
                        thank you so much for answering! sorry for replying late, just came out of class.
                        $endgroup$
                        – wendy
                        May 26 at 5:46











                        3












                        $begingroup$

                        For indefinite integrals replace Abs by the square root of the square:



                        Integrate[Sqrt[((9 - x^2)^(1/2))^2], x]
                        (* 1/2 x Sqrt[9 - x^2] + 9/2 ArcSin[x/3] *)





                        share|improve this answer









                        $endgroup$




















                          3












                          $begingroup$

                          For indefinite integrals replace Abs by the square root of the square:



                          Integrate[Sqrt[((9 - x^2)^(1/2))^2], x]
                          (* 1/2 x Sqrt[9 - x^2] + 9/2 ArcSin[x/3] *)





                          share|improve this answer









                          $endgroup$


















                            3












                            3








                            3





                            $begingroup$

                            For indefinite integrals replace Abs by the square root of the square:



                            Integrate[Sqrt[((9 - x^2)^(1/2))^2], x]
                            (* 1/2 x Sqrt[9 - x^2] + 9/2 ArcSin[x/3] *)





                            share|improve this answer









                            $endgroup$



                            For indefinite integrals replace Abs by the square root of the square:



                            Integrate[Sqrt[((9 - x^2)^(1/2))^2], x]
                            (* 1/2 x Sqrt[9 - x^2] + 9/2 ArcSin[x/3] *)






                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered May 26 at 6:38









                            CoolwaterCoolwater

                            16.1k3 gold badges25 silver badges54 bronze badges




                            16.1k3 gold badges25 silver badges54 bronze badges

































                                draft saved

                                draft discarded




















































                                Thanks for contributing an answer to Mathematica 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%2fmathematica.stackexchange.com%2fquestions%2f199114%2fintegrating-an-absolute-function-using-mathematica%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

                                He _____ here since 1970 . Answer needed [closed]What does “since he was so high” mean?Meaning of “catch birds for”?How do I ensure “since” takes the meaning I want?“Who cares here” meaningWhat does “right round toward” mean?the time tense (had now been detected)What does the phrase “ring around the roses” mean here?Correct usage of “visited upon”Meaning of “foiled rail sabotage bid”It was the third time I had gone to Rome or It is the third time I had been to Rome

                                Bunad

                                Færeyskur hestur Heimild | Tengill | Tilvísanir | LeiðsagnarvalRossið - síða um færeyska hrossið á færeyskuGott ár hjá færeyska hestinum