MAT 418/518 Materials

Back

Practice Problems for Midterm Hints
Midterm Review

Final Exam Review
Old Exam

Relevant Class Notes:

Chapter 1 Heat Equation

Chapter 2 Method of Separation of Variables

Chapter 3 Fourier Series

Chapter 4 Wave Equation

Chapter 5 Sturm-Liouville Eigenvalue Problems

Chapter 6 Finite Difference Methods

Chapter 7 Higher Dimensional PDEs

----------------------------------------------------------------------------------------------------

Miscellaneous Materials from My Past Course

Handouts/Worksheets

Maple Files

MathCAD

MATLAB

  • MATLAB Basics: HTML
  • Using MATLAB
  • Knobel's Matlab Files or here
    To use: Put these files in the Work subfolder in the MATLABR11 Directory
    In the MATLAB Command Window type one of: wvmovie, wvslice, wvsurf. 

    Or, enter the following commands

Enter the function and grid:
x=-10:0.1:10; 
t=0:0.3:6;
[X,T]=meshgrid(x,t);
u = exp(-(X-T).^2);

For Animation:
M = moviein(length(t));

for
j=1:length(t),

    plot(x,u(j,:)),
    M(:,j)=getframe;

end
;

movie(M)

For slices
waterfall(x,t,u)

For surface plots
surf(x,t,u)

For density plots
pcolor(x,t,u)

Or do them all at once from an m-file

 

d'Alembert's Solution

 

 

Learning Takes Place Outside the Classroom!

Interesting Sites

SOS Math Dave's Math Tables Earth and Sky   Official Time EST
       

 

Top

E-Mail: Dr. Russell Herman Last Updated: December 01, 2005