The symbolic-computation tag has no wiki summary.
1
vote
0answers
57 views
What libraries are available for solving problems at the college physics level?
Are there any libraries available for solving problems at the level of college physics?
In particular, I'm interested in libraries for general purpose programming languages that can calculate results ...
0
votes
1answer
92 views
How easy is it to combine symbolic and numeric computation in Matlab?
CS Beta people:
I have been doing some multiple integrals with a combination of symbolic and numerical integration (because symbolic answers have not always been possible). I have been using ...
3
votes
1answer
73 views
Simple substitutions using symbolic computing in MATLAB
Suppose I have the following MATLAB code.
syms a b c1 c2
c1 = a + b + pi*b
c2 = a + b + 0.5*b
Then c1 gets evaluated to ...
7
votes
5answers
427 views
Symbolic solution of a system of 7 nonlinear equations
I've got a system of ordinary differential equations - 7 equations, and ~30 parameters governing their behavior as part of a mathematical model of disease transmission. I'd like to find the steady ...
12
votes
7answers
530 views
Is there any open-source or easy-to-access software that can simplify algebraic expressions like $x^{2}+2x+3, x=\sqrt{2}t-1$?
I always calculate things by hand, but now my comrades are getting nasty and making a lot of repetitive exercises involving just plugging things in like the expression above. I am particularly ...
9
votes
2answers
241 views
Automatic generation of integration points and weights for triangles and tetrahedra
Usually one would consult a paper or book to find integration points and weights for unit triangle and tetrahedra. I am looking for a method to automatically compute such points and weights. The ...
23
votes
6answers
808 views
Symbolic software packages for Matrix expressions?
We know that $\mathbf A$ is symmetric and positive-definite. We know that $\mathbf B$ is orthogonal:
Question: is $\mathbf B \cdot\mathbf A \cdot\mathbf B^\top$ symmetric and positive-definite?
...