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.
sol1 = DSolve[{D[y[x, t], t] + 2D[y[x, t], x] == Sin[x], y[0, t] == Cos[t]}, y[x, t], {x, t}]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}]sol2 = sol1[[1, 1, 2]]Sin[x]Plot3D[sol2, {x, -10, 10}, {t, -5, 5}]-Graphics3D-Tutte le ricette · Guida delle funzioni · Usa questo da un client MCP