5. Partial Differential Equations#

This chapter focuses on numerical methods for solving partial differential equations (PDEs), which involve derivatives in multiple dimensions.

We can write a general, linear 2nd-order PDE for a variable u(x,y) as

(5.1)#A2ux2+2B2uxy+C2uy2=F(x,y,u,ux,uy)

where A, B, and C are constants. Depending on their value, we can categorize a PDE into one of three categories:

  • B2AC<0: elliptic

  • B2AC=0: parabolic

  • B2AC>0: hyperbolic

The different PDE types will exhibit different characteristics and will also require slightly different solution approaches.