Qurak

Visualize the solutions to partial differential equations in 3D

Esempio 3 passi, eseguiti in ordine in una sola sessione. Ogni passo è stato eseguito sul motore e l'output qui sotto è ciò che ha prodotto.

Passo 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}]
Passo 2
sol2 = sol1[[1, 1, 2]]
Output
Sin[x]
Passo 3
Plot3D[sol2, {x, -10, 10}, {t, -5, 5}]
Output
-Graphics3D-

Funzioni usate

Ricette correlate

Tutte le ricette · Guida delle funzioni · Usa questo da un client MCP