Qurak

Visualize the solutions to partial differential equations in 3D

3 ステップを1つのセッション内で順に実行します。各ステップはエンジンで実行済みで、以下の出力は実際に生成されたものです。

ステップ 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}]
出力
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}]
ステップ 2
sol2 = sol1[[1, 1, 2]]
出力
Sin[x]
ステップ 3
Plot3D[sol2, {x, -10, 10}, {t, -5, 5}]
出力
-Graphics3D-

使用する関数

関連レシピ

すべてのレシピ · 関数リファレンス · MCPクライアントから使う