Skip to main content
  1. Math 242: Calculus 1/
  2. Chapter 2/

Section 2.9

Linear Approximations and Differentials

Linear Approximations #

The motivation for this section is that we will want to be approximating a function near a point by their tangent lines at that point.

Sample (very) basic example: #

We’re going to approximate f(x)=x2 around x=2.

  1. Find the tangent line at x=2

    The derivative is y=2x. The tangent line then is going to be: y4=4(x2) y=4x4

  2. Try to approximate (1.9)^2 using the tangent line:

    Since 1.9 is “close” to 2, we can use the tangent line at 2:

    y=4(1.9)4 =7.64 =3.6

    Since the actual value (1.9)2=3.61, that’s pretty close. Not bad!

  3. What about approximating (1)2?

    …. 1 is not “close” to 2.

    y=4(1)4 =0

    and obviously 120, so this is really crappy approximation.

Linear Approximations / Linearization #

In general, the tangent line to a function at the point (a,f(a)) is: yf(a)=f(a)(xa)

We’ll solve for y, label it L(x), and give it the name linearization: L(x)=f(a)+f(a)(xa)

Note This is called linearization, a linear approximation, or the first-order Taylor Polynomial1 for f at x=a.

Example #

Approximate y=sin(x) for x values near 0.

Since f(x)f(a)+f(a)(xa)

Find a,f(a),f(x), and f(a) to find the linear approximation.

Give it a try before revealing the solution here:

Click to reveal the answer. a=0. And since f(x)=cosx, we have f(0)=1 and f(0)=sin(0)=0. So we have: L(x)=f(a)+f(a)(xa)=0+1(x)=x So sin(x)x when x is near 0, with x measured in radians.

Now let’s use the approximation to approximate sin(1).

Click to reveal the answer. Since 1=π/1800.0175, sin(1)=sin(π/180)π/1800.0175 Which is pretty good, since [sin(1)](https://www.wolframalpha.com/input/?i=sin%281+degree%29) on the calculator is approximately 0.017452...

Example #

  1. Find the linearization of 324x5 around x=0.
  2. Use that linearization to approximate 27.99

Example: #

Evaluating 3.99 in two ways, once, centering on x=0, and second, centering on x=4:

To approximate around x=0, we need the function that you’re using to approximate to be sqrt(4-x):

Here’s using the given function: #

and in order to get 3.99, you need to plug in x=0.01.

On the other hand, here’s using the function x around x=4. Notice that you’ll still get the same answers, but the x values you’re using are very different

here to approximate 3.99 you need to plug in x=3.99.

Differentials #

Recall that f(x)= change in y’s change in x’s

so f(x)ΔyΔx and let Δx0, we get Leibniz notation:

f(x)=dydx and solving for dy we get the differentials dy=f(x)dx

This defines the differential dy in terms of the variables x and dx.

Example #

If f(x)=x+1, find dy.

Solution: (try it before revealing the spoiler)

Click to reveal the answer. Since f(x)=12x+1 then dy=f(x)dx=dx2x+1

Connection of differentials to linear approximations #

f(a+dx)f(a)+dy a tiny, tiny change in dx changes the function by the tiny, tiny change dy.

For concrete (less tiny) changes, we’ll write Δx and Δy to have:

f(a+Δx)f(a)+Δy

Example #

For example, using f(x)=x+1, let a=3 and Δx=0.1, find the approximation of 4.1

Solution: set up f(3+Δx)=f(3+0.1) =f(3.1) =3.1+1 so f(3+Δx)=4.1f(3)+Δy f(3)+Δx23+1 =3+1+0.123+1 =2+0.14 =2.025

… note that the calculator says 4.12.02484, so we’re pretty close!


  1. In calculus 2, we’ll be studying higher order Taylor Polynomials that are much better at approximating our values. ↩︎