Tagged Questions
SymPy is an open source Python library for symbolic mathematics.
12
votes
4answers
431 views
How does sympy work? How does it interact with the interactive Python shell, and how does the interactive Python shell work?
What happens internally when I press Enter?
My motivation for asking, besides plain curiosity, is to figure out what happens when you
from sympy import *
and enter an expression. How does it go ...
7
votes
3answers
840 views
how to handle an asymptote/discontinuity with Matplotlib
Firstly - thanks again for all your help. Sorry not to have accepted the responses to my previous questions as I did not know how the system worked (thanks to Mark for pointing that out!). I have ...
6
votes
1answer
167 views
Symbolic manipulation over non-numeric types
I'm interested in a python library that permits symbolic manipulation where the symbols and can be unknowns of an arbitrary type.
This is the code that I want to write:
>>> myexpression = ...
6
votes
1answer
88 views
Choosing between different expression factorizations in SymPy
Say I have an expression as follows:
a*b*c + b*c + a*d
One could factorize it as:
b*(a*c + c) + (a*d)
or as
c*(a*b + b) + (a*d)
or as
a*d + b*c*(a + 1)
among other possibilities.
For ...
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
2answers
116 views
How to solve a pair of nonlinear equations using Python?
What's the (best) way to solve a pair of non linear equations using Python. (Numpy, Scipy or Sympy)
eg:
x+y^2 = 4
e^x+ xy = 3
A code snippet which solves the above pair will be great
5
votes
2answers
106 views
Using “from __future__ import division” in my program, but it isn't loaded with my program
I wrote the following program in Python 2 to do Newton's method computations for my math problem set, and while it works perfectly, for reasons unbeknownst to me, when I initially load it in ipython ...
5
votes
4answers
262 views
Testing equivalence of mathematical expressions in Python
I have got two strings in Python,
A m * B s / (A m + C m)
and
C m * B s / (C m + A m)
that are both equivalent functions of the unordered set (A, C) and the unordered set (B). m and s indicate ...
5
votes
5answers
1k views
Is it possible to plot implicit equations using Matplotlib?
many thanks again to people who have kindly offered help (especially to Mark for his outstanding response to my previous question).
I would like to plot implicit equations (of the form f(x,y)=g(x,y) ...
4
votes
1answer
198 views
Sympy won't evaluate 2x but will evaluate x*2
I'm using Sympy's sympify function to simplify 2 expressions so I can compare them for equality.
For example:
expr1 = sympify("(2 * x) + (x + 10)")
expr2 = sympify("(x + 10) + (x * 2)")
if expr1 == ...
4
votes
2answers
363 views
Is it possible for SymPy to render LaTeX for use in a GUI?
I am hoping to use PyQt to produce an application that will display an equation entered by the user. I had considered matplotlib, but this seems like overkill as I would only be using it to render the ...
4
votes
3answers
228 views
how to combine exponents? (x**a)**b => x**(a*b)?
how to simplify exponents in equations in sympy
from sympy import symbols
a,b,c,d,e,f=symbols('abcdef')
j=(a**b**5)**(b**10)
print j
(a**(b**5))**(b**10) #ans even after using expand simplify
# ...
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 ...
3
votes
1answer
68 views
Replacing subexpression by a symbol?
I have a 3x3 matrix, of which I compute inverse. The inverse can be written legibly only when some subexpressions are replaced by new symbols, because they appear multiple times. Can I have sympy try ...
3
votes
1answer
321 views
problem displaying sympy rendered svg in python
I have the following program which uses sympy and svgmath to render a user's algebraic expression. It nearly works but there are a few issues:
The svg is not actually produced until the program ...
3
votes
4answers
1k views
Python solve equation for one variable
I'm trying to solve an equation in python using scipy. I have a generated equation (something like function = y(8.0-(y**3.0)) which I use with scipy to create a new equation like this: eq = ...
3
votes
2answers
2k views
Porting matlab functions to scilab. How to use symbolic?
I'm porting some matlab functions to scilab. The cool thing is that there is a conversion toolbox that make things very easy.
The problem is I did not find the counter part to the syms function, and ...
2
votes
1answer
48 views
Projects using SymPy?
I'm currently learning to use SymPy. It seems interesting and useful, but I haven't had much luck finding out what it's used for in the "real-world".
What scientific/industrial/academic projects are ...
2
votes
3answers
67 views
Python- Sympy Issue with expression equality check when evaluate=False
In my project I have to use evaluate=false at the time when i am creating any Add or Mul objects. In this case I am facing a problem when I apply equality checks on these objects. The issue is because ...
2
votes
1answer
33 views
2
votes
3answers
162 views
How to calculate expression using sympy in python
I need a calculate below expression using sympy in python?
exp = '(a+b)*40-(c-a)/0.5'
In a=6, b=5, c=2 this case how to calculate expression using sympy in python? Please help me.
2
votes
3answers
186 views
Fastest rising factorial (Pochhammer function) in python
I need to compute the rising factorial of big numbers, the best I found until now is the rising factorial function from the sympy package sympy package, that is really nice, but I would still need ...
2
votes
1answer
116 views
SymPy substition with scalars doesn't work?
from sympy import *
x,y,s = symbols('xys')
z = (1 - 2*x*x)
w = (1 + 2*x*x)
q = 2*x*x*2*y*y
sub = {2*x*x: s}
print w.subs(sub)
print z.subs(sub)
print q
print q.subs(sub)
The output I get:
1 + ...
1
vote
2answers
83 views
Taking Symbol as input from script [sympy]
1.I'd like to define a function in a module that is interactive and can also take symbolic variables.
Let's say the function is
.
Then I want it to work like
>>> function()
number: 3
6
...
1
vote
1answer
68 views
Automatically populating matrix elements in SymPy
Is there a way to implicitly define the elements of a symbolic matrix in SymPy following a rule such as: symbol followed by subindices in the matrix (or pairs of numbers)
For example, I would like to ...
1
vote
3answers
555 views
Matplotlib contour isn't working
I'm trying to plot the batman equation. A solution in sympy or matplotlib will be great (sage isn't cool because I'm using windows). The problem is that if I comment out certain parts the part of the ...
1
vote
1answer
92 views
How to plot 2 variables on a plane
Let's say I have an equation:
x**2 + y**2 - 4 = 0
How can I see the circle using sympy, matplotplib or another python solution?
I know in sympy I can
from sympy import Plot
from sympy import ...
1
vote
1answer
70 views
Proportionality of parameter and mathematical expression
What is the best way to check if a parameter increase in a mathematical expression increases or decreases the expression as a whole (in Python, preferably SymPy)?
Assumptions: all parameters are ...
1
vote
1answer
192 views
error producing SVG from sympy / svgmath
I am trying to render algebra as an SVG using sympy and svgmath. I have the file 'svgmath.xml' in the root directory. Unfortunately I get: 'ImportError: No module named libxml2'. I'm not sure of the ...
1
vote
1answer
315 views
render latex / mathml with PySide
I have a small program that renders a typed equation on the fly using SymPy's 'pretty-printing' facility. This works fine but doesn't look very professional. As SymPy will produce latex or mml I was ...
1
vote
1answer
314 views
Python (sympy) TypeError: cannot concatenate 'str' and 'Add' objects
I'm trying to use an equation that I've generated using sympy.Eq(func, var) in a lambda. It seems to be returning a list of 'Add' objects, which I'm not sure how to use. I tried typecasting to astr ...
1
vote
2answers
489 views
Inverse of a matrix in SymPy?
I was wondering how to create a matrix and compute its inverse using sympy in Python?
For example, for this symbolic matrix
$$
\Sigma = \begin{pmatrix} \sigma_x^2 & \rho \sigma_x \sigma_y \ \rho ...
1
vote
2answers
188 views
Trying to produce monospaced output in pyqt browser
I have modified a short piece of pyqt code to produce real-time rendering of a user's expression. I have used sympy's pretty-printing function for this, however the output does not appear correctly as ...
1
vote
1answer
225 views
Python: How to export Sympy image to png? [closed]
Python: How to export Sympy image to png?
Who has any idea with this?
1
vote
1answer
927 views
How to format contour lines from Matplotlib
I am working on using Matplotlib to produce plots of implicit equations (eg. y^x=x^y). With many thanks to the help I have already received I have got quite far with it. I have used a contour line to ...
1
vote
2answers
259 views
Basics of SymPy
I am just starting to play with SymPy and I am a bit surprised by some of its behavior, for instance this is not the results I would expect:
>>> import sympy as s
>>> (-1)**s.I == ...
0
votes
1answer
51 views
sympy — can't make nsolve method work
i did this code:
from scitools.std import *
from sympy import *
x=Symbol('x')
#Integral function
#def f(x): --> I also tried this
# return exp(-x**2)
f=exp(-x**2)
...
0
votes
1answer
70 views
taking symbol in sum [sympy]
For example, I'd like to solve
Here's what I tried:
from sympy import var, solve
x = var('x')
f = lambda N: sum( n**2 for n in range(1,N+1) )
f(x)
# output:
Traceback (most recent call last):
...
0
votes
2answers
140 views
SymPy automatically processes expressions
I have been using SymPy to convert expressions into latex (to then be rendered by Matplotlib). e.g.
from sympy import latex, sympify
from sympy.abc import x
str = '2*x + 3*x'
TeX = ...
0
votes
1answer
268 views
how to assign new values to variables in predefined equation?
for predefined equations,assigning new values to variables do not changes value of equation.
how can i assign new values to variables so that i will get appropriate value of equation and not the ...
0
votes
3answers
549 views
SymPy: How to return an expression in terms of other expression(s)?
I'm fairly new to SymPy and have what might be a basic question. Or I might simply be misinterpreting how SymPy is supposed to be used.
Is there a way to create an expression that is not represented ...
0
votes
4answers
230 views
computer algebra soft to minimize the number of operations in a set of polynomials
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 common terms in several ...