Qurak

Take a derivative

How-to 10 stappen, op volgorde uitgevoerd in één sessie. Elke stap is tegen de engine uitgevoerd en de uitvoer hieronder is wat hij opleverde.

Stap 1
f[x_] = x ^ 3 - Sin[x ^ 2]
Uitvoer
x^3 - Sin[x^2]
Stap 2
f'[x]
Uitvoer
3*x^2 - 2*x*Cos[x^2]
Stap 3
f'''[x]
Uitvoer
6 + 8*x^3*Cos[x^2] + 12*x*Sin[x^2]
Stap 4
D[f[x], x]
Uitvoer
3*x^2 - 2*x*Cos[x^2]
Stap 5
D[f[x], {x, 3}]
Uitvoer
6 + 8*x^3*Cos[x^2] + 12*x*Sin[x^2]
Stap 6
g[x_, y_] = (x + y) ^ 4
Uitvoer
(x + y)^4
Stap 7
D[g[x, y], x, {y, 2}]
Uitvoer
24*(x + y)
Stap 8
{HeavisideTheta[-1], HeavisideTheta[0], HeavisideTheta[1]}
Uitvoer
{0, HeavisideTheta[0], 1}
Stap 9
HeavisideTheta'[x]
Uitvoer
DiracDelta[x]
Stap 10
Plot[{HeavisideTheta[x], DiracDelta[x]}, {x, -2, 2}, PlotStyle -> {{Thickness[.02], Green}, {Thickness[.01], Red}}]
Uitvoer
-Graphics-

Gebruikte functies

Gerelateerde recepten

Alle recepten · Functiereferentie · Gebruik dit vanuit een MCP-client