Tagged Questions
10
votes
2answers
603 views
Haskell library like SymPy?
I need to manipulate expressions like 1 + sqrt(3) and do basic arithmetic like addition, subtraction, and division. I'd like the result to be in some sort of canonical form so that it can be used as a ...
9
votes
2answers
495 views
Computer algebra for Clojure
Short version:
I am interested in some Clojure code which will allow me to specify the transformations of x (e.g. permutations, rotations) under which the value of a function f(x) is invariant, so ...
3
votes
1answer
177 views
Symbolic Math Library in C/C++/Obj-C
I am trying to implement a graphing calculator on the iPhone. I am looking for a library that can take strings of expressions or functions and let me manipulate them (find derivatives, intercepts, ...
2
votes
2answers
98 views
Are symbolic computation and functional programming related?
I was wondering if symbolic computation in Computer Algebra System (such as symbolic toolbox in Matlab, Mathematica) and functional programming related and how? Does the former belong to the latter?
...
1
vote
1answer
31 views
Maxima: convert matrix to list
I convert list to matrix in Maxima in following way:
DataL : [ [1,2], [2,4], [3,6], [4,8] ];
DataM: apply('matrix,DataL);
How to do it the other way ? How to convert given matrix DataM into list ...
0
votes
4answers
230 views
computer algebra soft to minimize the number of operations in a set of polynomials
I have systems of polynomials, fairly simple polynomial expressions but rather long
to optimize my hand. Expressions are grouped in sets, and in a given set there are common terms in several ...