Any software for ubuntu 14.04 for doing mathematics algebric and functional graph problem with Calculus...
Searching for an all in one software for mathematics.
14.04 software-recommendation
add a comment |
Searching for an all in one software for mathematics.
14.04 software-recommendation
Take a look at SageMath sagemath.org , or for primarily numerical calculations, GNU Octave is well suited.
– Nephente
Sep 20 '15 at 14:25
add a comment |
Searching for an all in one software for mathematics.
14.04 software-recommendation
Searching for an all in one software for mathematics.
14.04 software-recommendation
14.04 software-recommendation
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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.
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
add a comment |
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.
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Dec 9 '18 at 5:06
Reza RahemiReza Rahemi
14012
14012
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Take a look at SageMath sagemath.org , or for primarily numerical calculations, GNU Octave is well suited.
– Nephente
Sep 20 '15 at 14:25