Contact Us!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Browse publicly shared documents on CoCalc

Star items to easily find them in your list.

Page 1  Previous  Next

PathDescriptionLast ModifiedStarsViews
sagelets/test.ipynb4/27/2025, 12:43:17 AM394
YouTube/Beamer Template.tex4/26/2025, 2:57:42 AM4
YouTube/How to Install …books Using CoCalc.ipynb4/26/2025, 12:30:12 AM27
ProbM.py4/25/2025, 6:34:14 PM126
2021-01-17-124214.sagews

Algebra to solve logic puzzles Convert boolean polynomials to probability

4/25/2025, 6:33:34 PM211
MARKETING/Conference Posts/Startup Grind 2024.md4/25/2025, 5:38:16 PM11
latex-tests4/22/2025, 4:59:38 PM31430
2025-04-22-file-1.ipynb4/22/2025, 4:49:26 AM8
YouTube/Log-Log.ipynb

YouTube Tutorial: https://youtu.be/P92boGjCnPA

What You'll Learn: Discover how to create a log-log plot using SageMath within a Jupyter notebook on the CoCalc platform. Learn to visualize functions with both standard and logarithmic scales.

Transcription:

Hello everyone, my name is Blaec Bejarano. Today, I'll show you how to create a log-log plot using SageMath in a Jupyter notebook within the CoCalc platform.

The log-log plot displays both the x and y axes on logarithmic scales, which can help visualize certain characteristics of the function.

4/19/2025, 6:05:56 AM13
YouTube/How to Make Gra…upyter with CoCalc.ipynb

YouTube Tutorial: https://youtu.be/t7x3iUJDJyc

Transcription: Hello everyone, my name is Blaec Bejarano. Today, I'll demonstrate how to plot the gradient of a function alongside its contour plot using SageMath in a Jupyter notebook on CoCalc. This example is inspired by Gregory Bard's textbook "Sage for Undergraduates" and attributed to Augustin O'Keefe.

  1. Define the multivariate function f(x,y)=cos(x)2sin(y)f(x,y) = \cos(x) - 2\sin(y).

The gradient of this function can be written in angle bracket notation as:

f(x,y)=fx,fy=sin(x),2cos(y)\nabla f(x,y) = \left\langle \frac{\partial f}{\partial x}, \frac{\partial f}{\partial y} \right\rangle = \left\langle -\sin(x), -2\cos(y) \right\rangle
  1. In the Jupyter notebook, define the function and compute its gradient: f(x,y)=cos(x)-2*sin(y) gradient = derivative(f)

  2. Create the vector field plot of the gradient: plot1 = plot_vector_field(gradient, (x, -5, 5), (y, -5, 5))

  3. Create the contour plot of the function: plot2 = contour_plot(f, (x, -5, 5), (y, -5, 5), fill=True)

  4. Display both plots together: show(plot1 + plot2)

This tutorial showcases CoCalc's ability to perform mathematical computations and visualizations seamlessly within a collaborative environment. Please like, subscribe, and follow for more content. See you next time. Thanks again!

#SageMath #Jupyter #Gradient #ContourPlot #CoCalc

4/19/2025, 5:09:38 AM125
YouTube/Gridlines.ipynb

YouTube Tutorial: https://youtu.be/TRbWjocJ2ZI

What You'll Learn: How to create visually appealing plots with grid lines using SageMath in a Jupyter notebook on the CoCalc platform. Learn to specify functions, define domains, and customize your plots with a few simple lines of code.

Transcription:

Hello everyone, my name is Blaec Bejarano. Today, I'll show you how to create plots with grid lines using SageMath in a Jupyter notebook on the CoCalc platform.

  1. Log in to your account at cocalc.com and open your desired project.

  2. Create a new Jupyter notebook by clicking on the "+New" button and selecting "Jupyter Notebook". Name your notebook and choose the SageMath kernel.

  3. In a code cell, use the plot() function to define your desired function. In this example, we'll plot x5x^5:

    • Specify the function you want to plot, e.g., x^5.

    • Define the domain using tuple notation (x, start, end), e.g., (x, 1, 16).

    • Add the gridlines parameter and set it to 'minor' to display grid lines on the plot.

  4. Click the run button or press Shift+Enter to execute the code cell and view your plot with grid lines.

4/19/2025, 4:58:43 AM14
UFSC/Petróleo/Propagacao-incerteza.ipynb

Propagação de incertezas

4/15/2025, 7:28:41 PM84
Rotating_Hayward_metric_curvature.ipynb4/15/2025, 11:33:37 AM237
Stable_circular_orbits.ipynb4/15/2025, 11:32:17 AM173
UFSC/Ciencias de dados/Lista-2

Lista-2

4/14/2025, 7:16:33 PM105
O número perdido e o número escondido.sagews

Palestra de divulgação de matemática

4/13/2025, 5:45:44 PM138
Boolean-Cayley-graphs4/10/2025, 11:06:52 PM20904
Boolean-Cayley-graphs/sage-code4/10/2025, 11:06:52 PM9185
MARKETING/Conference Posts/AI STATS 2024.md

CoCalc at AISTATS & ICLR: Connect with us at two leading machine learning conferences! Discover how CoCalc empowers AI and deep learning researchers with collaborative tools, scalable GPUs, and a unified environment for Python, TensorFlow, PyTorch, and more.

4/8/2025, 10:49:09 PM8
MARKETING/Conference Po… on Optimization 2023.md

SIAM Optimization 2023 Insights: CoCalc shares highlights from the SIAM OP23 conference in Seattle, including real-world applications of optimization at Amazon, smarter algorithms, and unifying theories. See how CoCalc supports this cutting-edge work.

4/8/2025, 10:46:26 PM5
MARKETING/Conference Po…ynamical Systems 2023.md

CoCalc at SIAM Dynamical Systems 2023: Read our reflections on the SIAM DS23 conference in Portland, highlighting key presentations on dynamical systems research relevant to computational science. Learn how CoCalc supports cutting-edge work in areas like collective motion, stability analysis, and more.

4/8/2025, 10:45:27 PM4
Assignment 01/A01.ipynb4/3/2025, 6:26:02 AM124
sage_worksheets

Worksheets related to Applied Discrete Structures

4/2/2025, 6:31:07 PM16745
Math 208 Interactive Notebooks

Math 208 Interactive Notebooks © 2024 by Soham Bhosale, Sara Billey, Herman Chau, Zihan Chen, Isaac Hartin Pasco, Jennifer Huang, Snigdha Mahankali, Clare Minerath, and Anna Willis is licensed under CC BY-ND 4.0

3/31/2025, 2:59:10 AM977
Creative Coding3/30/2025, 7:10:59 PM66
2025-03-25-folder-1/Project - 44043/25/2025, 9:11:49 AM22
assignment1/assignment1.ipynb3/24/2025, 9:07:50 AM25
He-Morvan/Conducti-Puits-Romains-Full.html3/14/2025, 4:17:57 PM55
2025-02-17-file-1/treball robotica.ipynb3/12/2025, 7:55:17 AM30
小橋連絡用.ipynb

test

3/12/2025, 1:26:41 AM288
aula8_SageMath.sagews3/11/2025, 7:07:30 PM192
Representación de funciones con SAGE.sagews3/11/2025, 12:43:24 PM222
ED0101 Conceptos Básicos.ipynb

Jupyter notebook ED0101 Conceptos Básicos.ipynb

3/10/2025, 11:02:04 PM164
Bronson Solved 16.5.ipynb

Jupyter notebook Bronson Solved 16.5.ipynb

3/10/2025, 10:48:04 PM33
trigonometry.sagews3/10/2025, 1:44:47 AM186
algorithm2.sagews3/10/2025, 1:44:07 AM127
algorithm cubic.sagews3/10/2025, 1:44:07 AM131
algorithm quartic explained.sagews3/10/2025, 1:44:07 AM140
algorithm4.sagews3/10/2025, 1:43:27 AM109
algorithm5.sagews3/10/2025, 1:43:27 AM98
algorithm3.sagews3/10/2025, 1:43:27 AM109
Algorithm6.sagews3/10/2025, 1:42:27 AM111
Promenne.sagews

Proměnné a jejich vyhodnocování v programu Sage

3/6/2025, 8:45:50 AM714
Demos/Notebooks/ipyleaflet example.ipynb3/5/2025, 9:50:50 PM42
Thesis: "Computational …ful Creation and Control

Excellence in Capstone Prize

3/5/2025, 6:37:08 PM183
ThinkingBeyond Activities

"Guiding Future STEM Leaders through Innovative Research Training" ~ thinkingbeyond.education

3/5/2025, 6:35:53 PM1187
Block Breaker/blockbreaker.ipynb

If you love fast-paced arcade games that challenge your reflexes, strategy, and problem-solving skills, then Block Breaker is the perfect game for you!

3/5/2025, 2:10:31 AM32
Get_Started/Jupyter_Not…_Yoda_Plot_Example.ipynb3/3/2025, 10:23:51 PM24
UCZESTNICY/Dawid Koryci…tput/tytul dokumentu.pdf2/27/2025, 7:08:16 PM68
Misc2/21/2025, 6:05:16 PM107
FP1/ proposal_AG.md2/21/2025, 2:44:57 AM10
Uvod.sagews

M2142 - zápisník pro první přednášku

2/20/2025, 1:42:56 PM476
Projects/Bifurcation Di…eigenbaum Constant.ipynb2/18/2025, 4:13:24 AM26
Week 10/Lab 10 - Bayesian.ipynb2/15/2025, 9:38:22 AM2110
Laboratorio de Aplicaci…3: Embarazos no deseados2/15/2025, 2:40:58 AM56
CourseDocuments/2025-02-14-file-1.slides2/14/2025, 7:27:16 PM13
REU 2024: Cubulated Holonomy

Research done and presented in relation to "Cubulated Holonomy", our chosen direction of research at the IU Bloomington 2024 REU. Mentor: Seppo Niemi Colvin Collaborator: Josue Molina

2/13/2025, 11:30:03 PM144
Demos/LaTeX/My LaTeX.pdf2/10/2025, 7:45:19 PM242
webpage/index.html2/9/2025, 4:36:40 PM1347
2025-02-08-file-2.zip2/8/2025, 7:42:43 AM14
Extra DQ 1.ipynb

Example showing two interpretations of Mx = b.

2/6/2025, 12:24:56 AM1645
Get_Started/Jupyter_Not…ipyleaflet_example.ipynb2/5/2025, 9:11:58 PM18
MA 2400 Discrete Mathem…Danny/Grace Hopper.ipynb1/31/2025, 1:48:41 PM45
No existe limite.sagews

Calculo II, grados TIC, Universidad de Alcalá

1/30/2025, 3:01:42 PM96
math 201-17FPublicShared.sagews1/26/2025, 11:11:58 PM214
LineareApproximation.ipynb

German notebook on linear approximation in order to evaluate usability of Jupyter notebooks in German HE Math education

1/23/2025, 11:22:36 PM939
SumsOfCubes

Example implementations of algorithms to search for representations of an integer as a sum of three cubes in the computer algebra systems Pari/GP, Magma, Oscar, and SageMath prepared as part of the PCMI/IAS summer program on Number Theory Informed by Computation.

1/22/2025, 4:56:59 PM1534
2x2770.ipynb1/22/2025, 2:02:25 AM604
2x1838.ipynb1/22/2025, 2:02:25 AM599
2x2770-2.ipynb1/22/2025, 2:02:24 AM432
2x1838-2.ipynb1/22/2025, 2:02:24 AM414
TheUltimateQuestion.ipynb

Life, the Universe, and Everything

1/22/2025, 2:02:24 AM8555
18.783 Norm Equation.ipynb1/14/2025, 9:18:38 PM72
Demos/Whiteboards/ieee_…le-2025-01-12-194311.pdf1/13/2025, 6:45:47 PM19
2017-01-10-TestFIle.ipynb

Jupyter notebook 2017-01-10-TestFIle.ipynb

1/9/2025, 4:20:32 PM18
2025-01-08-file-2.zip1/8/2025, 3:53:39 PM17
latex-separate-figure

compile a figure to a separate small PDF, crop and optimize that small PDF, and then include it in a larger doument

1/8/2025, 1:03:49 PM167
Chapter10-1-Sequences.ipynb1/2/2025, 9:59:59 AM375
FISICA-EXPERIMENTAL

Física Experimental IFC

1/1/2025, 1:15:01 AM11439
Chicken Wing Problem.ipynb12/27/2024, 3:41:08 AM273
2023-12-06-file-2/2023-…1/basketball stars.ipynb

doughmortician

12/23/2024, 2:48:12 AM96
demo.sagews

Polyhedral Omega Demo

12/23/2024, 12:18:29 AM410
Media/How-To/How to Copy a Course in CoCalc.md

How To Copy a Course in CoCalc.

To copy a course to a new project in CoCalc, follow these steps:

12/19/2024, 10:11:09 PM35
slope.ipynb

Slope

12/13/2024, 2:33:13 AM258
Demos/Whiteboards/neura…-2024-12-11-102554.ipynb12/13/2024, 2:09:06 AM45
TA Sandbox/Rika Sandbox/LAB 4 DEMO.ipynb12/12/2024, 2:54:08 AM238
Demos/LaTeX/My LaTeX.tex12/11/2024, 11:35:32 PM47
Demos/Whiteboards/plot_…-2024-12-09-090557.ipynb12/11/2024, 10:19:21 PM34
Zordano_forma_pavyzdys_1.sagews12/9/2024, 7:56:56 AM391
Zordano_matrica_pavyzdys_6.sagews12/9/2024, 7:52:51 AM107
Zordano_forma_pavyzdys_5.sagews12/9/2024, 7:50:51 AM145
Zordano_forma_pavyzdys_2.sagews12/9/2024, 7:48:51 AM339
share12/6/2024, 9:50:41 PM190
PeelingCouchTorrenceSphericalSymmetry.ipynb

Peeling at an infinity obtained from a generic spherically symmetric degenerate horizon through an extended Couch-Torrence inversion

12/5/2024, 3:49:42 PM101
Media/How to Manage Your CoCalc License.md

Effectively manage and adjust the CoCalc licenses applied to your academic and professional projects. This post offers a straightforward guide on navigating CoCalc's flexible licensing system, allowing users to tailor resources according to their evolving needs. Whether you're switching between projects or ensuring seamless collaboration, learn how CoCalc's intuitive tools can enhance your experience. Perfect for both new and seasoned users, this guide ensures you can focus on your work without unnecessary distractions due to licensing.

12/5/2024, 4:19:11 AM26
Media/CoCalc OnPrem | A…native to JupyterHub.pdf

Enhance your organization's collaborative scientific computing capabilities with CoCalc OnPrem, a robust enterprise-grade alternative to JupyterHub. Experience real-time collaboration with features like TimeTravel version control, IPyWidgets support, and AI-assisted code improvements. CoCalc OnPrem is designed for customizable projects, secure infrastructure deployment, and scalability, running on Kubernetes and integrating seamlessly with LaTeX, Jupyter, R Studio, VS Code, X11 Desktop, and more. Tailored for research, teaching, and publishing, CoCalc OnPrem seamlessly combines the power of shared workspaces with the enhanced security and data privacy of on-premise solutions. Contact help@cocalc.com for advice on how to ensure collaborative computing within your organization is more effective.

12/4/2024, 10:43:44 PM29
extremal_Reissner_Nordstrom.ipynb

This notebook details some computations in the extremal Reissner-Nordström spacetime.

12/3/2024, 3:33:48 PM1246
KSS16results.sagews11/27/2024, 11:31:45 AM46
arithmetic.sagews11/27/2024, 10:50:04 AM63
Algorithms.sagews11/27/2024, 10:47:04 AM38

Page 1  Previous  Next