Assignment, 7339
Assignment, 7339
Assignment 1-2024
Partial Differential Equations
Semester-V
Q1. Find the general solution of the following partial differential equations
(i) uxx-4 uxy+3 uyy=0
(ii) x ux+y uy=2u.
Q2. Obtain the solution of the equation
yux-2xyuy-2xu=0
with the Cauchy data u0,y=y3.
Q3. Plot the characteristic curves for the partial differential equation
ux- uy=1.
Q4. Find the solution of the following initial value problem
ut=uxx , 0<x<2, t>0
ux,0=x, 0≤x≤2
u0,t=0, ux2,t=1, t≥0.
I n [ ] : = pde = D[u[x, y], {x, 2}] - 4 D[u[x, y], x, y] + 3 D[u[x, y], {y, 2}] 0;
solution = DSolve[pde, u[x, y], {x, y}]
O u t [ ] =
{{u[x, y] 1 [3 x + y] + 2 [x + y]}}
I n [ ] : = ClearAll[x, y, u]
pde = x D[u[x, y], x] + y D[u[x, y], y] 2 u[x, y];
solution = DSolve[pde, u[x, y], {x, y}]
O u t [ ] =
y
u[x, y] x2 1
x
1 x2 + y
u[x, y]
y
2 assignment ,7339.nb
x2 + y ^ 4
I n [ ] : = Plot3D , {x, - 3, 3}, {y, - 3, 3}, ColorFunction "SouthwestColors"
y
O u t [ ] =
Out[4]=
assignment ,7339.nb 3
Out[6]=
Out[7]=
solution 4 -
ut=uxx , 0<x<2, t>0
ux,0=x, 0≤x≤2
u0,t=0, ux2,t=1, t≥0.
4 assignment ,7339.nb
Out[10]=