Added June 22, 2019
Solve the heat equation
Initial condition is
Mathematica ✓
ClearAll["Global`*"]; pde = D[u[x, t], t] == k*D[u[x, t], {x, 2}]; bc = {u[0, t] == A, u[L, t] == B}; ic = u[x, 0] == f[x]; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], {x, t},Assumptions->{k>0,L>0,t>0}], 60*10]]; sol = sol /. K[1] -> n;
Maple ✓
restart; pde := diff(u(x,t),t)=k*diff(u(x,t),x$2); ic := u(x,0)=f(x); bc := u(0,t)=A, u(L,t)=B; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve([pde,ic,bc],u(x,t)) assuming k>0,L>0,t>0),output='realtime'));
Hand solution
Initial conditions
Since boundary conditions are nonhomogeneous, then the first step is to reduce the problem to one with homogeneous B.C. to be able to use separation of variables (separation of variables can only be done on a PDE with homogeneous B.C.)
This is done by using steady state solution. Let the total solution be
This has the solution
The above PDE was solved in problem 4.1.1.1 on page 405 and the solution is
Substituting (3) into (4) gives
____________________________________________________________________________________
Taken from Maple PDE help pages
Solve the heat equation
Initial condition is
Mathematica ✓
ClearAll["Global`*"]; pde = D[u[x, t], t] == D[u[x, t], {x, 2}]; bc = {u[0, t] == 20, u[1, t] == 50}; ic = u[x, 0] == 0; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], x, t], 60*10]]; sol = sol /. K[1] -> n;
Maple ✓
restart; pde := diff(u(x,t),t)=diff(u(x,t),x$2); ic := u(x,0)=0; bc := u(0,t)=20, u(1,t)=50; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve([pde,ic,bc],u(x,t))),output='realtime'));
Hand solution
The general solution to
Initial conditions
____________________________________________________________________________________
Added December 20, 2018.
Example 8.4.1 from Partial differential equations and boundary value problems with Maple by George A. Articolo, 2nd ed.
Solve the heat equation for
Initial condition is
Mathematica ✓
ClearAll["Global`*"]; k = 1/20; pde = D[u[x, t], t] == k*D[u[x, t], {x, 2}]; bc = {u[0, t] == 10, u[1, t] == 20}; ic = u[x, 0] == 60*x - 50*x^2 + 10; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], x, t], 60*10]]; sol = sol /. K[1] -> n;
Maple ✓
restart; k := 1/20; pde := diff(u(x,t),t)= k*diff(u(x,t),x$2); bc := u(0, t) = 10, u(1, t) = 20; ic := u(x, 0) = 60*x - 50*x^2 + 10; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol', pdsolve([pde, ic, bc], u(x, t))),output='realtime'));
Hand solution
The general solution to
with Initial conditions
But
____________________________________________________________________________________
Added July 6,2019
Solve the heat equation for
Initial condition is
Mathematica ✓
ClearAll["Global`*"]; pde = D[u[x, t], t] == k*D[u[x, t], {x, 2}] + Q[x]; bc = {u[0, t] == A, u[L, t] == B}; ic = u[x, 0] == f[x]; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], {x, t},Assumptions->{k>0,L>0}], 60*10]];
Maple ✓
restart; pde := diff(u(x,t),t)= k*diff(u(x,t),x$2)+Q(x); bc := u(0, t) = A, u(L, t) = B; ic := u(x, 0) = f(x); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol', pdsolve([pde, ic, bc], u(x, t)) assuming L>0,k>0),output='realtime'));
Hand solution
Solving
Since boundary conditions are nonhomogeneous, the first step is to reduce the problem to
one with homogeneous B.C. to be able to use separation of variables. This is done by using
steady state solution. Let the total solution be
This has the solution
The initial conditions are
The general solution to (4) was solved in 4.1.1.11 on page 453 and the solution
is
But
Since
____________________________________________________________________________________
Added July 6,2019
Solve the heat equation for
Initial condition is
Mathematica ✓
ClearAll["Global`*"]; A=20; B=50; f=60-2*x; L=30; k=1/10; Q=x/10; pde = D[u[x, t], t] == k*D[u[x, t], {x, 2}] + Q; bc = {u[0, t] == A, u[L, t] == B}; ic = u[x, 0] == f; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], x, t], 60*10]];
Maple ✓
restart; A:=20; B:=50; f:=60-2*x; L:=30; k:=1/10; Q:=x/10; pde := diff(u(x,t),t)= k*diff(u(x,t),x$2)+Q; bc := u(0, t) = A, u(L, t) = B; ic := u(x, 0) = f; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol', pdsolve([pde, ic, bc], u(x, t))),output='realtime'));
Hand solution
Solving
Where
The general solution to above PDE was solved in 4.1.5.4 on page 708 and the solution
is
Replacing the specific values, the solution becomes
Or
But
Or
But
Or
Finally replacing the remaining variables in the above for
Or
Or
Source code used for the above
____________________________________________________________________________________
Added July 6,2019
Solve the heat equation for
Initial condition is
Mathematica ✓
ClearAll["Global`*"]; pde = D[u[x, t], t] == k*D[u[x, t], {x, 2}] + Q[x,t]; bc = {u[0, t] == A, u[L, t] == B}; ic = u[x, 0] == f[x]; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], {x, t},Assumptions->{k>0,L>0}], 60*10]];
Maple ✓
restart; pde := diff(u(x,t),t)= k*diff(u(x,t),x$2)+Q(x,t); bc := u(0, t) = A, u(L, t) = B; ic := u(x, 0) = f(x); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol', pdsolve([pde, ic, bc], u(x, t)) assuming L>0,k>0),output='realtime'));
Hand solution
Solving
Since boundary conditions are nonhomogeneous, the first step is to reduce the problem to
one with homogeneous B.C. to be able to use separation of variables. This is done by using
steady state solution. Let the total solution be
This has the solution
The initial conditions are
The general solution to (4) was solved in 4.1.6.4 on page 806 and the solution is
But
Since
____________________________________________________________________________________
Added June 23, 2019
Solve the heat equation for
Initial condition is
Mathematica ✓
ClearAll["Global`*"]; pde = D[u[x, t], t] == k*D[u[x, t], {x, 2}]; bc = {u[0, t] == A[t], u[L, t] == B[t]}; ic = u[x, 0] == f[x]; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], {x, t},Assumptions->{k>0,L>0}], 60*10]];
Maple ✓
restart; pde := diff(u(x,t),t)= k*diff(u(x,t),x$2); bc := u(0, t) = A(t), u(L, t) = B(t); ic := u(x, 0) = f(x); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol', pdsolve([pde, ic, bc], u(x, t)) assuming L>0,k>0),output='realtime'));
Hand solution
Since boundary conditions are nonhomogeneous, the first step is to reduce the problem to
one with homogeneous B.C. to be able to use separation of variables. This is done by using
a reference solution
Satisfies the nonhomogeneous. Substituting (2) back into the original PDE (1)
gives
But
Therefore the problem has been transformed to
The above problem was solved in 4.1.6.4 on page 806. The solution is
Hence (4) becomes
Since
Or
Or
Or, since here
Or
Or
But
Since
And
Substituting (6,7) back into (5) gives
Or
____________________________________________________________________________________
Added June 26, 2019
Solve the heat equation for
Initial condition is
Mathematica ✓
ClearAll["Global`*"]; f=x; L=2; k=1/10; A=Sin[t]; B=2*Cos[t]; pde = D[u[x, t], t] == k*D[u[x, t], {x, 2}]; bc = {u[0, t] == A, u[L, t] == B}; ic = u[x, 0] == f; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], {x, t}], 60*10]];
Maple ✓
restart; f:=x; L:=2; k:=1/10; A:=sin(t); B:=2*cos(t); pde := diff(u(x,t),t)= k*diff(u(x,t),x$2); bc := u(0, t) = A, u(L, t) = B; ic := u(x, 0) = f; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol', pdsolve([pde, ic, bc], u(x, t)) ),output='realtime'));
Hand solution
The basic solution for this type of PDE was already given in problem 4.1.5.7 on page 726 as
In this problem we have
This is animation of the above solution using these specific values for
Source code used for the above
____________________________________________________________________________________
Added January 18, 2019.
Solve the heat equation for
Initial condition is
Mathematica ✓
ClearAll["Global`*"]; pde = D[u[x, t], t] == D[u[x, t], {x, 2}] + (x - (1*x^2)/Pi); ic = u[x, 0] == Sin[x]; bc = {Derivative[1, 0][u][0, t] == 1, Derivative[1, 0][u][Pi, t] == -1}; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], {x, t}], 60*10]];
Maple ✓
restart; pde := diff(u(x, t), t) = diff(u(x, t), x$2): ic := u(x, 0) = sin(x): bc := eval(diff(u(x,t),x),x=0)=1, eval( diff(u(x,t),x),x=Pi)=-1: cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol', pdsolve({pde, ic, bc}, u(x, t))),output='realtime'));
Hand solution
Since the boundary conditions are not homogeneous, we can’t use separation of variables. Let the solution be
with eigenvalues
To find
Where
Since
For
For
Hence solution (4) becomes
____________________________________________________________________________________
Added Nov 27, 2018
This is problem 8.2.1 part(a) from Richard Haberman applied partial differential equations 5th edition.
Solve the heat equation
For
Initial condition is
Mathematica ✓
ClearAll["Global`*"]; pde = D[u[x, t], t] == k*D[u[x, t], {x, 2}]; bc = {u[0, t] == A, Derivative[1, 0][u][L, t] == B}; ic = u[x, 0] == f[x]; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], x, t, Assumptions -> L > 0], 60*10]];
Maple ✓
restart; interface(showassumed=0); pde := diff(u(x,t),t)=k*diff(u(x,t),x$2); ic := u(x,0)=f(x); bc := u(0,t)=A, eval( diff(u(x,t),x),x=L)=B; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve([pde,ic,bc],u(x,t)) assuming L>0),output='realtime'));
Hand solution
Let
This PDE we already solved before and we know that it has the following solution
With
Hence
Or
____________________________________________________________________________________
This is problem 8.2.1 part(d) from Richard Haberman applied partial differential equations 5th edition.
Solve the heat equation
Initial condition is
Mathematica ✓
ClearAll["Global`*"]; pde = D[u[x, t], t] == k*D[u[x, t], {x, 2}] + k; bc = {u[0, t] == A0, u[L0, t] == B0}; ic = u[x, 0] == f[x]; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], x, t], 60*10]];
Maple ✓
restart; interface(showassumed=0); pde := diff(u(x,t),t)=k*diff(u(x,t),x$2)+k; ic := u(x,0)=f(x); bc := u(0,t)=A, u(L,t)=B; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve([pde,ic,bc],u(x,t))),output='realtime'));
Hand solution
Let
At equilibrium,
Hence
Hence
Substituting this in
We need to solve the above for
And from (1)
At
____________________________________________________________________________________
Added July 3, 2019
Solve the heat equation
Initial condition is
Mathematica ✓
ClearAll["Global`*"]; pde = D[u[x, t], t] == k*D[u[x, t], {x, 2}] + Q[x]; bc = {u[0, t] == A[t], u[L, t] == B[t]}; ic = u[x, 0] == f[x]; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], {x, t},Assumptions->{L>0,k>0}], 60*10]];
Maple ✗
restart; interface(showassumed=0); pde := diff(u(x,t),t)=k*diff(u(x,t),x$2)+Q(x); ic := u(x,0)=f(x); bc := u(0,t)=A(t), u(L,t)=B(t); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve([pde,ic,bc],u(x,t)) assuming L>0,k>0),output='realtime'));
time expired Possible bug. Maple can solve with
Hand solution
Solve
Since boundary conditions are nonhomogeneous, the first step is to reduce the problem to
one with homogeneous B.C. to be able to use separation of variables. This is done by using a
reference solution
But
Therefore the problem has been transformed to
The basic solution for this type of PDE was already given in problem 4.1.1.11 on page 453 and the solution is
Where
Hence, using our
Since
____________________________________________________________________________________
Added July 4, 2019
Solve the heat equation
For
Initial condition is
Mathematica ✓
ClearAll["Global`*"]; L=2; k=1/10; A=Sin[t]; B=Cos[t]; f=x; Q=x; pde = D[u[x, t], t] == k*D[u[x, t], {x, 2}] + Q; bc = {u[0, t] == A, u[L, t] == B}; ic = u[x, 0] == f; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], {x, t}], 60*10]];
Maple ✓
restart; L:=2; k:=1/10; A:=sin(t); B:=cos(t); f:=x; Q:=x; pde := diff(u(x,t),t)=k*diff(u(x,t),x$2)+Q; ic := u(x,0)=f; bc := u(0,t)=A, u(L,t)=B; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve([pde,ic,bc],u(x,t)) ),output='realtime'));
Hand solution
Solve
With
The general problem above was solved in 4.1.5.12 on page 751 and the solution is
Substituting the specific values given above into this solution gives
But
Or
Animation is below
Source code used for the above
____________________________________________________________________________________
Added June 27, 2019
Solve the heat equation
Initial condition is
Mathematica ✓
ClearAll["Global`*"]; pde = D[u[x, t], t] == k*D[u[x, t], {x, 2}] + Q[x,t]; bc = {u[0, t] == A[t], u[L, t] == B[t]}; ic = u[x, 0] == f[x]; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], {x, t},Assumptions->{L>0,k>0}], 60*10]];
Maple ✓
restart; interface(showassumed=0); pde := diff(u(x,t),t)=k*diff(u(x,t),x$2)+Q(x,t); ic := u(x,0)=f(x); bc := u(0,t)=A(t), u(L,t)=B(t); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve([pde,ic,bc],u(x,t)) assuming L>0,k>0),output='realtime'));
Hand solution
Solve
Since boundary conditions are nonhomogeneous, the first step is to reduce the problem to
one with homogeneous B.C. to be able to use separation of variables. This is done by using a
reference solution
But
Therefore the problem has been transformed to
The basic solution for this type of PDE was already given in problem 4.1.6.4 on page 806
and the solution is
Where
Hence, using our
Since
____________________________________________________________________________________
Added June 27, 2019
Solve the heat equation
Initial condition is
Mathematica ✓
ClearAll["Global`*"]; L=2; k=1/10; A=Sin[t]; B=Cos[t]; f=x; Q=x*t*Exp[-t]*Cos[t]; pde = D[u[x, t], t] == k*D[u[x, t], {x, 2}] + Q; bc = {u[0, t] == A, u[L, t] == B}; ic = u[x, 0] == f; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], {x, t}], 60*10]];
Maple ✓
restart; L:=2; k:=1/10; A:=sin(t); B:=cos(t); f:=x; Q:=x*t*exp(-t)*cos(t); pde := diff(u(x,t),t)=k*diff(u(x,t),x$2)+Q; ic := u(x,0)=f; bc := u(0,t)=A, u(L,t)=B; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve([pde,ic,bc],u(x,t)) ),output='realtime'));
Hand solution
Solve
With
The general problem above was solved in 4.1.5.14 on page 764 and the solution
is
Substituting the specific values given above into this solution gives
But
Or
Animation is below
Source code used for the above
____________________________________________________________________________________
Added July 2, 2018.
Pinchover and Rubinstein’s exercise 6.17. Taken from Maple document for new improvements in Maple 2018.1
Solve the heat equation
For
Initial condition is
Mathematica ✗
ClearAll["Global`*"]; pde = D[u[x, t], x] == D[u[x, t], {x, 2}] + 1 + x*Cos[t]; bc = {Derivative[1, 0][u][0, t] == Sin[t], Derivative[1, 0][u][1, t] == Sin[t]}; ic = u[x, 0] == 1 + Cos[2*Pi*x]; sol = AbsoluteTiming[TimeConstrained[Simplify[DSolve[{pde, ic, bc}, u[x, t], x, t]], 60*10]];
Failed
Maple ✓
restart; pde := diff(u(x, t), t)= (diff(u(x, t), x, x)) + 1+x*cos(t); bc := (D[1](u))(0, t) = sin(t), (D[1](u))(1, t) = sin(t); ic := u(x, 0) = 1+cos(2*Pi*x); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol', pdsolve([pde, ic, bc],u(x,t))),output='realtime'));
____________________________________________________________________________________
Added March 28, 2018. A problem from my PDE animation page.
Solve the heat equation
For
Initial condition is
Mathematica ✓
ClearAll["Global`*"]; pde = D[u[x, t], t] == D[u[x, t], {x, 2}] + x; bc = {u[0, t] == (t*Sin[t])/5, u[Pi, t] == (t*Cos[t])/10}; ic = u[x, 0] == 60 - 2*x; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], x, t, Assumptions -> {t > 0, x > 0}], 60*10]];
Maple ✓
restart; interface(showassumed=0); pde := diff(u(x,t),t)=diff(u(x,t),x$2)+x; ic := u(x,0)=(60-2*x); bc := u(0,t)=t/5*sin(t), u(Pi,t)=t/10*cos(t); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol', pdsolve([pde,ic,bc],u(x,t)) assuming t>0,x>0),output='realtime'));
____________________________________________________________________________________
Added Nov 27, 2018.
Problem 8.2.2 part(a) from Richard Haberman applied partial differential equations book, 5th edition
Solve the heat equation for
For
Initial condition is
For hand solution see my HW9, Math 322, UW Madison. The text does not actually asks to solve this PDE but only to reduce the problem to one with homogeneous B.C.
Mathematica ✓
ClearAll["Global`*"]; pde = D[u[x, t], t] == k*D[u[x, t], {x, 2}] + Q[x, t]; bc = {Derivative[1, 0][u][0, t] == A[t], Derivative[1, 0][u][L, t] == B[t]}; ic = u[x, 0] == f[x]; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], x, t, Assumptions -> L > 0], 60*10]];
Maple ✓
restart; interface(showassumed=0); pde := diff(u(x,t),t)+k*diff(u(x,t),x$2)+Q(x,t); ic := u(x,0)=f(x); bc := eval( diff(u(x,t),x),x=0)=A(t), eval( diff(u(x,t),x),x=L)=B(t); cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol', pdsolve([pde,ic,bc],u(x,t)) assuming L>0),output='realtime'));
Hand solution
Solve
Let
Solving for
But
And initial condition is
PDE (4) with its homogenous boundary conditions is standard one, its corresponding
eigenvalue boundary value ODE
To find
By orthogonality
When
Therefore (5) is now solved. When
Hence
Integrating factor is
Now that we found
But
But
Hence
The constants
____________________________________________________________________________________
Added December 20, 2018.
Example 8.4.3 from Partial differential equations and boundary value problems with Maple by George A. Articolo, 2nd ed.
Solve the heat equation for
For
Initial condition is
Mathematica ✓
ClearAll["Global`*"]; k = 1/20; pde = D[u[x, t], t] == k*D[u[x, t], {x, 2}] + t; bc = {u[0, t] == 5, u[1, t] + Derivative[1, 0][u][1, t] == 10}; ic = u[x, 0] == (-40*x^2)/3 + (45*x)/2 + 5; sol = AbsoluteTiming[TimeConstrained[DSolve[{pde, ic, bc}, u[x, t], x, t], 60*10]];
Maple ✓
restart; pde := diff(u(x, t), t) = (1/20)*(diff(u(x, t), x$2))+t; bc := u(0, t) = 5, (u(1, t)+ eval( diff(u(x,t),x),x=1)) = 10; ic := u(x, 0) = -40*x^2/3+45*x/2+5; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol', pdsolve([pde, bc,ic], u(x, t))),output='realtime'));
____________________________________________________________________________________