Public saves can be shown to anyone via shared data.
Confirm
Are you sure?
Edit Display Name
PNG Preview
Resolution Preset
Aspect
Save Recording
MP4 is available only if browser recorder supports it.
Plotica Help
Quick Guide
Plotica is an interactive math and physics visualization tool. You write
equations in cells and Plotica renders plots instantly. This guide shows
the minimum you need to get started.
Basic Usage
Each line is a cell. Press Enter to execute.
Use the left panel to toggle grid, axes, and plot settings.
Functions you define can be reused in later cells.
Core Examples (Copy into a Cell)
Function Plot
f(x)=x^2-2\cdot x+1
y=f(x)
Point and Arrow
A=(2,1)
B=(4,2)
A->B
Implicit Region
x^2+y^2<10
Between (Band)
between(sin(x),cos(x))
List of Points
[(2,1),(1,4),(3,2)]
[(i,2) for i in 1:2:10]
ODE (System)
Use the header form in a cell.
ODE: vars:x,y; params:a,b; time:t;
init: x=1,y=0,t0=0,t1=10,n=200,method=rk4;
x' = y; y' = -a\cdot x - b\cdot y