Tagged Questions

0
votes
1answer
61 views

computer algebra soft to minimize the number of operations in a set of polynomials

hello 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 commo …
1
vote
3answers
102 views

How do I solve a determinant in MATLAB?

As a simple example, let's say you have this matrix: M = [omega 1; 2 omega]; and you need to solve for the values of omega that satisfy the condition det M = 0. How do …
1
vote
4answers
81 views

Looking for a good reference on calculating permutations

Hi, As a programmer, I frequently need to be able to know the how to calculate the number of permutations of a set, usually for estimation purposes. There are a lot of different …
0
votes
1answer
32 views

How to compute simplified Groebner basis in GAP script

I tried to use Buchberger's Algorithm(see also: http://en.wikipedia.org/wiki/Buchberger%27s%5FAlgorithm and http://www.geocities.com/famancin/buchberger.html) to compute a Groebner …
0
votes
0answers
75 views

Symbolic math: DOUBLE cannot convert the input expression into a double array

I want to solve an integration with Symbolic math toolbox. However it seems that there is a problem whith double and sym variables. I wrote this code: function [q] = Eq27(Lg,x,r) …
1
vote
2answers
67 views

Programming language for working with axioms.

edit: Prolog is the answer.
7
votes
9answers
970 views

Derivatives in C/C++?

I have some expressions such as x^2+y^2 that I'd like to use for some math calculations. On of the things I'd like to do is to take partial derivatives of the expressions. So if f( …
3
votes
3answers
359 views

units conversion in python

sympy is a great tool for doing units conversions in python: >>> from sympy.physics import units >>> 12. * units.inch / units.m 0.304800000000000 You can easil …
0
votes
2answers
407 views

How to solve symbolic equation with double coefficients in matlab?

I have quadratic equation 1/x = 1/(a-x) + 1/(3*a -x) I want to solve it in matlab: solve('1/x=1/(a-x)+1/(3*a-x)', 'x') ans = (4/3+1/3*7^(1/2))*a (4/3-1/3*7^(1/2))*a Is there …
0
votes
1answer
218 views

How can I hook into MATLAB to evaluate symbolic derivatives from C code?

How can I use MATLAB's Symbolic Toolkit to symbolically evaluate derivatives from C or C++?
1
vote
1answer
148 views

Symbolic Mathematics for .NET

I am looking for symbolic mathematics library for .NET framework. I have looked at Math.net but it's not something usable yet. Do you know if there is another library exists?
8
votes
7answers
634 views

Symbolic Mathematics Python?

I am extreamly interested in math and programming and planning to start symbolic math project from scratch. Is this good project idea? Where to start? How should one approach thi …
6
votes
4answers
600 views

Symbolic math lib

I have a planned project that will need to manipulate symbolic expressions like: a * b = c^2 + sin(d) I'm wondering what libs are out there for this kind of thing. Two that I f …