Linear Approximation Calculator

Estimate a hard value with an easy tangent line. Pick the function, a nearby point you know, and the value you want; see the estimate, the true value and the error.

Reads as x\sqrt{x}
Try:

Estimate

f(4.1)≈2.025f(4.1) \approx 2.025

true value 2.0248457 · error 0.000154

22.533.544.555.561.41.61.822.22.4aL(x)

Step by step

  1. Value at the base point

    f(4)=2f(4) = 2
  2. Slope at the base point

    f′(x)=12x  ⇒  f′(4)=14f'(x) = \frac{1}{2 \sqrt{x}} \;\Rightarrow\; f'(4) = \frac{1}{4}
  3. Linearization

    L(x) = f(a) + f′(a)(x − a).

    L(x)=2+14(x−4)L(x) = 2 + \frac{1}{4}\left(x - 4\right)
  4. Estimate

    f(4.1)≈L(4.1)=2.025f(4.1) \approx L(4.1) = 2.025
  5. Check

    f″(a) < 0: the curve is concave down, so the tangent sits above it and the estimate is an overestimate.

    true value 2.0248457, error 0.000154\text{true value } 2.0248457,\ \text{error } 0.000154

Still stuck? Ask the tutor

An AI tutor reads the problem and steps above and explains them in plain words. It can make mistakes, so check it against the worked steps.

Why a tangent line makes a good estimate

Zoom in far enough on any smooth curve and it looks straight. The straight line it looks like is the tangent, L(x)=f(a)+f′(a)(x−a)L(x) = f(a) + f'(a)(x-a). So for xx near aa, reading off the line instead of the curve costs very little accuracy. The error grows roughly with (x−a)2(x-a)^2, which is why the estimate is excellent at 4.14.1 and poor at 99.

Adding a squared term, a cubed term and so on gives better and better approximations: that is exactly the Taylor polynomial, of which L(x)L(x) is the first-degree case.

Questions students ask

What is linear approximation?

Replacing a curve near a point aa by its tangent line: L(x)=f(a)+f′(a)(x−a)L(x) = f(a) + f'(a)(x - a). Close to aa, f(x)≈L(x)f(x) \approx L(x).

How do I estimate √4.1 or similar by hand?

Pick a nearby value where you know the answer exactly (a=4a = 4 for x\sqrt{x}). Then f(4)=2f(4) = 2, f′(4)=14f'(4) = \frac{1}{4}, so 4.1≈2+14(0.1)=2.025\sqrt{4.1} \approx 2 + \frac14(0.1) = 2.025. The true value is 2.02485…

Is the estimate too big or too small?

If the curve is concave up near aa (f′′>0f'' > 0) the tangent lies below it, so the estimate is too small. If concave down (like x\sqrt{x}), the estimate is too big.

What is the difference between linearization and differentials?

Same idea, different notation. The differential dy=f′(a) dxdy = f'(a)\,dx is the change along the tangent line, and Δy≈dy\Delta y \approx dy for small dxdx.