Qurak

Visualize the solutions to partial differential equations in 3D

Example 3 steps, run in order in one session. Every step was executed against the engine and the output below is what it produced.

Step 1
sol1 = DSolve[{D[y[x, t], t] + 2D[y[x, t], x] == Sin[x], y[0, t] == Cos[t]}, y[x, t], {x, t}]
Output
DSolve[{Derivative[0, 1][y][x, t] + 2*Derivative[1, 0][y][x, t] == Sin[x], y[0, t] == Cos[t]}, y[x, t], {x, t}]
Step 2
sol2 = sol1[[1, 1, 2]]
Output
Sin[x]
Step 3
Plot3D[sol2, {x, -10, 10}, {t, -5, 5}]
Output
-Graphics3D-

Functions used

Related recipes

All recipes · Function reference · Use this from an MCP client