SymPy is an open source Python library for symbolic mathematics.
-1
votes
0answers
22 views
Python: Using sympy.simplify with cplot (avoiding eval)
I'd like to avoid using eval() and replace it with sympy.simplify() like this
from cmath import *
import sympy
from mpmath import arg, cplot
fhandle = "exp(sin(z))"
# Draws a colorful plot, but is ...
0
votes
1answer
27 views
sympy sequential substitution python
I'm trying to get sympy to substitute a symbol for two other symbols on the basis of iteration.
At the moment I have some code that does an expansion of some brackets and stores each iteration:
for ...
1
vote
2answers
18 views
Simplify conditional integrals in SymPy
In SymPy, if I integrate a general Gaussian by:
x = Symbol("x", real=True)
y = Symbol("y", real=True)
s = Symbol("s", real=True)
gaussian = exp(-((x-y)**2)/(2*(s**2)))
nfactor = ...
-4
votes
0answers
47 views
Position of a SymPy symbol [closed]
I'm wondering how I would find the position of a symbol in a matrix of symbols created using sympy, and then access that single symbol for manipulation, assignment etc.
E.g. if I had contained in a ...
0
votes
1answer
57 views
Appending list elements to a symarray
I'm trying add some numpy arrays into a single array, my code looks like:
m1=symarray('', 2)
for i in range(0,len(countersum)):
if countersum[i]==1:
m1.append(gmcounter[i])
This give error
...
0
votes
1answer
39 views
access individual elements from a list of pow and symbol sympy python
I'm trying to access individual elements in a long list of symbols, and one of pow types generated using Sympy, here is how the come out in the console:
x00
x01
x10
x11
x00
x10
x20
x00
x01
x02
x03
...
0
votes
1answer
54 views
Declare list elements as symbols sympy python
I've got a function that returns some list elements under some conditions :
m1= [[1, 0], [0, 1]]
m2= [[2, 0], [0, 2]]
And what I would like to do is declare m1 and m2 as symbols containing ...
4
votes
2answers
41 views
Using constants wisely in SymPy
I tried the following on SymPy Live
b,c,t = symbols('b c t')
g = 1/(1+exp(c*(b-t)))
integrate(g,t)
The result is Integral(1/(exp(c*(b - t)) + 1), t) which I understand as "could not handle this".
...
2
votes
0answers
34 views
Python, SymPy, integration of big trigonometric functions
In SymPy, what is the recommended way to integrate a big trigonometric functions like this oney shown below? The numerical integration gives -27151.225.
from sympy import pi, sin, cos
from sympy.abc ...
1
vote
2answers
42 views
Setting Assumptions on Variables in Sympy Relative to Other Variables
I know that sympy in python can set assumptions on variables, such as x is positive, negative, real, complex, etc. I was wondering if sympy can set assumptions on variables relative to other ...
2
votes
2answers
50 views
Long expression crashes SymPy
I'm using 64-bit Python 3.3.1, pylab and 32GB system RAM. This function:
def sqrt2Expansion(limit):
x = Symbol('x')
term = 1+1/x
for _ in range(limit):
term = term.subs({x: ...
1
vote
1answer
58 views
Python memory error in sympy.simplify
Using 64-bit Python 3.3.1 and 32GB RAM and this function to generate target expression 1+1/(2+1/(2+1/...)):
def sqrt2Expansion(limit):
term = "1+1/2"
for _ in range(limit):
i = ...
2
votes
1answer
104 views
Numerical Integration over a Matrix of Functions, SymPy and SciPy
From my SymPy output I have the matrix shown below, which I must integrate in 2D. Currently I am doing it element-wise as shown below. This method works but it gets too slow (for both ...
4
votes
2answers
154 views
Test if matrix is invertible over finite field
I would like to test if a particular type of random matrix is invertible over a finite field, in particular F_2. I can test if a matrix is invertible over the reals using the following simple code.
...
2
votes
1answer
43 views
Avoid sorting args in Python module Sympy
I am currently developing a differential operator for sympy that can be placed in matricial form.
In this case the order of the args list when creating a Mul object is very important to guarantee that ...
1
vote
1answer
41 views
Sympy plot: pass in list of symbolic expressions
I have an unknown amount of symbolic expressions created with sympy.
For example:
f1 = x
f2 = exp(x)
...
fn = ...
Since it's an unknown amount, I cannot simply do: plot(f1, f2, f3), so I would ...
2
votes
0answers
109 views
IPython Notebook Sympy Math Rendering
I have just started with using IPython Notebook and have been fascinated by its power. I have been using a few examples available on the net to get started with. I was following this tutorial: ...
2
votes
1answer
91 views
Sympy Solve( ) Gives Incorrect Answer
I'm using sympy to work through some mathematical models, and I found that for some reason sympy.solve( ) gives me the wrong answers.
import sympy as sm
p, WAA, WAa, Waa = sm.symbols( 'p, WAA, WAa, ...
0
votes
1answer
50 views
Sympy library solve to an unknown variable
I have derived some equations with some variables. I want to solve to an unknown variable. I am using Sympy. My code is as follows:
import sympy as syp
import math as m
#this is the unknown variable ...
0
votes
1answer
36 views
ImportError with Sympy
I'm trying to import the module sympy.physics.quantum.sho1d, but every time it results in
ImportError: No module named sympy.physics.quantum.sho1d
Is it because it isn't described in the __init__ ...
0
votes
1answer
156 views
Loading sympy in Enthought Canopy causes kernel to die
I just installed Enthought Canopy and it's great but I'm having trouble using simpy in the IPython notebook implementation.
Creating a new notebook in Canopy and then using either
%load_ext ...
0
votes
1answer
33 views
How made Sympy Polygon with many vertex in a list?
I want use the sympy python for do a Polygon with n faces and calculate all parameters.
The easy form is
from sympy import Polygon
p1, p2, p3, p4, p5 = [(0, 0), (1, 0), (5, 1), (0, 1), (3, 0)]
...
1
vote
1answer
61 views
How to install Sympy on Python 3.3 in Windows 7?
I have already check Sympy.org website and the following link. But I didn't find any executable file to install the Sympy on Python 3.3.
http://code.google.com/p/sympy/downloads/list
6
votes
1answer
104 views
How to parse and simplify a string like '3cm/µs² + 4e-4 sqmiles/km/h**2' treating physical units correctly?
I'd like to split a string like 3cm/µs² + 4e-4 sqmiles/km/h**2 into its SI unit (in this case, m/s**2) and its magnitude (in multiples of that unit).
Since sympy provides both a parsing module and ...
0
votes
1answer
23 views
class sympy.core.add.Add convert to float
This part of program on Python uses SymPy library.
As a result it's produces a value in sympy.core.add.Add class which is not capable with other parts of the program.
from sympy import *
x = ...
1
vote
2answers
66 views
Python: interpret expression as a text and not calculate it
After a working with SyMpy library I receive an expression (in yprime variable).
from sympy import *
x = Symbol('x')
y = 1 - (0.1 * coeff1) / (x + 2) - sin(x) * (2 * x + coeff1)
yprime = y.diff(x)
...
1
vote
2answers
87 views
Sympy: generate figure with multiple subplots
I'm using sympy and matplotlib, and wish to generate a figure with multiple plots, similarly to how it's done using pylab.subplot when using numpy. This should be trivial, or so I thought...
To my ...
1
vote
0answers
80 views
Finding all roots of a complex polynomial with SymPy
I'm trying to symbolically solve a polynomial with complex numbers and their conjugates with SymPy. I think I've come a long way, but solve does not give me any solutions although the polynomial is ...
3
votes
1answer
86 views
Convert a LaTex formula to a type that can be used inside SymPy
I want to parse LaTeX formulas and directly use them as SymPy expressions. In other words, what I need is something similar to sympify:
from sympy import sympify
f = sympify('x^2 + sin(y) + 1/2')
...
5
votes
2answers
112 views
How do I get numpy.einsum to play well with sympy?
Ok, so I have several, multi-dimensional numpy arrays of sympy objects (expressions). For example:
A = array([[1.0*cos(z0)**2 + 1.0, 1.0*cos(z0)],
[1.0*cos(z0), 1.00000000000000]], ...
1
vote
0answers
140 views
Find minimal polynomials
I'm trying to get all minimal polynomials by degree, but could not understand what is the algorithm of receiving these polynomials.
For example,
my_function(5)
Output should be:
M1(x) = x^5 + x^2 ...
2
votes
1answer
151 views
How to solve two equations numerical by Python?
Maybe it´s the easiest way to show you the code and try to explain it later:
sigma_aussen = 7.1
roh_aussen = 38
lambda_schreib = 532*10**-9
lambda_rek = 432*10**-9
sigma_aussen=radians(sigma_aussen)
...
-1
votes
1answer
105 views
Sympy in iPython notebook: printing an entire function
Currently when printing equations in SymPy it just prints the 'right hand side' of the equation, and does not include the 'left hand side'. E.g.
>>> a = b*d
>>> a
b*d
Whereas ...
0
votes
1answer
26 views
Sympy rewrite expression to template
If I have an expression such as c1 / (c2*s + c3) I would like sympy to transform the expression to a template looking like C1 / (s + C2) such that C1 = c1/c2 and C2 = c3/c2.
Is there an easy way to ...
1
vote
2answers
119 views
Evaluating a function at a point in SymPy
I'm trying to code various optimisation methods, as a way of revising. I want to be able to use SymPy to evaluate a function with an arbitrary number of variables at a given point, where the ...
2
votes
4answers
201 views
Differential Operator usable in Matrix form, in Python module Sympy
We need two matrices of differential operators [B] and [C] such as:
B = sympy.Matrix([[ D(x), D(y) ],
[ D(y), D(x) ]])
C = sympy.Matrix([[ D(x), D(y) ]])
ans = B * ...
2
votes
1answer
107 views
Computing pseudo inverse of a matrix using sympy
How should I compute the pseudo-inverse of a matrix using sympy (not using numpy, because the matrix has symbolic constants and I want the inverse also in symbolic). The normal inv() does not work for ...
0
votes
1answer
19 views
Extract piecewise equation piece in sympy
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[5]: ...
2
votes
2answers
93 views
input a symbolic function in a python code
I was just wondering if there is a method to input a symbolic function in a python code?
like in my code I have:
from sympy import *
import numpy as np
import math
myfunction = input("enter your ...
0
votes
0answers
81 views
differentiation of polynomial in list in python
I have a question regarding to the differentiation, in my coding I define p as a list of polynomial of x, however, when I tried to differentiate it with x, it does work, why is that so? thank you.
...
0
votes
2answers
44 views
Ignore imaginary roots in sympy
I'm using sympy to solve a polynomial:
x = Symbol('x')
y = solve(int(row["scaleA"])*x**3 + int(row["scaleB"])*x**2 + int(row["scaleC"])*x + int(row["scaleD"]), x)
y is a list of possible solutions. ...
0
votes
0answers
58 views
Sympy.latex function with multiline
My Problem is concerning the sympy function latex(expression).
The Problem is that the formulas produced are far too long, so I need the multiline framework with
\begin{multiline}
(...)
...
1
vote
2answers
81 views
Factoring polys in sympy
I'm doing a very simple probability calculations of getting subset of X, Y, Z from set of A-Z (with corresponding probabilities x, y, z).
And because of very heavy formulas, in order to handle them, ...
-2
votes
1answer
93 views
How to execute the python code faster? [closed]
from sympy import *
tau=Symbol('tau')
t=Symbol('t')
alpha=Symbol('alpha')
integrate((t-tau)**(alpha-1)*tau,(tau,0,t))
i am trying execute the above code...it is giving me answer but taking too much ...
1
vote
3answers
103 views
Importing a variable in Python?
I'm using sympy to write superscript using the pretty_print command. This needs to be imported along with some variables(algebra(x,y,etc.)) in order for the pretty_print command to work. If you dont ...
1
vote
1answer
95 views
SymPy - apply limits to an indefinite integral
In SymPy, is it possible to apply limits to an indefinite integral and evaluate it?
import sympy
from sympy.abc import theta
y = sympy.sin(theta)
Y_indef = sympy.Integral(y)
Y_def = ...
0
votes
1answer
160 views
Equation solving in Python
I am trying to solve equations such as the following for x:
Here the alpha's and K are given, and N will be upwards of 1,000. Is there a way to specify the LHS given an np.array for the alpha's ...
0
votes
0answers
119 views
Distance to the closest “wall”
For a robotics project, I need to calculate - using Python - the distance between my car (represented by a point + a heading angle) and the wall it's facing, as our (real) car will make the same ...
3
votes
1answer
97 views
Prevent Sympy from rearranging the equation
Perhaps im overlooking the obvious but how do you prevent sympy from rearranging equations?
Im using Sympy in the iPython notebook so i can easily copy-paste the Latex code to Lyx, but i want the ...
3
votes
3answers
94 views
Is there a library for programmatic manipulation of Big-O complexities?
I'm interested in programming languages that can reason about their own time complexity. To this end, it would be quite useful to have some way of representing time complexity programmatically, which ...