Ludium
Sign In
Differential Equations
The Geometric View of ODEs
01Direction Fields and the Geometric View of ODEs02Integral Curves and the Isocline Method03Perpendicular Isoclines: The Circles of y' = -x/y04Isocline Corridors and a Trap for Solutions05Existence and Uniqueness: One Curve Through a Point06Where Existence and Uniqueness FailProblem set0/10Problem set 20/10MIT problem set0/3Practice∞
Numerical Methods
01Euler's Method and Its Three Equations02Euler's Method by Hand: Building the Table03Convexity and the Sign of Euler's Error04First Order Error: Halve the Step, Halve the Error05Improved Euler (RK2): Averaging Two Slopes06Runge-Kutta 4 and the Price of Accuracy07Singular Points: Where Every Method FailsProblem set0/10Problem set 20/10MIT problem set0/1Practice∞
First-Order Linear Equations
01First Order Linear: Standard Form and the Sign of p02The Conduction-Diffusion Model: Newton's Law of Cooling03The Integrating Factor and the Four-Step Method04Integrating Factors: Two Mistakes and a Trick Question05Constant Coefficients: Steady State and TransientProblem set0/10Problem set 20/10MIT problem set0/1Practice∞

Euler's Method by Hand: Building the Table

How can two hand-computed rows of a table estimate $y(0.2)$ for an equation that has no elementary solution?


Loading…

←Previous Euler's Method and Its Three EquationsNext Convexity and the Sign of Euler's Error →

Your summary note

    1. 1

      The initial value problem y′=x2−y2y' = x^2 - y^2y′=x2−y2, y(0)=1y(0)=1y(0)=1, h=0.1h=0.1h=0.1

      Record the IVP, the chosen step size, and the fact that this equation has no solution in elementary functions, making it a candidate for a numerical method.

    2. 2

      The tabular format with columns nnn, xnx_nxn​, yny_nyn​, AnA_nAn​, hAnh A_nhAn​

      Write out the column headings, note that An=xn2−yn2A_n = x_n^2 - y_n^2An​=xn2​−yn2​ is the slope at the current point and hAnh A_nhAn​ is the increment added to yny_nyn​, and record the demand to work systematically so mistakes stay findable.

    3. 3

      Two steps carried through to y(0.2)≈0.82y(0.2) \approx 0.82y(0.2)≈0.82

      Fill in the rows for n=0,1,2n = 0, 1, 2n=0,1,2 with your own arithmetic — slope AnA_nAn​, increment hAnhA_nhAn​, new yn+1y_{n+1}yn+1​ — carrying the table through to y(0.2)≈0.82y(0.2) \approx 0.82y(0.2)≈0.82.

    Attempt 1 of 2