January 2018
Beginner to intermediate
548 pages
12h 11m
English
In this recipe, we will give a brief introduction to symbolic computing with SymPy. We will see more advanced features of SymPy in the next recipes.
Anaconda should come with SymPy by default, but you can always install it with conda install sympy.
SymPy can be used from a Python module, or interactively in Jupyter/IPython. In the Notebook, all mathematical expressions are displayed with LaTeX, thanks to the MathJax JavaScript library.
Here is an introduction to SymPy:
>>> from sympy import *
init_printing()>>> var('x y')var() function creates ...Read now
Unlock full access