Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

This is just a test public directory

Views: 200
Kernel: SageMath (stable)

Sample markdown cell

# Sample Code Cell import pandas as pd df = pd.DataFrame({"Name": ['John', 'Jenniffer', 'Ted'], "State": ['NC', 'NC', 'CA']}) df
Name State
0 John NC
1 Jenniffer NC
2 Ted CA

Do a little math with sagemath

Given a polynomial expression, for example...

exp = (3 * x^2 / (x^9 - 6 *x)) show(exp)

... we can differentiate it (find the derivative) easily using sagemath

exp_prime = diff(exp) show(exp_prime)