Guest User

Untitled

a guest
Feb 3rd, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. from sympy import Symbol, integrate, sqrt
  2.  
  3. x = Symbol('x')
  4. I = integrate(1/2*sqrt(4-x**2),(x,-2,2))
  5. print(I)
Add Comment
Please, Sign In to add comment