{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Laboratory 1: An Introduction to the Numerical Solution of Differential Equations: Discretization (2020/Jan/6)\n", "\n", "John M. Stockie" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## List of Problems\n", "\n", "- [Problem One](#Problem-One)\n", "- [Problem Two](#Problem-Two)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Objectives\n", "\n", "\n", "The examples and exercises in this lab are meant to illustrate the\n", "limitations of analytical solution techniques, using several\n", "differential equation models for simple physical systems. This is the\n", "prime motivation for the use of numerical methods.\n", "\n", "After completing this lab, you will understand the process of\n", "*discretizing* a continuous problem, and be able to derive a simple\n", "finite difference approximation for an ordinary or partial differential\n", "equation. The examples will also introduce the concepts of *accuracy*\n", "and *stability*, which will be discussed further in Lab 2.\n", "\n", "Specifically you will be able to:\n", "\n", "- Define the term or identify: Ordinary Differential Equation, Partial\n", " Differential Equation, Linear equation, Non-linear equation, Initial\n", " value problem, Boundary value problem, Open Domain, and Closed\n", " Domain.\n", "\n", "- Define the term, identify or perform: Forward difference\n", " discretization, Backward difference discretization, and Centre\n", " difference discretization.\n", "\n", "- Define the term: Interpolation, Convergence, and Instability.\n", "\n", "- Define the term or perform: Linear interpolation.\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Readings\n", "\n", "\n", "There is no required reading for this lab, beyond the contents of the\n", "lab itself. However, if you would like additional background on any of\n", "the following topics, then refer to the sections indicated below:\n", "\n", "- **Differential Equations:**\n", "\n", " - [Strang (1986)](#Ref:Strang), Chapter 6 (ODE’s).\n", "\n", " - [Boyce and DiPrima (1986)](#Ref:BoyceDiPrima) (ODE’s and PDE’s).\n", "\n", "- **Numerical Methods:**\n", "\n", " - [Strang (1986)](#Ref:Strang), Section 5.1.\n", "\n", " - [Garcia (1994)](#Ref:Garcia), Sections 1.4–1.5, Chapter 2 (a basic introduction to\n", " numerical methods for problems in physics).\n", "\n", " - [Boyce and DiPrima (1986)](#Ref:BoyceDiPrima), Sections 8.1–8.5, 8.7, 8.8." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Running Code Cells\n", "\n", "\n", "The next cell in this notebook is a code cell. Run it by selecting it and hitting ctrl enter, or by selecting it and hitting the run button (arrow to right) in the notebook controls." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "******************************\n", "context imported. Front of path:\n", "/Users/phil/repos/numeric\n", "back of path: /Users/phil/.ipython\n", "******************************\n", "\n", "through /Users/phil/repos/numeric/notebooks/lab1/context.py\n" ] } ], "source": [ "from IPython.display import Image\n", "# import plotting package and numerical python package for use in examples later\n", "import matplotlib.pyplot as plt\n", "# import the numpy array handling library\n", "import numpy as np\n", "# import the quiz script\n", "import context\n", "from numlabs.lab1 import quiz1 as quiz" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Introduction: Why bother with numerical methods?\n", "\n", "\n", "In introductory courses in ordinary and partial differential equations\n", "(ODE’s and PDE’s), many analytical techniques are introduced for\n", "deriving solutions. These include the methods of undetermined\n", "coefficients, variation of parameters, power series, Laplace transforms,\n", "separation of variables, Fourier series, and phase plane analysis, to\n", "name a few. When there are so many analytical tools available, one is\n", "led to ask:\n", "\n", "> *Why bother with numerical methods at all?*\n", "\n", "The fact is that the class of problems that can be solved analytically\n", "is *very small*. Most differential equations that model physical\n", "processes cannot be solved explicitly, and the only recourse available\n", "is to use a numerical procedure to obtain an approximate solution of the\n", "problem.\n", "\n", "Furthermore, even if the equation can be integrated to obtain a closed\n", "form expression for the solution, it may sometimes be much easier to\n", "approximate the solution numerically than to evaluate it analytically.\n", "\n", "In the following two sections, we introduce two classical physical\n", "models, seen in most courses in differential equations. Analytical\n", "solutions are given for these models, but then seemingly minor\n", "modifications are made which make it difficult (if not impossible) to\n", "calculate actual solution values using analytical techniques. The\n", "obvious alternative is to use numerical methods." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Ordinary Differential Equations\n", "\n", "\n", "[lab1:sec:odes]: <#3.1-Ordinary-Differential-Equations> \"ODES\"\n", "\n", "In order to demonstrate the usefulness of numerical methods, let’s start\n", "by looking at an example of a *first-order initial value problem* (or\n", "*IVP*). In their most general form, these equations look like\n", "\n", "