symbolic-computation Questions
3
Solved
I aim to write a multidimensional Taylor approximation using sympy, which
uses as many builtin code as possible,
computes the truncated Taylor approximation of a given function of two variables
r...
Ailin asked 4/4, 2014 at 8:13
3
Solved
I need to do analytical integration in C++. For example, I should integrate expressions like this: exp[I(x-y)], I is an imaginary number.
How can I do this in C++?
I tried GiNaC but it can just i...
Selemas asked 4/7, 2012 at 8:43
2
I have been trying out a couple computer algebra libraries for C++ to use with a vector calculus course I am taking. I am having trouble with nonlinear equations in GiNaC and in SymbolicC++ it actu...
Bibliomancy asked 19/8, 2014 at 3:31
2
How do you program the following algorithm?
Imagine a list of "facts" like this, where the letters represent variables bound to numeric values:
x = 1
y = 2
z = 3
a = 1
b = 2
c = 3
a = x
b = z
c =...
Blub asked 13/9, 2014 at 22:57
2
Solved
I have the following expression:
from sympy import pi, sin, cos, var, simplify
var('j,u,v,w,vt,wt,a2,t,phi')
u0 = v*a2*sin(pi*j/2 + pi*j*t*phi**(-1)/2) + pi*vt*a2*cos(pi*j/2 + pi*j*t*phi**(-1)/2)...
Landeros asked 2/8, 2013 at 7:27
2
I have an equation like:
R₂⋅V₁ + R₃⋅V₁ - R₃⋅V₂
i₁ = ─────────────────────
R₁⋅R₂ + R₁⋅R₃ + R₂⋅R₃
defined and I'd like to split it into factors that include only single variable - in this case V...
Lora asked 10/3, 2012 at 18:33
6
Solved
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 p...
Templar asked 8/12, 2008 at 7:25
1
Solved
In sympy I have an integral which returns a Piecewise object, e.g.
In [2]: from sympy.abc import x,y,z
In [3]: test = exp(-x**2/z**2)
In [4]: itest = integrate(test,(x,0,oo))
In [5]: itest
Out[...
Geochronology asked 14/3, 2013 at 21:47
2
Solved
The Symbolism library overloads arithmetic operators. Although it's written in C# I can use it from F#:
open Symbolism
let x = new Symbol("x")
let y = new Symbol("y")
let z = new Symbol("z")
pri...
Edythedythe asked 11/3, 2013 at 16:8
1
Solved
The DO dialect uses series of category PAREN! for precedence, and will usually boil away the underlying parentheses structure prior to invoking a function.
However, it used to be possible in Rebol...
Marcelina asked 26/1, 2013 at 0:49
1
Solved
I'm trying to create a program, that uses sympy to take a set of variables and evaluate a symbolic logic expression over the domain of those variables. The problem is that I cannot get python to ev...
Edwin asked 17/9, 2012 at 15:45
1
© 2022 - 2024 — McMap. All rights reserved.