Commit 68f601c9 authored by whzecomjm's avatar whzecomjm
Browse files

add sympy

parent 6da2b406
Loading
Loading
Loading
Loading

Sympy.ipynb

0 → 100644
+17 −0
Original line number Diff line number Diff line
%% Cell type:code id: tags:

``` python
from sympy import *
x = symbols ('x')
f = symbols('f', cls=Function)
dsolve(f(x).diff(x)- cos(f(x)), f(x))
```

%% Output

    [Eq(f(x), pi - asin(1/tanh(C1 + x))), Eq(f(x), asin(1/tanh(C1 + x)))]

%% Cell type:code id: tags:

``` python
```