Any software for ubuntu 14.04 for doing mathematics algebric and functional graph problem with Calculus...












0















Searching for an all in one software for mathematics.










share|improve this question























  • Take a look at SageMath sagemath.org , or for primarily numerical calculations, GNU Octave is well suited.

    – Nephente
    Sep 20 '15 at 14:25
















0















Searching for an all in one software for mathematics.










share|improve this question























  • Take a look at SageMath sagemath.org , or for primarily numerical calculations, GNU Octave is well suited.

    – Nephente
    Sep 20 '15 at 14:25














0












0








0








Searching for an all in one software for mathematics.










share|improve this question














Searching for an all in one software for mathematics.







14.04 software-recommendation






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Sep 20 '15 at 13:01









Tavinder SinghTavinder Singh

11




11













  • Take a look at SageMath sagemath.org , or for primarily numerical calculations, GNU Octave is well suited.

    – Nephente
    Sep 20 '15 at 14:25



















  • Take a look at SageMath sagemath.org , or for primarily numerical calculations, GNU Octave is well suited.

    – Nephente
    Sep 20 '15 at 14:25

















Take a look at SageMath sagemath.org , or for primarily numerical calculations, GNU Octave is well suited.

– Nephente
Sep 20 '15 at 14:25





Take a look at SageMath sagemath.org , or for primarily numerical calculations, GNU Octave is well suited.

– Nephente
Sep 20 '15 at 14:25










2 Answers
2






active

oldest

votes


















0














I use R for simple Calculus, such as defining functions, plotting functions, differentiation, etc. For instance, defining a quadratic function:



f = function(x){x^2}



And then plotting it in the [1, 10] domain:



plot(f, 0, 10)


Defining a derivative function:



D = function(f,delta=.000001){
function(x){ (f(x+delta) - f(x-delta))/(2*delta)} }


And then plotting the derivative of f:



plot(D(f), 0, 10)


For an overview of Calculus with R you can read this presentation.



I also recommend you use a GUI, to facilitate the interaction with R and help organising your projects. I use StatET, an Eclipse plug-in; RStudio is also quite popular.



To install R you can follow the Ubuntu specific instructions at CRAN.






share|improve this answer


























  • Thanks, Your answer helped me alot :) can you tell me how can i install R using terminal ?

    – Tavinder Singh
    Sep 22 '15 at 8:19





















0














Since you already use ubuntu, why not using python? ubuntu ships with python by default. There are lots of available resources for running mathematics with python.






share|improve this answer























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "89"
    };
    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
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f676285%2fany-software-for-ubuntu-14-04-for-doing-mathematics-algebric-and-functional-grap%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    I use R for simple Calculus, such as defining functions, plotting functions, differentiation, etc. For instance, defining a quadratic function:



    f = function(x){x^2}



    And then plotting it in the [1, 10] domain:



    plot(f, 0, 10)


    Defining a derivative function:



    D = function(f,delta=.000001){
    function(x){ (f(x+delta) - f(x-delta))/(2*delta)} }


    And then plotting the derivative of f:



    plot(D(f), 0, 10)


    For an overview of Calculus with R you can read this presentation.



    I also recommend you use a GUI, to facilitate the interaction with R and help organising your projects. I use StatET, an Eclipse plug-in; RStudio is also quite popular.



    To install R you can follow the Ubuntu specific instructions at CRAN.






    share|improve this answer


























    • Thanks, Your answer helped me alot :) can you tell me how can i install R using terminal ?

      – Tavinder Singh
      Sep 22 '15 at 8:19


















    0














    I use R for simple Calculus, such as defining functions, plotting functions, differentiation, etc. For instance, defining a quadratic function:



    f = function(x){x^2}



    And then plotting it in the [1, 10] domain:



    plot(f, 0, 10)


    Defining a derivative function:



    D = function(f,delta=.000001){
    function(x){ (f(x+delta) - f(x-delta))/(2*delta)} }


    And then plotting the derivative of f:



    plot(D(f), 0, 10)


    For an overview of Calculus with R you can read this presentation.



    I also recommend you use a GUI, to facilitate the interaction with R and help organising your projects. I use StatET, an Eclipse plug-in; RStudio is also quite popular.



    To install R you can follow the Ubuntu specific instructions at CRAN.






    share|improve this answer


























    • Thanks, Your answer helped me alot :) can you tell me how can i install R using terminal ?

      – Tavinder Singh
      Sep 22 '15 at 8:19
















    0












    0








    0







    I use R for simple Calculus, such as defining functions, plotting functions, differentiation, etc. For instance, defining a quadratic function:



    f = function(x){x^2}



    And then plotting it in the [1, 10] domain:



    plot(f, 0, 10)


    Defining a derivative function:



    D = function(f,delta=.000001){
    function(x){ (f(x+delta) - f(x-delta))/(2*delta)} }


    And then plotting the derivative of f:



    plot(D(f), 0, 10)


    For an overview of Calculus with R you can read this presentation.



    I also recommend you use a GUI, to facilitate the interaction with R and help organising your projects. I use StatET, an Eclipse plug-in; RStudio is also quite popular.



    To install R you can follow the Ubuntu specific instructions at CRAN.






    share|improve this answer















    I use R for simple Calculus, such as defining functions, plotting functions, differentiation, etc. For instance, defining a quadratic function:



    f = function(x){x^2}



    And then plotting it in the [1, 10] domain:



    plot(f, 0, 10)


    Defining a derivative function:



    D = function(f,delta=.000001){
    function(x){ (f(x+delta) - f(x-delta))/(2*delta)} }


    And then plotting the derivative of f:



    plot(D(f), 0, 10)


    For an overview of Calculus with R you can read this presentation.



    I also recommend you use a GUI, to facilitate the interaction with R and help organising your projects. I use StatET, an Eclipse plug-in; RStudio is also quite popular.



    To install R you can follow the Ubuntu specific instructions at CRAN.







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Sep 22 '15 at 9:10

























    answered Sep 21 '15 at 7:11









    Luís de SousaLuís de Sousa

    8,987175198




    8,987175198













    • Thanks, Your answer helped me alot :) can you tell me how can i install R using terminal ?

      – Tavinder Singh
      Sep 22 '15 at 8:19





















    • Thanks, Your answer helped me alot :) can you tell me how can i install R using terminal ?

      – Tavinder Singh
      Sep 22 '15 at 8:19



















    Thanks, Your answer helped me alot :) can you tell me how can i install R using terminal ?

    – Tavinder Singh
    Sep 22 '15 at 8:19







    Thanks, Your answer helped me alot :) can you tell me how can i install R using terminal ?

    – Tavinder Singh
    Sep 22 '15 at 8:19















    0














    Since you already use ubuntu, why not using python? ubuntu ships with python by default. There are lots of available resources for running mathematics with python.






    share|improve this answer




























      0














      Since you already use ubuntu, why not using python? ubuntu ships with python by default. There are lots of available resources for running mathematics with python.






      share|improve this answer


























        0












        0








        0







        Since you already use ubuntu, why not using python? ubuntu ships with python by default. There are lots of available resources for running mathematics with python.






        share|improve this answer













        Since you already use ubuntu, why not using python? ubuntu ships with python by default. There are lots of available resources for running mathematics with python.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Dec 9 '18 at 5:06









        Reza RahemiReza Rahemi

        14012




        14012






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Ask Ubuntu!


            • 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.


            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%2faskubuntu.com%2fquestions%2f676285%2fany-software-for-ubuntu-14-04-for-doing-mathematics-algebric-and-functional-grap%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

            How to send String Array data to Server using php in android

            Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

            Is anime1.com a legal site for watching anime?