Linear Approximation

College Depth 58 in the knowledge graph I know this Set as goal
Unlocks 5224 downstream topics
derivatives applications approximation tangent-line

Core Idea

Linear approximation uses the tangent line at a known point to estimate function values nearby: f(x) is approximately equal to L(x) = f(a) + f'(a)(x - a) for x near a. This is the simplest and most practical consequence of differentiability. It is the foundation for differentials, Newton's method, and Taylor polynomials. The quality of the approximation depends on how close x is to a and how curved the function is.

How It's Best Learned

Approximate values like sqrt(4.1) by linearizing sqrt(x) at x = 4. Compare the approximation with the true value to see the error. Discuss when the approximation is good (f is nearly linear near a) vs. poor (high curvature).

Common Misconceptions

Explainer

You already know that the derivative f'(a) is the slope of the tangent line to y = f(x) at x = a. Linear approximation takes the next step: that tangent line is not just a line that touches the curve at one point — it is the best linear approximation to the function near that point. If you zoom in close enough to any differentiable function, the function and its tangent line become indistinguishable. Linear approximation exploits this fact to estimate function values that would otherwise require a calculator.

The formula is L(x) = f(a) + f'(a)(x − a). This is simply the point-slope equation of the tangent line at (a, f(a)), rearranged in a useful way. To approximate √4.1, choose a = 4, where you know the exact value: f(x) = √x, f(4) = 2, f'(x) = 1/(2√x), f'(4) = 1/4. The linear approximation is L(x) = 2 + (1/4)(x − 4). At x = 4.1: L(4.1) = 2 + (1/4)(0.1) = 2.025. The true value is approximately 2.02485 — the approximation is excellent because 4.1 is very close to 4, and √x is nearly linear in a small neighborhood of 4.

The quality of the approximation depends on two things: how far x is from a, and how curved the function is near a. The curvature is captured by the second derivative — a large |f''(a)| means the function bends sharply away from the tangent line, and the approximation degrades quickly. A small |f''(a)| means the function is nearly linear, and the tangent line stays close for a wider range of x. This is why L(x) works well for √x at a = 4 but would be less accurate at a = 0.01, where the function curves steeply.

Linear approximation is the foundation for several tools you'll encounter next. Differentials restate it using the notation df = f'(a)dx, emphasizing the infinitesimal change perspective. Newton's method for root-finding iteratively applies linear approximation: it replaces the curve with its tangent line, finds where the tangent crosses zero, and uses that as the next approximation. Taylor polynomials extend the idea by adding higher-degree correction terms, starting with the quadratic correction (1/2)f''(a)(x−a)². Linear approximation is the first-order Taylor polynomial — the foundation of a hierarchy of increasingly accurate polynomial approximations.

Practice Questions 5 questions

Prerequisite Chain

Counting to 10Counting to 20Understanding ZeroThe Number ZeroCounting to FiveOne-to-One CorrespondenceCombining Small Groups Within 5Addition Within 10Addition Within 20Two-Digit Addition Without RegroupingTwo-Digit Addition with RegroupingAddition Within 100Repeated Addition as MultiplicationMultiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Two-Digit by One-Digit DivisionDivision with RemaindersRemainders and Quotients in DivisionDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueIntegers and the Number LineOpposites and Additive InversesAbsolute ValueAdding IntegersSubtracting IntegersMultiplying IntegersDividing IntegersUnit RatesProportionsPercent ConceptConverting Between Fractions, Decimals, and PercentsOperations with Rational NumbersTwo-Step EquationsSolving Multi-Step EquationsEquations with Variables on Both SidesLiteral EquationsSlope-Intercept FormPoint-Slope FormWriting Linear EquationsParallel and Perpendicular Line SlopesGraphing Linear EquationsPiecewise FunctionsOne-Sided LimitsContinuity DefinitionLimit Definition of the DerivativeDerivative as Slope of Tangent LineLinear Approximation

Longest path: 59 steps · 244 total prerequisite topics

Prerequisites (1)

Leads To (4)