We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b56a447 commit 31ed141Copy full SHA for 31ed141
Basics/01.py
@@ -0,0 +1,9 @@
1
+import sympy
2
+from sympy import oo
3
+import numpy as np
4
+
5
+x = sympy.Symbol('x')
6
+f = sympy.sin(x)/x
7
+r = sympy.limit(f, x,oo)
8
9
+print(r)
Basics/02.py
+x = sympy.Symbol("x")
+f = (x**2 - 1) / (x - 1)
+r =sympy.limit(f, x, 1)
0 commit comments