In [6]:
import numpy as np
from sympy import *
import matplotlib.pyplot as plt
%matplotlib inline
x = symbols('x')
f = lambda x: sqrt(1-x**2)
fig = plt.gcf()
fig.set_size_inches(12,6)
xs = np.linspace(-1,1,200)
ys = np.array([f(x) for x in xs],dtype='float')
plt.grid(True)
plt.xlabel('X')
plt.ylabel('Y')
plt.plot(xs,ys,color='#004000')
Out[6]:
[<matplotlib.lines.Line2D at 0x43f0e90>]