Partial sum with slider
Make N a slider; watch the partial sum converge.
N = 10
S = sumn=0N (-1)^n / (2n+1)
Taylor polynomial — write out each term
No f(k) indexing in Desmos. Prime notation only goes a few apostrophes deep, so type each term explicitly.
a = 0
T(x) = f(a) + f'(a)(x-a)
+ f''(a)/2 · (x-a)^2
+ f'''(a)/6 · (x-a)^3
+ f''''(a)/24 · (x-a)^4
Known Maclaurin series via sigma
When the coefficient pattern is closed-form, the sum works fine — no derivative indexing needed.
N = 10
E(x) = sumn=0N x^n / n!
S(x) = sumn=0N (-1)^n x^(2n+1)/(2n+1)!
C(x) = sumn=0N (-1)^n x^(2n)/(2n)!
Logistic / differential equation slope field
Use a list-based grid. For dy/dx = f(x,y), plot many tiny segments centered on grid points.
(X, Y) for X=[-5...5], Y=[-5...5]