Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 566
Image: ubuntu2004
Kernel: SageMath 9.2
#Math Operations - Comment Line 3+5
8
3/7
3/7
3.0/7
0.428571428571429
#Variables - storing values a = 100
b = 10
c = a + b
c
110
a
100
A = 10 A
10
#Built-In Functions abs(-4)
4
sqrt(3.0)
1.73205080756888
sin(pi/2)
1
print("hello world")
hello world
#Plotting math Functions #plot(function, (x,lower domain, upper domain), color = "XXX", axes_labels = ["x-axis label", "y-axis label"]) plot(x^2, (x,0,5), color = "red", axes_labels = ["ayye", "oooh"])
Image in a Jupyter notebook