Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

This is just a test public directory

262 views
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

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)