| Hosted by CoCalc | Download
Kernel: Python 2

Sympy - Symbolic algebra in Python

J.R. Johansson (jrjohansson at gmail.com)

The latest version of this IPython notebook lecture is available at http://github.com/jrjohansson/scientific-python-lectures.

The other notebooks in this lecture series are indexed at http://jrjohansson.github.io.

%matplotlib inline import matplotlib.pyplot as plt

Introduction

There are two notable Computer Algebra Systems (CAS) for Python:

  • SymPy - A python module that can be used in any Python program, or in an IPython session, that provides powerful CAS features.

  • Sage - Sage is a full-featured and very powerful CAS enviroment that aims to provide an open source system that competes with Mathematica and Maple. Sage is not a regular Python module, but rather a CAS environment that uses Python as its programming language.

Sage is in some aspects more powerful than SymPy, but both offer very comprehensive CAS functionality. The advantage of SymPy is that it is a regular Python module and integrates well with the IPython notebook.

In this lecture we will therefore look at how to use SymPy with IPython notebooks. If you are interested in an open source CAS environment I also recommend to read more about Sage.

To get started using SymPy in a Python program or notebook, import the module sympy:

from sympy import *

To get nice-looking LaTeX\LaTeX formatted output run:

init_printing() # or with older versions of sympy/ipython, load the IPython extension #%load_ext sympy.interactive.ipythonprinting # or #%load_ext sympyprinting

Symbolic variables

In SymPy we need to create symbols for the variables we want to work with. We can create a new symbol using the Symbol class:

x = Symbol('x')
(pi + x)**2
(x+π)2\left(x + \pi\right)^{2}
# alternative way of defining symbols a, b, c = symbols("a, b, c")
type(a)
sympy.core.symbol.Symbol

We can add assumptions to symbols when we create them:

x = Symbol('x', real=True)
x.is_imaginary
False
x = Symbol('x', positive=True)
x > 0
True\mathrm{True}

Complex numbers

The imaginary unit is denoted I in Sympy.

1+1*I
1+i1 + i
I**2
1-1
(x * I + 1)**2
(ix+1)2\left(i x + 1\right)^{2}

Rational numbers

There are three different numerical types in SymPy: Real, Rational, Integer:

r1 = Rational(4,5) r2 = Rational(5,4)
r1
45\frac{4}{5}
r1+r2
4120\frac{41}{20}
r1/r2
1625\frac{16}{25}

Numerical evaluation

SymPy uses a library for artitrary precision as numerical backend, and has predefined SymPy expressions for a number of mathematical constants, such as: pi, e, oo for infinity.

To evaluate an expression numerically we can use the evalf function (or N). It takes an argument n which specifies the number of significant digits.

pi.evalf(n=50)
3.14159265358979323846264338327950288419716939937513.1415926535897932384626433832795028841971693993751
y = (x + pi)**2
N(y, 5) # same as evalf
(x+3.1416)2\left(x + 3.1416\right)^{2}

When we numerically evaluate algebraic expressions we often want to substitute a symbol with a numerical value. In SymPy we do that using the subs function:

y.subs(x, 1.5)
(1.5+π)2\left(1.5 + \pi\right)^{2}
N(y.subs(x, 1.5))
21.544382361858721.5443823618587

The subs function can of course also be used to substitute Symbols and expressions:

y.subs(x, a+pi)
(a+2π)2\left(a + 2 \pi\right)^{2}

We can also combine numerical evolution of expressions with NumPy arrays:

import numpy
x_vec = numpy.arange(0, 10, 0.1)
y_vec = numpy.array([N(((x + pi)**2).subs(x, xx)) for xx in x_vec])
fig, ax = plt.subplots() ax.plot(x_vec, y_vec);
Image in a Jupyter notebook

However, this kind of numerical evolution can be very slow, and there is a much more efficient way to do it: Use the function lambdify to "compile" a Sympy expression into a function that is much more efficient to evaluate numerically:

f = lambdify([x], (x + pi)**2, 'numpy') # the first argument is a list of variables that # f will be a function of: in this case only x -> f(x)
y_vec = f(x_vec) # now we can directly pass a numpy array and f(x) is efficiently evaluated

The speedup when using "lambdified" functions instead of direct numerical evaluation can be significant, often several orders of magnitude. Even in this simple example we get a significant speed up:

%%timeit y_vec = numpy.array([N(((x + pi)**2).subs(x, xx)) for xx in x_vec])
10 loops, best of 3: 28.2 ms per loop
%%timeit y_vec = f(x_vec)
The slowest run took 8.86 times longer than the fastest. This could mean that an intermediate result is being cached 100000 loops, best of 3: 2.93 µs per loop

Algebraic manipulations

One of the main uses of an CAS is to perform algebraic manipulations of expressions. For example, we might want to expand a product, factor an expression, or simply an expression. The functions for doing these basic operations in SymPy are demonstrated in this section.

Expand and factor

The first steps in an algebraic manipulation

(x+1)*(x+2)*(x+3)
(x+1)(x+2)(x+3)\left(x + 1\right) \left(x + 2\right) \left(x + 3\right)
expand((x+1)*(x+2)*(x+3))
x3+6x2+11x+6x^{3} + 6 x^{2} + 11 x + 6

The expand function takes a number of keywords arguments which we can tell the functions what kind of expansions we want to have performed. For example, to expand trigonometric expressions, use the trig=True keyword argument:

sin(a+b)
sin(a+b)\sin{\left (a + b \right )}
expand(sin(a+b), trig=True)
sin(a)cos(b)+sin(b)cos(a)\sin{\left (a \right )} \cos{\left (b \right )} + \sin{\left (b \right )} \cos{\left (a \right )}

See help(expand) for a detailed explanation of the various types of expansions the expand functions can perform.

The opposite a product expansion is of course factoring. The factor an expression in SymPy use the factor function:

factor(x**3 + 6 * x**2 + 11*x + 6)
(x+1)(x+2)(x+3)\left(x + 1\right) \left(x + 2\right) \left(x + 3\right)

Simplify

The simplify tries to simplify an expression into a nice looking expression, using various techniques. More specific alternatives to the simplify functions also exists: trigsimp, powsimp, logcombine, etc.

The basic usages of these functions are as follows:

# simplify expands a product simplify((x+1)*(x+2)*(x+3))
(x+1)(x+2)(x+3)\left(x + 1\right) \left(x + 2\right) \left(x + 3\right)
# simplify uses trigonometric identities simplify(sin(a)**2 + cos(a)**2)
11
simplify(cos(x)/sin(x))
1tan(x)\frac{1}{\tan{\left (x \right )}}

apart and together

To manipulate symbolic expressions of fractions, we can use the apart and together functions:

f1 = 1/((a+1)*(a+2))
f1
1(a+1)(a+2)\frac{1}{\left(a + 1\right) \left(a + 2\right)}
apart(f1)
1a+2+1a+1- \frac{1}{a + 2} + \frac{1}{a + 1}
f2 = 1/(a+2) + 1/(a+3)
f2
1a+3+1a+2\frac{1}{a + 3} + \frac{1}{a + 2}
together(f2)
2a+5(a+2)(a+3)\frac{2 a + 5}{\left(a + 2\right) \left(a + 3\right)}

Simplify usually combines fractions but does not factor:

simplify(f2)
2a+5(a+2)(a+3)\frac{2 a + 5}{\left(a + 2\right) \left(a + 3\right)}

Calculus

In addition to algebraic manipulations, the other main use of CAS is to do calculus, like derivatives and integrals of algebraic expressions.

Differentiation

Differentiation is usually simple. Use the diff function. The first argument is the expression to take the derivative of, and the second argument is the symbol by which to take the derivative:

y
(x+π)2\left(x + \pi\right)^{2}
diff(y**2, x)
4(x+π)34 \left(x + \pi\right)^{3}

For higher order derivatives we can do:

diff(y**2, x, x)
12(x+π)212 \left(x + \pi\right)^{2}
diff(y**2, x, 2) # same as above
12(x+π)212 \left(x + \pi\right)^{2}

To calculate the derivative of a multivariate expression, we can do:

x, y, z = symbols("x,y,z")
f = sin(x*y) + cos(y*z)

d3fdxdy2\frac{d^3f}{dxdy^2}

diff(f, x, 1, y, 2)
x(xycos(xy)+2sin(xy))- x \left(x y \cos{\left (x y \right )} + 2 \sin{\left (x y \right )}\right)

Integration

Integration is done in a similar fashion:

f
sin(xy)+cos(yz)\sin{\left (x y \right )} + \cos{\left (y z \right )}
integrate(f, x)
xcos(yz)+{0fory=01ycos(xy)otherwisex \cos{\left (y z \right )} + \begin{cases} 0 & \text{for}\: y = 0 \\- \frac{1}{y} \cos{\left (x y \right )} & \text{otherwise} \end{cases}

By providing limits for the integration variable we can evaluate definite integrals:

integrate(f, (x, -1, 1))
2cos(yz)2 \cos{\left (y z \right )}

and also improper integrals

integrate(exp(-x**2), (x, -oo, oo))
π\sqrt{\pi}

Remember, oo is the SymPy notation for inifinity.

Sums and products

We can evaluate sums and products using the functions: 'Sum'

n = Symbol("n")
Sum(1/n**2, (n, 1, 10))
n=1101n2\sum_{n=1}^{10} \frac{1}{n^{2}}
Sum(1/n**2, (n,1, 10)).evalf()
1.549767731166541.54976773116654
Sum(1/n**2, (n, 1, oo)).evalf()
1.644934066848231.64493406684823

Products work much the same way:

Product(n, (n, 1, 10)) # 10!
n=110n\prod_{n=1}^{10} n

Limits

Limits can be evaluated using the limit function. For example,

limit(sin(x)/x, x, 0)
11

We can use 'limit' to check the result of derivation using the diff function:

f
sin(xy)+cos(yz)\sin{\left (x y \right )} + \cos{\left (y z \right )}
diff(f, x)
ycos(xy)y \cos{\left (x y \right )}

df(x,y)dx=f(x+h,y)f(x,y)h\displaystyle \frac{\mathrm{d}f(x,y)}{\mathrm{d}x} = \frac{f(x+h,y)-f(x,y)}{h}

h = Symbol("h")
limit((f.subs(x, x+h) - f)/h, h, 0)
ycos(xy)y \cos{\left (x y \right )}

OK!

We can change the direction from which we approach the limiting point using the dir keywork argument:

limit(1/x, x, 0, dir="+")
\infty
limit(1/x, x, 0, dir="-")
-\infty

Series

Series expansion is also one of the most useful features of a CAS. In SymPy we can perform a series expansion of an expression using the series function:

series(exp(x), x)
1+x+x22+x36+x424+x5120+O(x6)1 + x + \frac{x^{2}}{2} + \frac{x^{3}}{6} + \frac{x^{4}}{24} + \frac{x^{5}}{120} + \mathcal{O}\left(x^{6}\right)

By default it expands the expression around x=0x=0, but we can expand around any value of xx by explicitly include a value in the function call:

series(exp(x), x, 1)
e+e(x1)+e2(x1)2+e6(x1)3+e24(x1)4+e120(x1)5+O((x1)6;x1)e + e \left(x - 1\right) + \frac{e}{2} \left(x - 1\right)^{2} + \frac{e}{6} \left(x - 1\right)^{3} + \frac{e}{24} \left(x - 1\right)^{4} + \frac{e}{120} \left(x - 1\right)^{5} + \mathcal{O}\left(\left(x - 1\right)^{6}; x\rightarrow1\right)

And we can explicitly define to which order the series expansion should be carried out:

series(exp(x), x, 1, 10)
e+e(x1)+e2(x1)2+e6(x1)3+e24(x1)4+e120(x1)5+e720(x1)6+e5040(x1)7+e40320(x1)8+e362880(x1)9+O((x1)10;x1)e + e \left(x - 1\right) + \frac{e}{2} \left(x - 1\right)^{2} + \frac{e}{6} \left(x - 1\right)^{3} + \frac{e}{24} \left(x - 1\right)^{4} + \frac{e}{120} \left(x - 1\right)^{5} + \frac{e}{720} \left(x - 1\right)^{6} + \frac{e}{5040} \left(x - 1\right)^{7} + \frac{e}{40320} \left(x - 1\right)^{8} + \frac{e}{362880} \left(x - 1\right)^{9} + \mathcal{O}\left(\left(x - 1\right)^{10}; x\rightarrow1\right)

The series expansion includes the order of the approximation, which is very useful for keeping track of the order of validity when we do calculations with series expansions of different order:

s1 = cos(x).series(x, 0, 5) s1
1x22+x424+O(x5)1 - \frac{x^{2}}{2} + \frac{x^{4}}{24} + \mathcal{O}\left(x^{5}\right)
s2 = sin(x).series(x, 0, 2) s2
x+O(x2)x + \mathcal{O}\left(x^{2}\right)
expand(s1 * s2)
x+O(x2)x + \mathcal{O}\left(x^{2}\right)

If we want to get rid of the order information we can use the removeO method:

expand(s1.removeO() * s2.removeO())
x524x32+x\frac{x^{5}}{24} - \frac{x^{3}}{2} + x

But note that this is not the correct expansion of cos(x)sin(x)\cos(x)\sin(x) to 55th order:

(cos(x)*sin(x)).series(x, 0, 6)
x2x33+2x515+O(x6)x - \frac{2 x^{3}}{3} + \frac{2 x^{5}}{15} + \mathcal{O}\left(x^{6}\right)

Linear algebra

Matrices

Matrices are defined using the Matrix class:

m11, m12, m21, m22 = symbols("m11, m12, m21, m22") b1, b2 = symbols("b1, b2")
A = Matrix([[m11, m12],[m21, m22]]) A
[m11m12m21m22]\left[\begin{matrix}m_{11} & m_{12}\\m_{21} & m_{22}\end{matrix}\right]
b = Matrix([[b1], [b2]]) b
[b1b2]\left[\begin{matrix}b_{1}\\b_{2}\end{matrix}\right]

With Matrix class instances we can do the usual matrix algebra operations:

A**2
[m112+m12m21m11m12+m12m22m11m21+m21m22m12m21+m222]\left[\begin{matrix}m_{11}^{2} + m_{12} m_{21} & m_{11} m_{12} + m_{12} m_{22}\\m_{11} m_{21} + m_{21} m_{22} & m_{12} m_{21} + m_{22}^{2}\end{matrix}\right]
A * b
[b1m11+b2m12b1m21+b2m22]\left[\begin{matrix}b_{1} m_{11} + b_{2} m_{12}\\b_{1} m_{21} + b_{2} m_{22}\end{matrix}\right]

And calculate determinants and inverses, and the like:

A.det()
m11m22m12m21m_{11} m_{22} - m_{12} m_{21}
A.inv()
[1m11+m12m21m112(m22m12m21m11)m12m11(m22m12m21m11)m21m11(m22m12m21m11)1m22m12m21m11]\left[\begin{matrix}\frac{1}{m_{11}} + \frac{m_{12} m_{21}}{m_{11}^{2} \left(m_{22} - \frac{m_{12} m_{21}}{m_{11}}\right)} & - \frac{m_{12}}{m_{11} \left(m_{22} - \frac{m_{12} m_{21}}{m_{11}}\right)}\\- \frac{m_{21}}{m_{11} \left(m_{22} - \frac{m_{12} m_{21}}{m_{11}}\right)} & \frac{1}{m_{22} - \frac{m_{12} m_{21}}{m_{11}}}\end{matrix}\right]

Solving equations

For solving equations and systems of equations we can use the solve function:

solve(x**2 - 1, x)
[1,1]\left [ -1, \quad 1\right ]
solve(x**4 - x**2 - 1, x)
[i12+52,i12+52,12+52,12+52]\left [ - i \sqrt{- \frac{1}{2} + \frac{\sqrt{5}}{2}}, \quad i \sqrt{- \frac{1}{2} + \frac{\sqrt{5}}{2}}, \quad - \sqrt{\frac{1}{2} + \frac{\sqrt{5}}{2}}, \quad \sqrt{\frac{1}{2} + \frac{\sqrt{5}}{2}}\right ]

System of equations:

solve([x + y - 1, x - y - 1], [x,y])
{x:1,y:0}\left \{ x : 1, \quad y : 0\right \}

In terms of other symbolic expressions:

solve([x + y - a, x - y - c], [x,y])
{x:a2+c2,y:a2c2}\left \{ x : \frac{a}{2} + \frac{c}{2}, \quad y : \frac{a}{2} - \frac{c}{2}\right \}

Further reading

Versions

%reload_ext version_information %version_information numpy, matplotlib, sympy
SoftwareVersion
Python2.7.10 64bit [GCC 4.2.1 (Apple Inc. build 5577)]
IPython3.2.1
OSDarwin 14.1.0 x86_64 i386 64bit
numpy1.9.2
matplotlib1.4.3
sympy0.7.6
Sat Aug 15 11:37:37 2015 JST