Python is a common programing language that can be applied to a wide range of applications. In this database we will primarily be using Python with the library SymPy.
The easiest way to start using python is to use SymPy's Online Interpreter. This database will provide examples using the interpreter.
All examples in this database assume that the following commands have already been run in your python file or terminal session:
from sympy import *
x,y,z = symbols('x,y,z')