CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

| Download

.....

Views: 15
Image: ubuntu2004
# plotting the graph of ax a=5 f(x)=a*x plot(f,x,-6,6)
# plotting Greatest integer function g(x)=floor(x) plot(g,x,-6,6)
plot(floor(x),(x,-6,6), exclude=[-6..6])
#plotting sqrt(ax+b) a=6 b=9 plot(sqrt(a*x+b), (x,-1.5,6))
a=1 b=3 c=7 f(x)=c+abs(a*x+b) plot(f)
a=1 b=3 c=7 f(x)=c-abs(a*x+b) plot(f)
plot(sin(1/x))
plot(x*sin(1/x),(x,-0.1,0.1))
plot(x*sin(1/x),(x,-0.01,0.01))
plot(abs(x))
f(x)= abs(x)/x plot(f,(x,-6,6))
a=2 b=6 f(x)= e^(a*x+b) plot(f)
plot(e^(1/x))
a=7 b=4 f(x)=log(a*x+b) plot(f,(x,-0.5,10))
a=3 b=5 plot(1/(a*x+b))
a=4 b=7 H=plot(sin(a*x+b),color="red") G=plot(cos(a*x+b),color="green") I=plot(abs(cos(a*x+b)), color="yellow", thickness=8) J=plot(abs(sin(a*x+b)), color="aqua",thickness=15) J+I+H+G