Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

39
votes
14answers
12k views

Best open-source Mathematica equivalent

What is the best open-source equivalent for Mathematica? My requirements are: (most important) Must be a real computer algebra system (CAS). Notably, I don't want Matlab clones -- I want something ...
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 ...
9
votes
4answers
1k views

Introduction to computer algebra systems?

Does anybody know of any resources (books, classes, lecture notes, or anything) about the general theory of computer algebra systems (e.g. mathematica, sympy)? "Introductory" materials are preferred, ...
5
votes
1answer
71 views

library for affine k-algebra computations?

I'm looking for a library or computer algebra system that will help compute operations on polynomials in the ring F_2[x_1, ..., x_n] / <f^2 - f> where F_2 is the 2-element finite field, and ...
4
votes
4answers
192 views

Equations Equality test (in C++ or with Unix tools) (algebra functions isomorphism)

I am looking for C++ open-source library (or just open-source Unix tool) to do: Equality test on Equations . Equations can be build during runtime as AST Trees, string or other format. Equations ...
4
votes
1answer
545 views

Computer Algebra System (CAS) for Scala

I'm looking for a simple CAS system for scala. It should have the following features: give access to the abstract syntax tree (preferably via case classes for easy matching) parse String to AST ...
4
votes
2answers
476 views

Building a computer algebra system

I'm creating a CAS (Computer Algebra System) in PHP, but I'm stuck right now. I am using this website. Now I wrote a tokenizer. It will convert an equation like this: 1+2x-3*(4-5*(3x)) to this: ...
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, ...
3
votes
4answers
861 views

Algorithmically get Amplitude and Phase of Sine wave?

I'm trying to figure out a way to algorithmically get the amplitude and phase of a function that has sinusoidal terms in the Maxima computer algebra system. This only applies to steady state (as t -> ...
2
votes
2answers
171 views

Mathematica-like (LaTeX) typesetting for own CAS application

As I am using Mathematica a lot I got the idea to write a small and free CAS which just exposes a very small subset of necessary functions and packages to be used and I want to present the results in ...
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 ...
1
vote
1answer
304 views

Find out how many digits a number as in Maple

I'm trying to implement a basic procedure to generate an RSA key. The procedure accepts a range of numbers a and b. It has to check that the intervall between a and b is "five digits". So I came up ...
1
vote
2answers
56 views

Looking for software suite to perform partial evaluation to reduce constants

We have need in our product to do partial evaluation to simplify expressions that contain both variables and constants. Goal is to combine terms algebraically to reduce the constants whenever ...
0
votes
0answers
18 views

SINGULAR (commutative algebra), how to add in the exponent: x^(2+3) doesn't work

does anyone know how to add numbers in the exponent of a variable in the computer algebra system SINGULAR? int n=3; ring R=0,(x,y,z,w),dp; ideal I=x^(n+1)-yz^(n-1)w,xy^(n-1)-z^n,x^nz-y^nw; ...
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 ...
0
votes
1answer
230 views

Is There a Way to Rationalize a Decimal in Pari/GP?

I'm looking for an automated way to turn a decimal value into a fraction in the PARI/GP calculator (gp). For example, I want to turn 0.759765625 into 389/512. I know I can do this manually by typing ...