SymPy Tutorial

Python Installation

apt-get install python3

Sympy Installation

pip install sympy

Importing SymPy

from sympy import symbols, Symbol, init_printing

Sympy Symbols vs Variables

A SymPy variable acts the same way as variable in anyother programming language with the exception that by default it points to itself.

Normally if variable is …

more ...