Before we start, here is the single picture the whole page rides on.
The curve (teal) is the true f. The straight orange line touching it at the base point a is the tangent — the linearization L. Near a they overlap; far from a they separate. The vertical plum gap between curve and line is the error we keep bounding. Every exercise below is "how close is the orange line to the teal curve, and by how much am I off?"
Goal: can you read off f, a, f(a), f′(a) and assemble L mechanically?
Recall Solution 1.1
What we need:L(x)=f(a)+f′(a)(x−a), so we need two numbers: the height f(2) and the slope f′(2).
Height: f(2)=23=8.
Slope: f′(x)=3x2, so f′(2)=3(4)=12.
Assemble: L(x)=8+12(x−2).
That is the tangent line to y=x3 at the point (2,8).
Recall Solution 1.2
f(1)=ln1=0. Slope f′(x)=x1, so f′(1)=1.
L(x)=0+1(x−1)=x−1.
Now let x=1+u (so the "step" x−1=u): ln(1+u)≈u. This is the standard near-zero rule.
Recall Solution 1.3
Why dy:dy=f′(x)dx is "rise along the tangent = slope × run."
f′(x)=−sinx, so dy=−sinxdx.
At x=3π: sin3π=23≈0.8660.
dy=−0.8660×0.01=−0.008660.
The minus sign says cosine is decreasing there, so a small step right drops y.
Goal: choose a base point, run the recipe, get a number.
Recall Solution 2.1
Choose f,a:f(x)=x1/3, a=8 because 38=2 exactly and 8.2 is close.
Height:f(8)=2.
Slope:f′(x)=31x−2/3, so f′(8)=31⋅8−2/3=31⋅41=121.
Line & evaluate: step =8.2−8=0.2.
38.2≈2+121(0.2)=2+0.0166=2.01667.
(True value 2.01653… — off by about 0.00014.)
Recall Solution 2.2
Choose:f(x)=x5, base a=2 (since 25=32 exact), dx=1.97−2=−0.03.
Slope:f′(x)=5x4, f′(2)=5(16)=80.
Differential:dy=80×(−0.03)=−2.4.
(1.97)5≈f(2)+dy=32−2.4=29.6.
(True ≈29.584.) Note dx<0 handled cleanly — the step just points left.
Recall Solution 2.3
Convert:45∘=4π, and the step is 1∘=180π≈0.017453 rad.
Choose:f(x)=tanx, a=4π (there tan=1 exactly).
Slope:f′(x)=sec2x=cos2x1. At 4π, cos4π=21, so cos2=21 and f′=2.
Line:tan(46∘)≈1+2(0.017453)=1+0.034907=1.034907.
(True tan46∘=1.03553… — off by 0.0006; tangent curves upward fast, hence a slightly bigger miss.)
Goal: reason about the error — its size, its sign, its behaviour.
Recall Solution 3.1
Second derivative test of shape:f′(x)=21x−1/2, f′′(x)=−41x−3/2<0 for x>0.
Negative second derivative ⇒ the curve is concave down — it bends below its tangent lines. See the figure: the teal curve sits under the orange tangent to the right of a.
So the tangent line lies abovex, and L(4.1)=2.025 is an over-estimate of the true 4.1=2.02485…. Confirmed: 2.025>2.02485. This is the Concavity and second derivative connection in action.
Recall Solution 3.2
Where the error law comes from (Taylor's theorem with Lagrange remainder): if f has two derivatives, then for some point c strictly between a and x,
f(x)=L(x)f(a)+f′(a)(x−a)+remainder=error21f′′(c)(x−a)2.
This is the standard Taylor series remainder: the leftover after the linear part is exactly one term of the form 21f′′(c)(x−a)2. So error=f(x)−L(x)=21f′′(c)(x−a)2, which is ∝(x−a)2.
Reasoning: since error ∝(x−a)2, halving (x−a) multiplies the square by (21)2=41. So error drops by a factor of 4.
Build L (recall where the 41 comes from):f(x)=x, f′(x)=2x1, so f′(4)=2⋅21=41; with f(4)=2 this gives L(x)=2+41(x−4).
Numeric check:
Step 0.05: L(4.05)=2.0125, true =2.0124612…, error =0.0000388.
Ratio =0.0001543/0.0000388≈3.98≈4. Matches the quadratic-error prediction — this is exactly why Taylor series adds a 21f′′(a)(x−a)2 term to kill this leading error.
Recall Solution 3.3
Why differentials: we don't know the true error, only that ds is small, so ΔV≈dV=V′(s)ds.
V′(s)=3s2, so dV=3s2ds=3(25)(0.02)=1.5cm3 (absolute).
Relative error:VdV=s33s2ds=3sds=3⋅50.02=3(0.004)=0.012=1.2%.
The neat pattern: for a power sn, relative error multiplies by n. (Sphere r3 gave 3rdr in the parent — same rule.) See Error propagation.
Goal: combine ideas — chain rule, multiple tools, or a different lens on the same machinery.
Recall Solution 4.1
First, the tool we lean on — the (1+u)n rule, derived here: let h(u)=(1+u)n and linearize at u=0. Then h(0)=1, and h′(u)=n(1+u)n−1 so h′(0)=n. Hence L(u)=1+nu, i.e.
(1+u)n≈1+nu(u small).Piece 1:4.1≈2+41(0.1)=2.025 (using f(x)=x, f′(4)=41 as in 3.2).
Piece 2: apply the boxed rule with u=0.02,n=3: (1.02)3=(1+0.02)3≈1+3(0.02)=1.06.
Combine: product ≈2.025×1.06=2.1465.
(True: 4.1=2.024846, 1.023=1.061208, product =2.148741.) Error ≈0.0022.
Why this is easier than one big linearization: each factor is a clean, memorized near-zero form; multiplying two simple estimates avoids differentiating an ugly product x(x)3 and picking a joint base point. The small cost is that errors from both factors add up.
Recall Solution 4.2
Linearize f at x0:L(x)=f(x0)+f′(x0)(x−x0).
f(x)=x2−5, f(2)=4−5=−1; f′(x)=2x, f′(2)=4.
Solve L(x)=0:−1+4(x−2)=0⇒x−2=41⇒x=2.25.
So x1=2.25. That is exactly the Newton's method update x1=x0−f′(x0)f(x0)=2−4−1=2.25.
(True 5=2.23607; one step already good to 0.014.) Key insight: Newton = repeatedly riding the tangent to the axis, i.e. linear approximation used backwards — solve the line instead of evaluating it.
Recall Solution 4.3
Linearize ex at a=0:f(0)=e0=1, f′(x)=ex so f′(0)=1. Then L(x)=1+1⋅(x−0)=1+x. ✔
Estimates:e0.05≈1.05; ln(1.05)=ln(1+0.05)≈0.05.
Inverse check:ln(e0.05) should be 0.05. Using estimates: ln(1.05)≈0.05. ✔ They undo each other to first order — both are the degree-1 Taylor series of inverse functions, so their leading behaviour matches.
Goal: full modelling problems — set up, choose tools, control error, interpret.
Recall Solution 5.1
Treat T as a function of g:T(g)=2πLg−1/2.
Differentiate:dgdT=2πL⋅(−21)g−3/2=−πLg−3/2.
Relative form (cleaner): since T∝g−1/2, TdT=−21gdg.
Numerically: TdT=−21⋅9.810.05=−0.002548=−0.2548%.Absolute: first T=2π1/9.81=2π(0.31944)=2.00709 s, so dT=T⋅(−0.002548)=−0.005114 s.
Interpret: the minus sign says a largerg shortens the period; a 0.5% error in g produces only a 0.25% error in T because the square root halves the relative error.
Recall Solution 5.2
Second derivative:f′′(x)=−41x−3/2. So ∣f′′(x)∣=41x−3/2, which is a decreasing function of x (larger x ⇒ smaller x−3/2). Therefore on the interval [4,4.1] its maximum sits at the left endpoint x=4: ∣f′′(4)∣=41⋅4−3/2. Now 4−3/2=43/21=81, so ∣f′′(4)∣=41⋅81=321=0.03125.
Bound at step 0.1:21(0.03125)(0.1)2=21(0.03125)(0.01)=0.00015625.
That is 1.56×10−4 — larger than 10−5, so a guarantee fails (even though the actual error 1.5×10−4 happened to be close to the bound).
Required step: solve 21(0.03125)h2≤10−5: h2≤0.031252×10−5=6.4×10−4, so h≤0.0253.
Conclusion: you'd need x within about 0.0253 of 4 (i.e. 4.025 or nearer) to guarantee 10−5 from the linear model — or, keep the step and add the quadratic Taylor series term.
Recall Solution 5.3
Build L at a=100:f(100)=10; f′(x)=2x1, f′(100)=201=0.05.
x≈10+0.05(x−100)Estimates:
99≈10+0.05(−1)=9.95. (True 9.94987; over-estimate.)
Sign of error:f′′(x)=−41x−3/2<0 ⇒ concave down ⇒ tangent lies above the curve on both sides ⇒ both estimates are over-estimates. Matches the tiny positive gaps above.