Differential-Equations Β· Unit 2 Β· Video 7 Β· Interactive Practice
| Formula | Name | What it tells you |
|---|---|---|
| The equation | Separable; no on the right | |
| General solution | One curve for each constant | |
| Constant from the initial condition | Which curve you are on | |
| Singular point (the wall) | Where the denominator vanishes and the solution ends |
Key Insight: The equation contains no . The wall's position enters only through the initial condition, so a method that reads nothing but slopes cannot see it coming. The single exception is , the solution lost when we divided by β the only one with no wall.
Separation costs one solution and produces a constant that turns out to locate a wall.
Step 1 β Write the derivative as a quotient
The right-hand side carries no : the slope at a point depends on its height alone, so the field is the same in every column.
The starting height alone fixes the constant, , and the solution ends at .
RK4 tracks the true solution to four decimals, then keeps marching where no solution exists.
| RK4, , from | ||
| β | ||
| β | ||
| β | ||
| β | ||
| β | undefined | |
| β | ||
| β | ||
| β | ||
| Past the wall these belong to a different solution; the one through ended at . | ||
π‘ Every method in this lecture adds times an average of values of , so the computed values only climb: none of them can turn a positive negative, and the far branch below the axis stays out of reach. Refining the step makes the number reported at larger, not better β at , at , at .
Problem 1 Β· Locating the Wall
Given: with β find the value of at which this solution blows up.
Separating variables gives the family .
Step 1 β Find from the initial condition:
Step 2 β Write the solution and find where the denominator vanishes:
Starting higher means blowing up sooner: reaches its wall at , while survives until . The interval of existence is .
Problem 2 Β· Asking for a Value That Is Not There
Given: with , so β what is ?
With the solution is , and its denominator vanishes at :
The formula still returns numbers for , and those numbers do lie on a solution curve β the branch running from up toward the axis. But an initial-value problem asks for the one curve through , and that curve is only the piece on : integral curves cannot jump a singularity.
So the interval of existence is , and is undefined for this solution.
Problem 3 Β· A Start Away from the Vertical Axis
Given: a solution of passing through β find .
Step 1 β Find from the point :
Step 2 β Write the solution:
Step 3 β Check that is legal, then evaluate:
The wall sits at , and the start lies to its left, so this solution exists on β which contains .
Verify: β, and β.
Problem 4 Β· Refining the Step
Given: RK4 on from with prints at , where this solution has already ceased to exist β what does print at ?
The last true step is the one that reaches the wall. Near the exact solution behaves like , so at the final grid point before the singularity the height is of size β and that is the size of whatever the march is holding when it arrives at :
Each tenfold refinement multiplies the printed value by about ten, so prints roughly .
Why the error orders do not apply. The statements "Euler's error ", "improved Euler ", "RK4 " all compare the computed value with the value of the solution. Past there is no such value, so there is nothing for the estimates to be estimates of. One step later the machine reports about , two more and it overflows to , and from then on every step adds to : at the answer comes back .
The real lesson. Nothing in mentions . The slope function is finite and smooth at every point of the plane, so no amount of slope-reading β at one point per step, or four β can announce in advance where the solution stops existing.
Solved: 0 / 4