Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
252 views

How to find a function's rth derivative when r is symbolic in Mathematica?

I have a function f(t)=2/(2-t). It is not so hard to get the rth derivative at t=0 (i.e. 2^(-r)*r!) without using Mathematica. In the case of Mathematica calculation, I can get the r-th derivative ...
11
votes
7answers
3k 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 this project? Any ...
10
votes
5answers
264 views

Reduce the number of operations on a simple expression

Lets say I take a computation that involves only addition and multiplication: (a+b)*(c+d) which can be done in many other ways, eg. a*(c+d) + b*(c+d) a*c + a*d + b*c + b*d In terms of additions ...
10
votes
2answers
617 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
496 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
9answers
8k 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(x,y) = x^2 + y^2 ...
9
votes
4answers
3k 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 found a while ago are ...
7
votes
2answers
215 views

symbolic computation

My problem: symbolic expression manipulation. A symbolic expression is built starting from integer constants and variable with the help of operators like +, -, *, /, min,max. More exactly I would ...
7
votes
3answers
666 views

Good symbolic math/CAS library for Java?

Can anyone recommend a good symbolic math/CAS library for Java? If you have actually used the library, can you list any pros/cons regarding the API or general usage? Thanks!
6
votes
2answers
1k views

Solving systems of equations in R

Solving an equation symbolically can be achieved in R using the Ryacas library. For example library(Ryacas) yacas("Solve(x/(1+x) == a, x)") gives expression(list(x == a/(1 - a))) Does anybody ...
6
votes
1answer
1k views

Constructing piecewise symbolic function in Matlab

I am trying to generate a piecewise symbolic function in Matlab. The reason it has to be symbolic is I want to be able to integrate/differentiate the function afterwards and/or insert actual values. I ...
6
votes
3answers
3k 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 easily roll your own: ...
5
votes
4answers
122 views

Getting all the leaves from an expression

I would like to get a List (ideally a set -- discarding repetition -- but assuming there's no direct way to do this I'll just use Union) of the leaves from a given expression. For example, the ...
5
votes
3answers
261 views

Can program be used to simplify algebraic expressions?

We know 1+2+...+n is equal to n(n+1)/2. But can we get the same result programatically if we don't know it in advance? About why I have such a question. Think of a more complex situation: ...
4
votes
1answer
378 views

simplifying and rearranging non-commutative variables in mathematica

this is a little complicated. i spent 2 weeks on this, so i'd love ur input or suggestion how to figure it out or where to post. in short, i have an expression that contains multiplications between ...
4
votes
3answers
273 views

Non-sequential substitution in SymPy

I'm trying to use [SymPy][1] to substitute multiple terms in an expression at the same time. I tried the [subs function][2] with a dictionary as parameter, but found out that it substitutes ...
4
votes
3answers
2k views

How do I make a function from a symbolic expression in MATLAB?

How can I make a function from a symbolic expression? For example, I have the following: syms beta n1,n2,m,aa= Constants u = sqrt(n2-beta^2); w = sqrt(beta^2-n1); a = tan(u)/w+tanh(w)/u; b = ...
4
votes
1answer
726 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?
3
votes
2answers
49 views

Symbolic functions in matlab

I'm sorry if I'm not formerly correct; I would like to work with symbolic functions, like i.e. x(t) without the need to actually define x. This may be useful because sometimes you'll have functions ...
3
votes
1answer
53 views

Evaluate a symbolic Ryacas expression

This is a reproducible example: a <- 0.05 za.2 <- qnorm(1-a/2) b <- 0.20 zb <- qnorm(1-b) lambda12 <- -log(1/2)/12 lambda18 <- -log(1/2)/18 theta <- lambda18/lambda12 (d = ...
3
votes
1answer
181 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
1answer
76 views

How can I evaluate an integration to a number?

I have some functions set up like this: f(x):=1-2**-x$ g(y):=integrate(f(x), x, 0, y)$ and evaluated them: f(1)$float(%); g(1)$float(%); but for g(1), I got a symbolic answer instead of a ...
3
votes
5answers
255 views

Is there something like Sympy for Java?

I'm looking for a symbolic math library for Java along the lines of sympy for Python. Does anyone know of anything? Thanks!
2
votes
1answer
71 views

How to define some variables as non-commutative in Maxima

For example, I'd like to define x and y as non-commutative, and a and b as commutative (as usual). In other words, x y ≠ y x, a x = x a, a b = b a . Further, (x + a y) (x - a y) = x^2 + a (y x ...
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? ...
2
votes
1answer
89 views

Symbolic summation of series in R?

Is there a (matlab) symsum equivalent in R? Thank you!
2
votes
5answers
754 views

Symbolic mathematical calculations in Clojure vs. F#

I have come across the following F# sample and found it intriguing. http://www.codeproject.com/KB/net-languages/SymbolicCalcInFS.aspx Does Clojure have language/library facilities for doing ...
1
vote
2answers
102 views

Simplifying a very long symbolic expression by automatically introducing temporal variables or in any other way

After attempting to solve a symbolic math problem, I got an expression with about 17000 characters. I am using the symbolic toolbox for Matlab, but I am open to any suggestion (Mathematica, whatever). ...
1
vote
1answer
50 views

R: trouble making package Ryacas to work on Windows

I am trying to use the package Ryacas in R. Here what is going on: > install.packages("Ryacas") --- Please select a CRAN mirror for use in this session --- trying URL ...
1
vote
5answers
124 views

Using Python to create a Unit Circle calculator?

As a younger programmer, I'm always trying to look for applications of my skills. Anyways, I'm currently taking trig and we're working on unit circles, the formula for converting from degrees to a ...
1
vote
1answer
33 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
2answers
111 views

Designing a symbolic equation solver

For a class I was assigned to a project to do a basic equation solver. It needs to solve linear equations. E.g. of some equations I should be able to solve: a*x + b = c a*x + b = c*x + d 16*x – 9*x ...
1
vote
2answers
53 views

Matlab's simplify behavior

I'm trying to simplify some symbolic equations. >> syms x; >> simplify(sqrt(x^2)/x) ans = (x^2)^(1/2)/x Actually, I want matlab to return 1 or smth like that. >> ...
1
vote
2answers
123 views

Symbolic Eigenvalues Matlab Error

I'm trying to find the eigenvectors of a symbolic 3x3 rotation matrix in MATLAB, it appears to work for some inputs but not all, for example: A = [ cos(q), -sin(q), 0] [ sin(q), cos(q), 0] [ 0, 0, 1] ...
1
vote
2answers
787 views

Using fzero: Undefined function or method 'isfinite' for input arguments of type 'sym'

I use matlab for symbolic calculations. After long calculations I've got a function of x, which is the combination of bessel functions and I want to find it's zeros. For that purpose I use fzero ...
1
vote
2answers
97 views

My idea of symbolic evaluator performing derivation on dynamic set of variables

This will slightly link to my two previous questions link 1, link 2. I'm working on some symbolic evaluator which will be part of my project for simulation of electrical circuits. As someone had ...
1
vote
1answer
112 views

Simple? Message Passing in Mathematica 7

Uu[z_,x_,t_] := A1[z]*F[t*a*x] Wu[z_,x_,t_] := B1[z]*F[t*a*x] Pu[z_,x_,t_] := C1[z]*F[t*a*x] eq1 = D[Uu[z,x,t],t]==-R*D[Pu[z,x,t],x]; C1z = DSolve[eq1,C1[z],z]; eq2 = ...
1
vote
2answers
374 views

matlab: subs on symbolic constant returns scalar instead of vector for a vector input

usually, symbolic functions return vectors for vector inputs: syms('x'); f=x*2; subs(f,[1 2 3]) outputs: [2 4 6] but doing f=sym('0'); subs(f,[1 2 3]); outputs: 0 and not: [0 0 0] so basically, ...
1
vote
1answer
587 views

Symbolic Math in MATLAB, solving simple integration

I have a problem with solving a simple integration through MATLAB. I want to solve this symbolic and don't have any problems doing this through other programs. Well I have this equation: syms k x ...
1
vote
3answers
2k 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 you do this in ...
1
vote
4answers
140 views

Looking for a good reference on calculating permutations

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 ways specify the ...
1
vote
1answer
126 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 basis for an ideal ...
1
vote
2answers
122 views

Programming language for working with axioms

edit: Prolog is the answer.
1
vote
2answers
1k 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 any way to solve ...
1
vote
5answers
2k views

Matlab symbolic toolbox: What's wrong with my code?

I'm trying to solve three simultaneous nonlinear equations in the unknowns x, y, z with Matlab's symbolic toolbox. What's wrong with the following code? solve( '(x/4 + y/2 + z/4)*(1/(8*x) + 1/(16*y) ...
0
votes
1answer
17 views

Differentiating sums with Maxima

I have the following sum: sum((R[i]-(a*X[i]+b)*t + 1/2*(c*X[i]+d)^2*t)^2/((c*X[i]+d)^2*t), i, 1, N); which I want to differenciate wrt. a: diff(%, a); but Maxima (wxMaxima to be precise) just ...
0
votes
0answers
131 views

Integral of a Recursive Function in MATLAB

I want to compute the following symbolic integral which is recursive : function [y] = myfunc(i,T) s = sym('s'); x= sym('x'); h=[....] %matrix n*n (function of x) d=[....] %matrix ...
0
votes
3answers
61 views

iPhone - entering equations

I've been researching this topic for a few weeks now, but I'm still unsure as to what is the "best" way to approach this problem. I am designing an app, and part of the input involves entering an ...
0
votes
2answers
50 views

Factorize symbolic expression in quadratic form

Suppose I have in Matlab a symbolic equation like this syms x y z real T = 2*x^2 + k*y^2 + 6*k*x*y How can I find the matrix B such that T = [x y] * B * [x y]' Thanks for your help.
0
votes
0answers
356 views

??? Attempt to reference field of non-structure array. Error

So far from what I have read this error can be caused by confusing or redundant naming within the program but I don't think that is the issue here since everything is declared clearly. From what I can ...

1 2