Examples of Linear Approximation

Size: px
Start display at page:

Download "Examples of Linear Approximation"

Transcription

1 M28Spring07 J. Simon Examples of Linear Approximation Here are several examples of using derivatives to find the "best" linear [I'd rather say "affine", but the text says "linear"] approximation to a given function at a particular point. This all is a generalization of the idea that a line tangent to a curve is a close approximation to that curve around the point of tangency. > with(plots):with(linalg):with(plottools): Warning, the name changecoords has been redefined Warning, the protected names norm and trace have been redefined and unprotected Warning, the assigned name arrow now has a global binding EXAMPLE Let's start by thinking of Calc I situations. The function f(x) = x^2 and the function g(x) = x+3 both have value 9 when x=3. > f:=x->x^2; g:=x->x+6; > plot({f(x), g(x)}, x=2..4); f := x x 2 g := x x + 6

2 x Since both functions are continuous, it is true that the limit of f(x) as x--> 3 is f(3) = 9, and the limit of g(x) as x approaches 3 is g(3) = also 9. So we could say > Limit(abs(`f(x)-g(x)`),x=3)=0; lim x 3 f(x)-g(x) = 0 So the function g(x)=x+6 is *some kind* of linear [again, I'd prefer the word "affine"] approximation of f(x) for points x near 3. For example, at the point x=3.0 > f(3.0); > g(3.0); > abs(f(3.0)-g(3.0)); When we move x by amount 0.0 from value x=3, the difference between f(x) and g(x) is around 0.05, or 5

3 times the change in x. Of all the linear functions g(x) that have g(3)=9, there is one that is the "best" approximation to f(x). We get this by making the slope of g(x) the same as the slope of f(x) at x=3. We find that slope by taking the derivative of f, that is f ' (3). > dfdx:=diff(f(x),x); dfdx := 2 x > dfdx_at3:=subs(x=3,dfdx); dfdx_at3 := 6 We want to define a linear function h(x) that has two properties: slope = 6, and value h(3)=9. You know a nice way to do this - the "point-slope" form of equation for a line. Instead of writing "y-y = m(x-x)", we write "y = y + m(x-x)". That says the same thing. Note that 9+6(x-3) simplifies to 6x-9. > h:=x->9+6*(x-3); > plot({f(x), h(x)}, x=2..4); h := x x x

4 Notice that when x is near 3, the graphs of f and g are almost identical. Let's see what the difference between them is for some point near x=3. > f(3.0); > h(3.0); > abs(f(3.0)-h(3.0)); Notice that when we move the domain point by 0.0, we get a change of in the output. Another way to capture this improvement is to observe that not only does f(x)-h(x) go to 0 as x-->3, but in fact the ratio f(x)-h(x) / x-3 goes to 0 as x-->3. > Error:=abs(`f(x)-h(x)`); Error := f(x)-h(x) > Error:=x->abs(f(x)-h(x)); Error := x f( x) - h( x) > EvenThisIsSmall:=x->Error(x)/abs(x-3); EvenThisIsSmall := x Error( x) x - 3 > EvenThisIsSmall(3.); > EvenThisIsSmall(3.0); > EvenThisIsSmall(3.00); Note that as x-->3, the value of EvenThisIsSmall goes to 0 at the same rate as the difference between x and 3. > Limit(Error(x)/abs(x-3),x=3)=0; æ ç lim ç x 3 è x x x - 3 Remark. You learned in Calc I some algebra tricks for checking such a limit. That is not my emphasis here, but just to remind you... > factor(x^2+9-6*x); ( x - 3) 2 ö ø = 0

5 So the numerator factors as (x-3)^2; we divide top and bottom by (x-3) to get that the quotient really is (up to + or -) just x-3, which certainly goes to 0 as x--> 3. Let's do one more example from Calc I. EXAMPLE 2 > f:=x->sin(x); f := x sin( x) Let's find a linear approximation to f near the domain point x=. > evalf(f()); > dfdx:=diff(f(x),x); > evalf(subs(x=,dfdx)); dfdx := cos( x) So we want a linear function h(x) that has h()= , and that has slope = > h:=x-> *(x-); h := x ( x - ) > simplify(h(x)); x > plot({f(x),h(x)}, x=0..2);

6 x Note that when x is close to, the functions f(x) and h(x) are very close - they are "tangent" at x=. Let's check the error...look at (how much to f and h differ) divided by (how far have we moved x from the point where h=f). > E:=(f(.)-h(.))/(0.); > E2:=(f(.0)-h(.0))/(0.0); E := E2 := > E3:=(f(.00)-h(.00))/(0.00); E3 := Notice that as x-->, not only do h(x) and f(x) get close, but they get so close that even when we divide the difference by the tiny numbers (x-), the quotient still goes towards 0. ################################

7 EXAMPLE 3 Now let's look at an example where f is a function of 2 variables. > f:=(x,y)->x^2/y+sin(y); f := ( x, y) x 2 y + sin( y) > plot3d([x,y,f(x,y)], x=0..3, y=..4, axes=boxed, labels=[x,y,z], orientation=[-58,64]); Z X Y Let's construct a linear approximation of f(x,y) near the domain point (x,y)= (2,2). > f22:=f(2,2);f22:=evalf(%); f22 := 2 + sin( 2) f22 :=

8 > Df:=[diff(f(x,y),x),diff(f(x,y),y)]; Df := 2 x y, - x 2 + cos( y) ù y 2 > Df22:=subs(x=2,y=2,Df);Df22:=evalf(%); Df22 := [ 2, - + cos( 2) ] Df22 := [ 2., ] > h:=(x,y)->f22+df22[]*(x-2)+df22[2]*(y-2); h := ( x, y) f22 + Df22 ( x - 2) + Df22 2 ( y - 2) > h(x,y); x y Let's check that we did this correctly, so that h(2,2) = f(2,2), and df/dx = dh/dx, df/dy = dh/dy at point (2,2). > h(2,2); > f(2,2);evalf(%); > diff(h(x,y),x); > diff(h(x,y),y); 2 + sin( 2) Since h is a linear function, dh/dx and dh/dy are constant. And they are constant with values equal to the partial derivatives of f at point (2,2). Now let's see the graphs: > plotsurface:=plot3d([x,y,f(x,y)], x=0..3, y=..4, axes=boxed, labels=[x,y,z], orientation=[-58,64], grid=[0,0]): > plotplane:=plot3d([x,y,h(x,y)], x=0..3.5, y=..4.5, axes=boxed, labels=[x,y,z], orientation=[-58,64], style=patchnogrid, color=blue): > plotpoint:=sphere([2,2, ],., color=black): > display({plotsurface, plotplane, plotpoint});

9 Z X Y 4.5 Now let's see how f(x,y) and h(x,y) differ for points (x,y) close to (2,2). > for i from to 5 do delta_x:=/(2*i); delta_y:=/(3*i); DiffBetFandH:=evalf(f(2+delta_x, 2+delta_y)-h(2+delta_x, 2+delta_y)); SizeOfPerturbation:=evalf(sqrt(delta_x^2+delta_y^2)); HopeQuotientGoesToZero:=evalf(DiffBetFandH/SizeOfPerturbation); od; delta_x := 2 3 DiffBetFandH := SizeOfPerturbation := HopeQuotientGoesToZero := delta_x := 4

10 6 DiffBetFandH := SizeOfPerturbation := HopeQuotientGoesToZero := delta_x := 6 9 DiffBetFandH := SizeOfPerturbation := HopeQuotientGoesToZero := delta_x := 8 2 DiffBetFandH := SizeOfPerturbation := HopeQuotientGoesToZero := delta_x := 0 5 DiffBetFandH := SizeOfPerturbation := HopeQuotientGoesToZero := > for i from 00 by 00 to 500 do delta_x:=/(2*i); delta_y:=/(3*i); DiffBetFandH:=evalf(f(2+delta_x, 2+delta_y)-h(2+delta_x, 2+delta_y)); SizeOfPerturbation:=evalf(sqrt(delta_x^2+delta_y^2)); HopeQuotientGoesToZero:=evalf(DiffBetFandH/SizeOfPerturbation); od; delta_x := DiffBetFandH := SizeOfPerturbation := HopeQuotientGoesToZero :=

11 delta_x := DiffBetFandH := SizeOfPerturbation := HopeQuotientGoesToZero := delta_x := DiffBetFandH := SizeOfPerturbation := HopeQuotientGoesToZero := delta_x := DiffBetFandH := SizeOfPerturbation := HopeQuotientGoesToZero := delta_x := DiffBetFandH := SizeOfPerturbation := HopeQuotientGoesToZero := The convergence is not quick, but it does still seem that as (x,y) --> (2,2), the functions f(x,y) and h(x,y) are so close that the quiotient (f(x,y)-h(x,y)) / (x-2, y-2) approaches 0. > for i from 000 by 000 to 5000 do delta_x:=/(2*i); delta_y:=/(3*i); DiffBetFandH:=evalf(f(2+delta_x, 2+delta_y)-h(2+delta_x, 2+delta_y)); SizeOfPerturbation:=evalf(sqrt(delta_x^2+delta_y^2)); HopeQuotientGoesToZero:=evalf(DiffBetFandH/SizeOfPerturbation); od;

12 CONCLUSION: delta_x := DiffBetFandH := SizeOfPerturbation := HopeQuotientGoesToZero := delta_x := DiffBetFandH := SizeOfPerturbation := HopeQuotientGoesToZero := delta_x := DiffBetFandH := SizeOfPerturbation := HopeQuotientGoesToZero := delta_x := DiffBetFandH := SizeOfPerturbation := HopeQuotientGoesToZero := delta_x := DiffBetFandH := SizeOfPerturbation := HopeQuotientGoesToZero := THE ABOVE EXAMPLES ILLUSTRATE THE FOLLOWING PRINCIPLE:

13 For a function f(x,y), around a point (a,b), the affine function h(x,y) = f(a,b) + (df/dx)(x-a) + (df/dy)(y-b) [here the partial derivatives are evaluated at (x,y) = (a,b)] is the best possible affine approximation of f(x,y). In particular, the limit as (x,y) approaches (a,b) is... > Limit(abs(`f(x,y)-h(x,y)`)/abs(`(x,y)-(a,b)`)) = 0; æ f(x,y)-h(x,y) ö Limitç = 0 ç (x,y)-(a,b) è ø This is actually the formal definition of "differentiable function". We say that f(x,y) is differentiable at the point (a,b) IF THERE EXISTS an affine function h(x,y) with the above property. ################ EXAMPLE 4 Example of non-differentiable function: > f:=(x,y)->+sqrt(x^2+y^2); f := ( x, y) + x 2 + y 2 > PlotCone:=plot3d([x,y,f(x,y)], x=-2..2, y=-2..2, axes=boxed, labels=[x,y,z], orientation=[-58,64], grid=[,]): > PlotPlane:=plot3d( [x,y,.*x+.2*y+],x=-2..2, y=-2..2, axes=boxed, labels=[x,y,z], orientation=[-58,64], grid=[5,5], color=tan): > display({plotcone,plotplane});

14 Z X Y There are many planes that pass through the point (0,0,); equivalently, there are many affine functions h(x,y) that agree with f(x,y) at the point (x,y)=(0,0). But there is no plane tangent to the cone at that point; equivalently, there is no affine function h(x,y) that is so close to f(x,y) near (0,0) that the quotients f(x,y)-h(x,y) / (x,y) - (0,0) would be near 0. ########################### EXAMPLE 5 Here is one more example of a differentiable function and its "best affine approximation". Suppose f is a function with 2-dimensional input and 2-dimensional output, that is f: R^2 --> R^2. For example, > f:=(x,y)->[x^2*y, x^2-y^2]; f := ( x, y) [ x 2 y, x 2 - y 2 ] Let's consider the domain point (x,y)=(2,3). Just as in the simpler examples above, we want to define an affine

15 function of the form h(x,y) = f(2,3) + Df(2,3)*[x-2,y-3]. Here f(2,3) is a 2-dimensional vector, and the "derivative" Df(2,3) is the 2x2 matrix of partial derivatives. > DfMatrix:=matrix([[Diff(f(x,y)[],x), Diff(f(x,y)[],y)],[Diff(f(x,y)[2],x), Diff(f(x,y)[2],y)]]); Evaluate the partial derivatives to get DfMatrix := ( x x 2 y) ( x x 2 - y 2 ) y x 2 ù ( y) ( y x 2 - y 2 ) > Df:=matrix([[diff(f(x,y)[],x), diff(f(x,y)[],y)],[diff(f(x,y)[2],x), diff(f(x,y)[2],y)]]); Df := 2 x y x 2 ù 2 x -2 y Plug in x=2, y=3 to get the derivative matrix Df at the point (2,3), that is Df(2,3). > Df23:=matrix([[2*2*3, 2^2],[2*2, -2*3]]); Df23 := 2 4ù 4-6 To define h(x,y), we also need to know the value (here a vector) of f(2,3). > f(2,3); [ 2, -5] So now we can write out h(x,y). [There is a problem with notation. When we write the derivative matrix of f acting on the vector [x-2, y-3], the right way to do that is to write [x-2, y-3] as a column vector; then the "action" of the matrix Df(2,3) is just matrix multiplication. Then we need also to write the constant vector f(2,3)=[2,-5] as a column vector too. Maple is a little awkward with this; don't worry about the red Maple commands that I am using to do this, just look at the

16 resulting blue results.] > print(`h`=matrix([[2],[-5]])+ evalm(df23)* matrix([[x-2],[y-3]])); h = 2ù ù 4-6 x - 2ù y - 3 > h:=(x,y)->matrix([[2+2*(x-2)+4*(y-3)],[-5+4*(x-2)-6*(y-3)]]); x + 4 yù h := ( x, y) x - 6 y To compare h(x,y) with f(x,y), we should also write the output of f(x,y) as a column vector. > F:=(x,y)->matrix([[f(x,y)[]], [f(x,y)[2]]]);f(x,y); f( x, y) ù F := ( x, y) x 2 y ù x 2 - y 2 f( x, y) We claim that ff is very close to h(x,y) when (x,y) is near (2,3); so close, that if we divide the difference by the size (x,y)-(2,3), we still get something very small. Here are some examples to see if this is right. Case. (x,y) = (2.0, 3.02) > F(2.0,3.02); ù > h(2.0, 3.02); 2.20ù > ErrorVector:=F(2.0,3.02)-h(2.0,3.02);ErrorVector:=evalm(%); ù 2.20ù ErrorVector := ErrorVector := ù

17 > SizeOfErrorVector:=sqrt(ErrorVector[,]^2 + ErrorVector[2,]^2); SizeOfErrorVector := > Perturbation:=evalm([[.0], [.02]]); Perturbation := 0.0ù 0.02 > SizeOfPerturbation:=sqrt(Perturbation[,]^2+Perturbation[2,]^2); SizeOfPerturbation := > Quotient:=SizeOfErrorVector/SizeOfPerturbation; Quotient := So not only is h(x,y) close to f(x,y), but the difference is so small that we can divide it by.02 and still get a small number. Let's try a smaller perturbation, and then declare "Victory" for this topic. Case 2. (x,y) = (2.0003, 3.000) > F(2.0003,3.000); > h(2.0003, 3.000); ù ù > ErrorVector:=F(2.0003,3.000)-h(2.0003,3.000);ErrorVector:=evalm(%); ErrorVector := ErrorVector := ù ù ù > SizeOfErrorVector:=sqrt(ErrorVector[,]^2 + ErrorVector[2,]^2); SizeOfErrorVector := > Perturbation:=evalm([[.0003], [.000]]); Perturbation := ù 0.000

18 > SizeOfPerturbation:=sqrt(Perturbation[,]^2+Perturbation[2,]^2); SizeOfPerturbation := > Quotient:=SizeOfErrorVector/SizeOfPerturbation; Quotient := The Quotient is not as small as the perturbation, but still it is smaller than the previous Quotient. As the perturbation gets closer to 0, the Quotient gets closer to 0. This says that our affine function h(x,y) is tangent to the given function f(x,y) at the point (2,3). ########## End of Handout #############

13.6 Directional derivatives,

13.6 Directional derivatives, 13.5 The chain rule Theorem [Chain Rule for Functions of Two Variables] If w = f ( x, y ) is differentiable and x and y are differentiable functions of t, then w is a differentiable function of t and dw

More information

Derivatives. Day 8 - Tangents and Linearizations

Derivatives. Day 8 - Tangents and Linearizations Derivatives Day 8 - Tangents and Linearizations Learning Objectives Write an equation for the tangent line to a graph Write an equation for the normal line to a graph Find the locations of horizontal and

More information

Differentiability and Tangent Planes October 2013

Differentiability and Tangent Planes October 2013 Differentiability and Tangent Planes 14.4 04 October 2013 Differentiability in one variable. Recall for a function of one variable, f is differentiable at a f (a + h) f (a) lim exists and = f (a) h 0 h

More information

Second-Order Polynomial Approximation

Second-Order Polynomial Approximation > with(plots): Warning, the name changecoords has been redefined M:8 Spring 7 J. Simon Second-Order Polynomial Approimation In Calc I or II, you studied Taylor polynomial approimations. If y=f() is some

More information

Approximate First and Second Derivatives

Approximate First and Second Derivatives MTH229 Project 6 Exercises Approximate First and Second Derivatives NAME: SECTION: INSTRUCTOR: Exercise 1: Let f(x) = sin(x 2 ). We wish to find the derivative of f when x = π/4. a. Make a function m-file

More information

AP Calculus AB Unit 2 Assessment

AP Calculus AB Unit 2 Assessment Class: Date: 203-204 AP Calculus AB Unit 2 Assessment Multiple Choice Identify the choice that best completes the statement or answers the question. A calculator may NOT be used on this part of the exam.

More information

Topic 2.3: Tangent Planes, Differentiability, and Linear Approximations. Textbook: Section 14.4

Topic 2.3: Tangent Planes, Differentiability, and Linear Approximations. Textbook: Section 14.4 Topic 2.3: Tangent Planes, Differentiability, and Linear Approximations Textbook: Section 14.4 Warm-Up: Graph the Cone & the Paraboloid paraboloid f (x, y) = x 2 + y 2 cone g(x, y) = x 2 + y 2 Do you notice

More information

Finding local maxima and minima for functions z=f(x,y) [the cookbook]

Finding local maxima and minima for functions z=f(x,y) [the cookbook] 22M:28 Spring 7 J. Simon Finding local maxima and minima for functions z=f(x,y) [the cookbook] with(plots): I want very much for you to understand all the math that goes in to the process of finding points

More information

MATH 19520/51 Class 6

MATH 19520/51 Class 6 MATH 19520/51 Class 6 Minh-Tam Trinh University of Chicago 2017-10-06 1 Review partial derivatives. 2 Review equations of planes. 3 Review tangent lines in single-variable calculus. 4 Tangent planes to

More information

Functions of Several Variables, Limits and Derivatives

Functions of Several Variables, Limits and Derivatives Functions of Several Variables, Limits and Derivatives Introduction and Goals: The main goal of this lab is to help you visualize surfaces in three dimensions. We investigate how one can use Maple to evaluate

More information

4 Visualization and. Approximation

4 Visualization and. Approximation 4 Visualization and Approximation b A slope field for the differential equation y tan(x + y) tan(x) tan(y). It is not always possible to write down an explicit formula for the solution to a differential

More information

Announcements. Topics: To Do:

Announcements. Topics: To Do: Announcements Topics: In the Functions of Several Variables module: - Section 3: Limits and Continuity - Section 4: Partial Derivatives - Section 5: Tangent Plane, Linearization, and Differentiability

More information

Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives

Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives In general, if f is a function of two variables x and y, suppose we let only x vary while keeping y fixed, say y = b, where b is a constant. By the definition of a derivative, we have Then we are really

More information

Objectives. Materials

Objectives. Materials Activity 6 Local Linearity, Differentiability, and Limits of Difference Quotients Objectives Connect the concept of local linearity to differentiability through numerical explorations of limits of difference

More information

Level Curves and Contour Maps (sec 14.1) & Partial Derivatives (sec 14.3) Today, We Will: Level Curves. Notes. Notes. Notes.

Level Curves and Contour Maps (sec 14.1) & Partial Derivatives (sec 14.3) Today, We Will: Level Curves. Notes. Notes. Notes. Level Curves and Contour Maps (sec 14.1) & Partial Derivatives (sec 14.3) 11 February 2015 Today, We Will: Wrap-up our discussion of level curves and contour maps. Define partial derivatives of a function

More information

Sec 4.1 Coordinates and Scatter Plots. Coordinate Plane: Formed by two real number lines that intersect at a right angle.

Sec 4.1 Coordinates and Scatter Plots. Coordinate Plane: Formed by two real number lines that intersect at a right angle. Algebra I Chapter 4 Notes Name Sec 4.1 Coordinates and Scatter Plots Coordinate Plane: Formed by two real number lines that intersect at a right angle. X-axis: The horizontal axis Y-axis: The vertical

More information

2.9 Linear Approximations and Differentials

2.9 Linear Approximations and Differentials 2.9 Linear Approximations and Differentials 2.9.1 Linear Approximation Consider the following graph, Recall that this is the tangent line at x = a. We had the following definition, f (a) = lim x a f(x)

More information

Worksheet 2.7: Critical Points, Local Extrema, and the Second Derivative Test

Worksheet 2.7: Critical Points, Local Extrema, and the Second Derivative Test Boise State Math 275 (Ultman) Worksheet 2.7: Critical Points, Local Extrema, and the Second Derivative Test From the Toolbox (what you need from previous classes) Algebra: Solving systems of two equations

More information

Section 1: Section 2: Section 3: Section 4:

Section 1: Section 2: Section 3: Section 4: Announcements Topics: In the Functions of Several Variables module: - Section 1: Introduction to Functions of Several Variables (Basic Definitions and Notation) - Section 2: Graphs, Level Curves + Contour

More information

Practice with Parameterizing Curves and Surfaces. (Part 1)

Practice with Parameterizing Curves and Surfaces. (Part 1) M:8 Spring 7 J. Simon Practice with Parameterizing Curves and Surfaces (Part ) A "parameter" is a number used to measure something. In particular, if we want to describe and analyzie some curve or surface

More information

x 6 + λ 2 x 6 = for the curve y = 1 2 x3 gives f(1, 1 2 ) = λ actually has another solution besides λ = 1 2 = However, the equation λ

x 6 + λ 2 x 6 = for the curve y = 1 2 x3 gives f(1, 1 2 ) = λ actually has another solution besides λ = 1 2 = However, the equation λ Math 0 Prelim I Solutions Spring 010 1. Let f(x, y) = x3 y for (x, y) (0, 0). x 6 + y (4 pts) (a) Show that the cubic curves y = x 3 are level curves of the function f. Solution. Substituting y = x 3 in

More information

The Bisection Method versus Newton s Method in Maple (Classic Version for Windows)

The Bisection Method versus Newton s Method in Maple (Classic Version for Windows) The Bisection Method versus (Classic Version for Windows) Author: Barbara Forrest Contact: baforres@uwaterloo.ca Copyrighted/NOT FOR RESALE version 1.1 Contents 1 Objectives for this Lab i 2 Approximate

More information

Calculus I Review Handout 1.3 Introduction to Calculus - Limits. by Kevin M. Chevalier

Calculus I Review Handout 1.3 Introduction to Calculus - Limits. by Kevin M. Chevalier Calculus I Review Handout 1.3 Introduction to Calculus - Limits by Kevin M. Chevalier We are now going to dive into Calculus I as we take a look at the it process. While precalculus covered more static

More information

Partial Derivatives (Online)

Partial Derivatives (Online) 7in x 10in Felder c04_online.tex V3 - January 21, 2015 9:44 A.M. Page 1 CHAPTER 4 Partial Derivatives (Online) 4.7 Tangent Plane Approximations and Power Series It is often helpful to use a linear approximation

More information

Direction Fields; Euler s Method

Direction Fields; Euler s Method Direction Fields; Euler s Method It frequently happens that we cannot solve first order systems dy (, ) dx = f xy or corresponding initial value problems in terms of formulas. Remarkably, however, this

More information

Lagrange Multipliers

Lagrange Multipliers Lagrange Multipliers Introduction and Goals: The goal of this lab is to become more familiar with the process and workings of Lagrange multipliers. This lab is designed more to help you understand the

More information

Graphing and Equations

Graphing and Equations Graphing and Equations Plotting Functions (Graphing) Let's see how to plot the graphs of functions. If we want to graph the function f(x) on the interval [a,b] then we type in: plot(f(x), x=a..b) That

More information

Worksheet 2.2: Partial Derivatives

Worksheet 2.2: Partial Derivatives Boise State Math 275 (Ultman) Worksheet 2.2: Partial Derivatives From the Toolbox (what you need from previous classes) Be familiar with the definition of a derivative as the slope of a tangent line (the

More information

Principles of Linear Algebra With Maple TM The Newton Raphson Method

Principles of Linear Algebra With Maple TM The Newton Raphson Method Principles of Linear Algebra With Maple TM The Newton Raphson Method Kenneth Shiskowski and Karl Frinkle c Draft date July 26, 2010 Contents 1 The Newton-Raphson Method for a Single Equation 1 1.1 The

More information

Differentiation. The Derivative and the Tangent Line Problem 10/9/2014. Copyright Cengage Learning. All rights reserved.

Differentiation. The Derivative and the Tangent Line Problem 10/9/2014. Copyright Cengage Learning. All rights reserved. Differentiation Copyright Cengage Learning. All rights reserved. The Derivative and the Tangent Line Problem Copyright Cengage Learning. All rights reserved. 1 Objectives Find the slope of the tangent

More information

Downloaded from

Downloaded from 1 Class XI: Math Chapter 13: Limits and Derivatives Chapter Notes Key-Concepts 1. The epected value of the function as dictated by the points to the left of a point defines the left hand it of the function

More information

Hw 4 Due Feb 22. D(fg) x y z (

Hw 4 Due Feb 22. D(fg) x y z ( Hw 4 Due Feb 22 2.2 Exercise 7,8,10,12,15,18,28,35,36,46 2.3 Exercise 3,11,39,40,47(b) 2.4 Exercise 6,7 Use both the direct method and product rule to calculate where f(x, y, z) = 3x, g(x, y, z) = ( 1

More information

What you will learn today

What you will learn today What you will learn today Tangent Planes and Linear Approximation and the Gradient Vector Vector Functions 1/21 Recall in one-variable calculus, as we zoom in toward a point on a curve, the graph becomes

More information

Learning Packet. Lesson 6 Exponents and Rational Functions THIS BOX FOR INSTRUCTOR GRADING USE ONLY

Learning Packet. Lesson 6 Exponents and Rational Functions THIS BOX FOR INSTRUCTOR GRADING USE ONLY Learning Packet Student Name Due Date Class Time/Day Submission Date THIS BOX FOR INSTRUCTOR GRADING USE ONLY Mini-Lesson is complete and information presented is as found on media links (0 5 pts) Comments:

More information

Quiz 6 Practice Problems

Quiz 6 Practice Problems Quiz 6 Practice Problems Practice problems are similar, both in difficulty and in scope, to the type of problems you will see on the quiz. Problems marked with a are for your entertainment and are not

More information

c x y f() f (x) Determine the Determine the Approximate c : Replacin on the AP exam: under-approximation

c x y f() f (x) Determine the Determine the Approximate c : Replacin on the AP exam: under-approximation Tangent Lines and Linear Approximations Students should be able to: Determine the slope of tangent line to a curve at a point Determine the equations of tangent lines and normal lines Approximate a value

More information

Euler s Method for Approximating Solution Curves

Euler s Method for Approximating Solution Curves Euler s Method for Approximating Solution Curves As you may have begun to suspect at this point, time constraints will allow us to learn only a few of the many known methods for solving differential equations.

More information

Lab#1: INTRODUCTION TO DERIVE

Lab#1: INTRODUCTION TO DERIVE Math 111-Calculus I- Fall 2004 - Dr. Yahdi Lab#1: INTRODUCTION TO DERIVE This is a tutorial to learn some commands of the Computer Algebra System DERIVE. Chapter 1 of the Online Calclab-book (see my webpage)

More information

Objectives. Materials. Teaching Time

Objectives. Materials. Teaching Time Teacher Notes Activity 6 Local Linearity, Differentiability, and Limits of Difference Quotients Objectives Connect the concept of local linearity to differentiability through numerical explorations of

More information

Linear Transformations

Linear Transformations Linear Transformations The two basic vector operations are addition and scaling From this perspective, the nicest functions are those which preserve these operations: Def: A linear transformation is a

More information

t dt ds Then, in the last class, we showed that F(s) = <2s/3, 1 2s/3, s/3> is arclength parametrization. Therefore,

t dt ds Then, in the last class, we showed that F(s) = <2s/3, 1 2s/3, s/3> is arclength parametrization. Therefore, 13.4. Curvature Curvature Let F(t) be a vector values function. We say it is regular if F (t)=0 Let F(t) be a vector valued function which is arclength parametrized, which means F t 1 for all t. Then,

More information

Unit #19 : Level Curves, Partial Derivatives

Unit #19 : Level Curves, Partial Derivatives Unit #19 : Level Curves, Partial Derivatives Goals: To learn how to use and interpret contour diagrams as a way of visualizing functions of two variables. To study linear functions of two variables. To

More information

a translation by c units a translation by c units

a translation by c units a translation by c units 1.6 Graphical Transformations Introducing... Translations 1.) Set your viewing window to [-5,5] by [-5,15]. 2.) Graph the following functions: y 1 = x 2 y 2 = x 2 + 3 y 3 = x 2 + 1 y 4 = x 2-2 y 5 = x

More information

d f(g(t), h(t)) = x dt + f ( y dt = 0. Notice that we can rewrite the relationship on the left hand side of the equality using the dot product: ( f

d f(g(t), h(t)) = x dt + f ( y dt = 0. Notice that we can rewrite the relationship on the left hand side of the equality using the dot product: ( f Gradients and the Directional Derivative In 14.3, we discussed the partial derivatives f f and, which tell us the rate of change of the x y height of the surface defined by f in the x direction and the

More information

Representations of Curves and Surfaces, and of their Tangent Lines, and Tangent Planes in R 2 and R 3 Robert L.Foote, Fall 2007

Representations of Curves and Surfaces, and of their Tangent Lines, and Tangent Planes in R 2 and R 3 Robert L.Foote, Fall 2007 CurvesAndSurfaces.nb Representations of Curves and Surfaces, and of their Tangent Lines, and Tangent Planes in R and R 3 Robert L.Foote, Fall 007 Curves and Surfaces Graphs ü The graph of f : Æ is a curve

More information

we wish to minimize this function; to make life easier, we may minimize

we wish to minimize this function; to make life easier, we may minimize Optimization and Lagrange Multipliers We studied single variable optimization problems in Calculus 1; given a function f(x), we found the extremes of f relative to some constraint. Our ability to find

More information

Exam 1 Review. MATH Intuitive Calculus Fall Name:. Show your reasoning. Use standard notation correctly.

Exam 1 Review. MATH Intuitive Calculus Fall Name:. Show your reasoning. Use standard notation correctly. MATH 11012 Intuitive Calculus Fall 2012 Name:. Exam 1 Review Show your reasoning. Use standard notation correctly. 1. Consider the function f depicted below. y 1 1 x (a) Find each of the following (or

More information

Math 21a Tangent Lines and Planes Fall, What do we know about the gradient f? Tangent Lines to Curves in the Plane.

Math 21a Tangent Lines and Planes Fall, What do we know about the gradient f? Tangent Lines to Curves in the Plane. Math 21a Tangent Lines and Planes Fall, 2016 What do we know about the gradient f? Tangent Lines to Curves in the Plane. 1. For each of the following curves, find the tangent line to the curve at the point

More information

INTRODUCTION TO DERIVE - by M. Yahdi

INTRODUCTION TO DERIVE - by M. Yahdi Math 111/112-Calculus I & II- Ursinus College INTRODUCTION TO DERIVE - by M. Yahdi This is a tutorial to introduce main commands of the Computer Algebra System DERIVE. You should do (outside of class)

More information

Math 20A lecture 10 The Gradient Vector

Math 20A lecture 10 The Gradient Vector Math 20A lecture 10 p. 1/12 Math 20A lecture 10 The Gradient Vector T.J. Barnet-Lamb tbl@brandeis.edu Brandeis University Math 20A lecture 10 p. 2/12 Announcements Homework five posted, due this Friday

More information

CS4670: Computer Vision

CS4670: Computer Vision CS4670: Computer Vision Noah Snavely Lecture 9: Image alignment http://www.wired.com/gadgetlab/2010/07/camera-software-lets-you-see-into-the-past/ Szeliski: Chapter 6.1 Reading All 2D Linear Transformations

More information

The derivative of a function at one point. 1. Secant lines and tangents. 2. The tangent problem

The derivative of a function at one point. 1. Secant lines and tangents. 2. The tangent problem 1. Secant lines and tangents The derivative of a function at one point A secant line (or just secant ) is a line passing through two points of a curve. As the two points are brought together (or, more

More information

3. The three points (2, 4, 1), (1, 2, 2) and (5, 2, 2) determine a plane. Which of the following points is in that plane?

3. The three points (2, 4, 1), (1, 2, 2) and (5, 2, 2) determine a plane. Which of the following points is in that plane? Math 4 Practice Problems for Midterm. A unit vector that is perpendicular to both V =, 3, and W = 4,, is (a) V W (b) V W (c) 5 6 V W (d) 3 6 V W (e) 7 6 V W. In three dimensions, the graph of the equation

More information

REVIEW I MATH 254 Calculus IV. Exam I (Friday, April 29) will cover sections

REVIEW I MATH 254 Calculus IV. Exam I (Friday, April 29) will cover sections REVIEW I MATH 254 Calculus IV Exam I (Friday, April 29 will cover sections 14.1-8. 1. Functions of multivariables The definition of multivariable functions is similar to that of functions of one variable.

More information

Functions of Several Variables

Functions of Several Variables Functions of Several Variables Directional Derivatives and the Gradient Vector Philippe B Laval KSU April 7, 2012 Philippe B Laval (KSU) Functions of Several Variables April 7, 2012 1 / 19 Introduction

More information

Lesson 24 - Exploring Graphical Transformations and Composite Functions

Lesson 24 - Exploring Graphical Transformations and Composite Functions (A) Lesson Objectives a. Review composite functions and how it can be represented numerically, algebraically and graphically. b. Introduce graphical transformations c. Understand that graphical transformations

More information

GSE Algebra 1 Name Date Block. Unit 3b Remediation Ticket

GSE Algebra 1 Name Date Block. Unit 3b Remediation Ticket Unit 3b Remediation Ticket Question: Which function increases faster, f(x) or g(x)? f(x) = 5x + 8; two points from g(x): (-2, 4) and (3, 10) Answer: In order to compare the rate of change (roc), you must

More information

The Divergence Theorem

The Divergence Theorem The Divergence Theorem MATH 311, Calculus III J. Robert Buchanan Department of Mathematics Summer 2011 Green s Theorem Revisited Green s Theorem: M(x, y) dx + N(x, y) dy = C R ( N x M ) da y y x Green

More information

Walt Whitman High School SUMMER REVIEW PACKET. For students entering AP CALCULUS BC

Walt Whitman High School SUMMER REVIEW PACKET. For students entering AP CALCULUS BC Walt Whitman High School SUMMER REVIEW PACKET For students entering AP CALCULUS BC Name: 1. This packet is to be handed in to your Calculus teacher on the first day of the school year.. All work must be

More information

SYSTEMS OF NONLINEAR EQUATIONS

SYSTEMS OF NONLINEAR EQUATIONS SYSTEMS OF NONLINEAR EQUATIONS Widely used in the mathematical modeling of real world phenomena. We introduce some numerical methods for their solution. For better intuition, we examine systems of two

More information

Math 326A Exercise 4. Due Wednesday, October 24, 2012.

Math 326A Exercise 4. Due Wednesday, October 24, 2012. Math 326A Exercise 4. Due Wednesday, October 24, 2012. Implicit Function Theorem: Suppose that F(x, y, z) has continuous partial derivatives, and that the gradient P F is nonzero at a point P. Consider

More information

Topic 5-6: Parameterizing Surfaces and the Surface Elements ds and ds. Big Ideas. What We Are Doing Today... Notes. Notes. Notes

Topic 5-6: Parameterizing Surfaces and the Surface Elements ds and ds. Big Ideas. What We Are Doing Today... Notes. Notes. Notes Topic 5-6: Parameterizing Surfaces and the Surface Elements ds and ds. Textbook: Section 16.6 Big Ideas A surface in R 3 is a 2-dimensional object in 3-space. Surfaces can be described using two variables.

More information

Math 10C, Lecture 7. Daniel Smith

Math 10C, Lecture 7. Daniel Smith Math 10C, Lecture 7 Daniel Smith 2016-08-17 First things first Write-ups have been graded! Check TritonEd. See me if your function was not excellent. Homework will be like last week. The next part of the

More information

The Tangent Line as The Best Linear Approximation

The Tangent Line as The Best Linear Approximation The Tangent Line as The Best Linear Approximation Mark Howell Gonzaga High School Arlington, VA A tangent line to a curve, y f (x), at a point where x a has two important properties: it contains the point

More information

CS 130. Scan Conversion. Raster Graphics

CS 130. Scan Conversion. Raster Graphics CS 130 Scan Conversion Raster Graphics 2 1 Image Formation Computer graphics forms images, generally two dimensional, using processes analogous to physical imaging systems like: - Cameras - Human visual

More information

2.1 Derivatives and Rates of Change

2.1 Derivatives and Rates of Change 2.1 Derivatives and Rates of Change In this chapter we study a special type of limit, called a derivative, that occurs when we want to find a slope of a tangent line, or a velocity, or any instantaneous

More information

FUNCTIONS. L f(2)= 2. g(-3)= _ 3. f(t+l)= _. g(x) ) in for x in the outside function (in this case, f(x)).

FUNCTIONS. L f(2)= 2. g(-3)= _ 3. f(t+l)= _. g(x) ) in for x in the outside function (in this case, f(x)). FUNCTIONS To evaluate a function for a given value, simply plug the value into the function for x. Recall: (f 0 g ) (x) = f(g(x)) OR f[g(x)] read 'Jofg of x" Means to plug the inside function (in this

More information

Tangent line problems

Tangent line problems You will find lots of practice problems and homework problems that simply ask you to differentiate. The following examples are to illustrate some of the types of tangent line problems that you may come

More information

Welcome. Please Sign-In

Welcome. Please Sign-In Welcome Please Sign-In Day 1 Session 1 Self-Evaluation Topics to be covered: Equations Systems of Equations Solving Inequalities Absolute Value Equations Equations Equations An equation says two things

More information

14.5 Directional Derivatives and the Gradient Vector

14.5 Directional Derivatives and the Gradient Vector 14.5 Directional Derivatives and the Gradient Vector 1. Directional Derivatives. Recall z = f (x, y) and the partial derivatives f x and f y are defined as f (x 0 + h, y 0 ) f (x 0, y 0 ) f x (x 0, y 0

More information

Practice problems. 1. Given a = 3i 2j and b = 2i + j. Write c = i + j in terms of a and b.

Practice problems. 1. Given a = 3i 2j and b = 2i + j. Write c = i + j in terms of a and b. Practice problems 1. Given a = 3i 2j and b = 2i + j. Write c = i + j in terms of a and b. 1, 1 = c 1 3, 2 + c 2 2, 1. Solve c 1, c 2. 2. Suppose a is a vector in the plane. If the component of the a in

More information

Exact equations are first order DEs of the form M(x, y) + N(x, y) y' = 0 for which we can find a function f(x, φ(x)) so that

Exact equations are first order DEs of the form M(x, y) + N(x, y) y' = 0 for which we can find a function f(x, φ(x)) so that Section 2.6 Exact Equations (ONLY) Key Terms: Exact equations are first order DEs of the form M(x, y) + N(x, y) y' = 0 for which we can find a function f(x, φ(x)) so that The construction of f(x, φ(x))

More information

f(x) = C. (1) f(x,y) = C implies that x 2 + y 2 = C 0. (2)

f(x) = C. (1) f(x,y) = C implies that x 2 + y 2 = C 0. (2) Lecture 4 Level Sets/Contours (Relevant section from Stewart, Calculus, Early Transcendentals, Sixth Edition: 14.1) You are no doubt familiar with the idea of contour plots from geography topographic maps

More information

Math 3 Coordinate Geometry Part 2 Graphing Solutions

Math 3 Coordinate Geometry Part 2 Graphing Solutions Math 3 Coordinate Geometry Part 2 Graphing Solutions 1 SOLVING SYSTEMS OF EQUATIONS GRAPHICALLY The solution of two linear equations is the point where the two lines intersect. For example, in the graph

More information

1 extrema notebook. November 25, 2012

1 extrema notebook. November 25, 2012 Do now as a warm up: Suppose this graph is a function f, defined on [a,b]. What would you say about the value of f at each of these x values: a, x 1, x 2, x 3, x 4, x 5, x 6, and b? What would you say

More information

Math 144 Activity #7 Trigonometric Identities

Math 144 Activity #7 Trigonometric Identities 44 p Math 44 Activity #7 Trigonometric Identities What is a trigonometric identity? Trigonometric identities are equalities that involve trigonometric functions that are true for every single value of

More information

Machine Learning for Signal Processing Lecture 4: Optimization

Machine Learning for Signal Processing Lecture 4: Optimization Machine Learning for Signal Processing Lecture 4: Optimization 13 Sep 2015 Instructor: Bhiksha Raj (slides largely by Najim Dehak, JHU) 11-755/18-797 1 Index 1. The problem of optimization 2. Direct optimization

More information

1. Fill in the right hand side of the following equation by taking the derivative: (x sin x) =

1. Fill in the right hand side of the following equation by taking the derivative: (x sin x) = 7.1 What is x cos x? 1. Fill in the right hand side of the following equation by taking the derivative: (x sin x = 2. Integrate both sides of the equation. Instructor: When instructing students to integrate

More information

Objectives. Materials

Objectives. Materials Activity 13 Objectives Understand what a slope field represents in terms of Create a slope field for a given differential equation Materials TI-84 Plus / TI-83 Plus Graph paper Introduction One of the

More information

Week 5: Geometry and Applications

Week 5: Geometry and Applications Week 5: Geometry and Applications Introduction Now that we have some tools from differentiation, we can study geometry, motion, and few other issues associated with functions of several variables. Much

More information

Gradient and Directional Derivatives

Gradient and Directional Derivatives Gradient and Directional Derivatives MATH 311, Calculus III J. Robert Buchanan Department of Mathematics Fall 2011 Background Given z = f (x, y) we understand that f : gives the rate of change of z in

More information

EXTRA-CREDIT PROBLEMS ON SURFACES, MULTIVARIABLE FUNCTIONS AND PARTIAL DERIVATIVES

EXTRA-CREDIT PROBLEMS ON SURFACES, MULTIVARIABLE FUNCTIONS AND PARTIAL DERIVATIVES EXTRA-CREDIT PROBLEMS ON SURFACES, MULTIVARIABLE FUNCTIONS AND PARTIAL DERIVATIVES A. HAVENS These problems are for extra-credit, which is counted against lost points on quizzes or WebAssign. You do not

More information

2.2 Graphs Of Functions. Copyright Cengage Learning. All rights reserved.

2.2 Graphs Of Functions. Copyright Cengage Learning. All rights reserved. 2.2 Graphs Of Functions Copyright Cengage Learning. All rights reserved. Objectives Graphing Functions by Plotting Points Graphing Functions with a Graphing Calculator Graphing Piecewise Defined Functions

More information

Continuity and Tangent Lines for functions of two variables

Continuity and Tangent Lines for functions of two variables Continuity and Tangent Lines for functions of two variables James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University April 4, 2014 Outline 1 Continuity

More information

Basic Calculator Functions

Basic Calculator Functions Algebra I Common Graphing Calculator Directions Name Date Throughout our course, we have used the graphing calculator to help us graph functions and perform a variety of calculations. The graphing calculator

More information

Repetitive Change: Cycles and Trigonometry & 8.1 Functions on Angles: Sines and Cosines

Repetitive Change: Cycles and Trigonometry & 8.1 Functions on Angles: Sines and Cosines Chapter Repetitive Change: Cycles and Trigonometry &.1 Functions on Angles: Sines and Cosines Before you begin this chapter, go back to the first page of this Guide and check the basic setup, the statistical

More information

Local Linearity (Tangent Plane) Unit #19 : Functions of Many Variables, and Vectors in R 2 and R 3

Local Linearity (Tangent Plane) Unit #19 : Functions of Many Variables, and Vectors in R 2 and R 3 Local Linearity and the Tangent Plane - 1 Unit #19 : Functions of Many Variables, and Vectors in R 2 and R 3 Goals: To introduce tangent planes for functions of two variables. To consider functions of

More information

Geometry Unit 2: Linear. Section Page and Problems Date Assigned

Geometry Unit 2: Linear. Section Page and Problems Date Assigned Geometry Name: Geometry Unit 2: Linear Topics Covered: Midpoint formula Distance formula Slope Slope- Intercept Form Point- Slope Form Standard Form Assignment # Section Page and Problems Date Assigned

More information

CCNY Math Review Chapter 2: Functions

CCNY Math Review Chapter 2: Functions CCN Math Review Chapter : Functions Section.1: Functions.1.1: How functions are used.1.: Methods for defining functions.1.3: The graph of a function.1.: Domain and range.1.5: Relations, functions, and

More information

1 Affine and Projective Coordinate Notation

1 Affine and Projective Coordinate Notation CS348a: Computer Graphics Handout #9 Geometric Modeling Original Handout #9 Stanford University Tuesday, 3 November 992 Original Lecture #2: 6 October 992 Topics: Coordinates and Transformations Scribe:

More information

Inverse and Implicit functions

Inverse and Implicit functions CHAPTER 3 Inverse and Implicit functions. Inverse Functions and Coordinate Changes Let U R d be a domain. Theorem. (Inverse function theorem). If ϕ : U R d is differentiable at a and Dϕ a is invertible,

More information

Directional Derivatives as Vectors

Directional Derivatives as Vectors Directional Derivatives as Vectors John Ganci 1 Al Lehnen 2 1 Richland College Dallas, TX jganci@dcccd.edu 2 Madison Area Technical College Madison, WI alehnen@matcmadison.edu Statement of problem We are

More information

Sung-Eui Yoon ( 윤성의 )

Sung-Eui Yoon ( 윤성의 ) CS480: Computer Graphics Curves and Surfaces Sung-Eui Yoon ( 윤성의 ) Course URL: http://jupiter.kaist.ac.kr/~sungeui/cg Today s Topics Surface representations Smooth curves Subdivision 2 Smooth Curves and

More information

13.5 DIRECTIONAL DERIVATIVES and the GRADIENT VECTOR

13.5 DIRECTIONAL DERIVATIVES and the GRADIENT VECTOR 13.5 Directional Derivatives and te Gradient Vector Contemporary Calculus 1 13.5 DIRECTIONAL DERIVATIVES and te GRADIENT VECTOR Directional Derivatives In Section 13.3 te partial derivatives f x and f

More information

6. Find the equation of the plane that passes through the point (-1,2,1) and contains the line x = y = z.

6. Find the equation of the plane that passes through the point (-1,2,1) and contains the line x = y = z. Week 1 Worksheet Sections from Thomas 13 th edition: 12.4, 12.5, 12.6, 13.1 1. A plane is a set of points that satisfies an equation of the form c 1 x + c 2 y + c 3 z = c 4. (a) Find any three distinct

More information

302 CHAPTER 3. FUNCTIONS OF SEVERAL VARIABLES. 4. Function of several variables, their domain. 6. Limit of a function of several variables

302 CHAPTER 3. FUNCTIONS OF SEVERAL VARIABLES. 4. Function of several variables, their domain. 6. Limit of a function of several variables 302 CHAPTER 3. FUNCTIONS OF SEVERAL VARIABLES 3.8 Chapter Review 3.8.1 Concepts to Know You should have an understanding of, and be able to explain the concepts listed below. 1. Boundary and interior points

More information

Chapter 15: Functions of Several Variables

Chapter 15: Functions of Several Variables Chapter 15: Functions of Several Variables Section 15.1 Elementary Examples a. Notation: Two Variables b. Example c. Notation: Three Variables d. Functions of Several Variables e. Examples from the Sciences

More information

Lesson 4: Numerical Computations; Newton's method

Lesson 4: Numerical Computations; Newton's method Lesson 4: Numerical Computations; Newton's method restart; Catastrophic cancellation in the quadratic formula One case where roundoff error can be severe is if you subtract two numbers that are very close

More information

Directional Derivatives. Directional Derivatives. Directional Derivatives. Directional Derivatives. Directional Derivatives. Directional Derivatives

Directional Derivatives. Directional Derivatives. Directional Derivatives. Directional Derivatives. Directional Derivatives. Directional Derivatives Recall that if z = f(x, y), then the partial derivatives f x and f y are defined as and represent the rates of change of z in the x- and y-directions, that is, in the directions of the unit vectors i and

More information

EXPLORING RATIONAL FUNCTIONS GRAPHICALLY

EXPLORING RATIONAL FUNCTIONS GRAPHICALLY EXPLORING RATIONAL FUNCTIONS GRAPHICALLY Precalculus Project Objectives: To find patterns in the graphs of rational functions. To construct a rational function using its properties. Required Information:

More information