Functions of 2 Variables

Size: px
Start display at page:

Download "Functions of 2 Variables"

Transcription

1 Functions of 2 Variables Functions and Graphs In the last chapter, we extended di erential calculus to vector-valued functions. In this chapter, we extend calculus primarily to functions of two variables, which are functions like f (x; y) = x 2 + y 2 and g (x; y) = sin (x) cos (y) : Intuitively, a function of 2 variables maps points (x; y) in the xy-plane to numbers z on the z-axis (rigorous de nition in part 2). We often denote functions of 2 variables by f (x; y) ; which means the output from an input of (x; y) ; and we often de ne these functions in the form f (x; y) = \expression in x and y Equivalently, we can consider f (x; y) to be the assignment of a real number to a point (x; y) in the xy-plane. EXAMPLE 1 Evaluate f (1; 2) and f (2; 5) if f (x; y) = x 2 + 2xy Solution: To begin with, f (1; 2) = = 5; which is to say that f (x; y) = x 2 + 2xy maps the point (1; 2) to the number 5: Likewise, f (2; 5) = = 24: The graph of f (x; y) is the set of points in R 3 that satisfy z = f (x; y) : That is, the graph of f (x; y) is the surface z = f (x; y) and the output z is the height of the surface at the point (x; y) : 1

2 A graphing calculator or computer algebra system is often used to produce an approximation of the graph of a function. EXAMPLE 2 Use a computer algebra system to graph the function f (x; y) = x 2 + y 2 for x and y in [ 1; 1] : Solution: The graph of f (x; y) = x 2 +y 2 is by de nition the set of all points (x; y; z) with x in [ 1; 1], y in [ 1; 1], and z = x 2 +y 2 : This set of points forms the surface which is shown in the four di erent types of plots below.a patch plot shows only the surface, while a patch and grid plot shows the graph along with a grid of curves on the surface. A contour plot shows the surface along with horizontal cross-sections at various heights. A wireframe plot shows only a grid of curves on a surface. 2

3 We often let x = hx; yi be the position vector of a point in the xy-plane, and then we write f (x) = f (x; y) This allows us to use vectors to de ne functions of 2 variables. EXAMPLE 3 What function f (x; y) is represented by f (x) = jjxjj 2 Solution: Since x = hx; yi ; we have f (x; y) = jjhx; yijj 2 = x 2 + y 2 Note: We will often use the bolded rst letter of a vector of variables to denote the vector. For example, we write x = hx; yi ; p = hp; qi ; v = hv 1 ; v 2 ; v 3 i ; and so on Check your Reading: How is z = x 2 + y 2 related to examples 2 and 3? De nition and Domains In particular, a function of 2 variables is a function whose inputs are points (x; y) in the xy-plane and whose outputs real numbers. De nition 1.1 A function of 2 variables f (x; y) is a relation which maps each point (x; y) in a set D in the xy-plane to at most one real number z. The set D is called the domain of the function, which is denoted dom (f) : z y f (x,y) D x f(x,y) 3

4 Domains are often written in set notation, where fg represents the phrase is the set of and a vertical bar j represents the phrase such that. EXAMPLE 4 Determine the domain of f (x; y) = ln (y 2x) Solution: Since the argument of ln () must be positive, the domain of f is the set of points (x; y) for which y 2x is positive. However, y 2x > 0 means that y > 2x In set notation this is written as dom (f) = f(x; y) j y > 2xg : In this text, most of the sets in the xy-plane we encounter will be bounded by a closed curve. The set of all points inside of but not including a closed curve is said to be an open region, while the set of all points inside of and including a closed curve is said to be a closed region. Similar de nitions hold for a nite union of closed curves. More generally, a point (p; q) is a boundary point of a set R is any circle centered at (p; q) contains both points inside of and points outside of R: A set R is open if it contains none of its boundary points and is closed if it contains all of its boundary points (if it contains some but not all of its boundary points, then it is neither open or closed). In addition, we say that the domain of a function is bounded if there is a number R > 0 such that the domain is inside of the circle centered at (0; 0) 4

5 with radius R: For example, the region in example 2 is bounded. A region is unbounded if it cannot be contained in any circle centered at the origin. Also, a region R is connected if any two points in R can be joined by a curve which is contained in R: 10 1 con It is important to identify if the domain of a function has these properties. EXAMPLE 5 open or closed Determine if the domain of the following function is f (x; y) = p 9 x 2 y 2 Solution: To begin with, the quantity 9 x 2 y 2 cannot be negative since it is under the square root. Thus, the domain of f is the set of points that satisfy 9 x 2 y 2 0 or 9 x 2 + y 2 That is, the domain is the set of points (x; y)inside the circle of radius 3 centered at the origin, which we write as dom (f) = (x; y) j x 2 + y 2 9 Since dom (f) contains it boundary i.e., the circle of radius 3 it is a closed region of the xy-plane. 5

6 Check your Reading: Is the domain in example 4 open or closed? Boundedness and Connectedness In addition, we say that the domain of a function is bounded if there is a number R > 0 such that the domain is inside of the circle centered at (0,0) with radius R. For example, the domain in example 5 is bounded because it is itself a circle centered at the origin. Conversely, a set is unbounded if it cannot be contained in any circle centered at the origin. For example, set f(x; y) j y > 2xg is unbounded since no circle centered at the origin can contain all the points (x; y) for whichy > 2x. blueexample 6 blackdetermine if the domain of f(x; y) = ln(xy+ 1) is bounded or unbounded. Solution: To begin with, we must have xy + 1 > 0, which requires that xy > 1. If x < 0, then xy > 1 is the same as y < 1=x. If x 0, then xy > 1 is the same as y > 1=x. We can combine the two cases by using the symbol for a union of sets, which is [: That is, dom (f) = (x; y) j x < 0 and y < 1 [ (x; y) j x 0 and y > 1 x x The domain of the function is shown below: Clearly, it cannot be contained in any circle centered at the origin. Therefore, dom (f) is unbounded. In addition, we say that a set R is connected if any two points in R can be joined by a curve which is contained in R: blueexample 7 blackdetermine if the domain of the following function is connected: f (x; y) = y p x 2 1 6

7 Solution: The domain of f is the set of points (x; y) for which x 2 1 0; which is where x 2 1: This implies that either x 1 or x 1; so that the domain is the two strips shown below: Clearly, the domain is not connected. Check your Reading: Is the domain in example 6 bounded or unbounded? Functions of Space and Time A function of the form u (x; t) is often interpreted to be a function of x at a given point in time. For example, let s place an xy-coordinate system on a violin whose strings have a length of l; as shown in the gure below: If u (x; t) is de ned to be the displacement of the string above or below a point x on the x-axis at a time t; then y = u (x; t) is the shape of the string at a xed 7

8 time t: Thus, u (x; t) models the motion of the string as t increases. EXAMPLE 8 The displacement of a1 foot long violin string at a distance x from the bridge and at time t in seconds is given by u (x; t) = 60 sin (x) cos (880t) Describe the shape of the string at times t = 0; 0:5; 1; and 1:5 milliseconds. Solution: At time t = 0; we have the curve u (x; 0) = 60 sin (x) ; which is a sine curve beginning at the origin and intersecting the 8

9 x-axis again at x = 1: At time t = 0:5 milliseconds, which is t = 0:00005 seconds, we have the curve u (x; 0:00005) = 60 sin (x) cos (0:44) = 11:243 sin (x) At time t = 1 millisecond, which is t = 0:001 seconds, we have u (x; 0:001) = 60 sin (x) cos (0:88) = and at t = 1:5 milliseconds, we have u (x; 0:0015) = 60 sin (x) cos (1:32) = 55:787 sin (x) 32:15 sin (x) These curves are shown in sequence in the "slide show" below: Likewise, u (x; t) might represent evolution of the temperature distribution of a thin rod, in that u might represent the temperature at time t at a distance x from one end. The function u (x; t) then models the evolution of the temperature distribution over time. In general, any process which can be modeled as the evolution in time of the graph of a function can be modeled by a function of 2 variables. 9

10 Exercises Find the domains of the following functions. Sketch a graph of the domain, and then determine whether is it open or closed, bounded or unbounded, connected or not connected. 1. f (x; y) = (1 2x + y) 1=2 2. f (x; y) = (1 3x + 2y) 1=2 3. f (x; y) = p x + p y 4. f (x; y) = p xy 1 5. f (x; y) = x x 2 +y 6. f (x; y) = x y 2 x+y 7. f (x; y) = x2 y 1 x 2 y 2 8. f (x; y) = x 2 y 1 x 2 y 2 9. f (x; y) = y x 10. f (x; y) = y tan(x) 11. f (x; y) = p x ln (1 y) 12. f (x; y) = ln 1 x 2 y f (x; y) = ln x 2 y f (x; y) = ln jx xyj 15. f (x; y) = sin 1 (x y) 16. f (x; y) = sin 1 (xy) Use a computer algebra system to sketch the graph of the given function. 17. f (x; y) = y 18. f (x; y) = 3x + 2y f (x; y) = 9 x 2 y f (x; y) = 1 xy 21. f (x; y) = sin x 2 + y f (x; y) = sin (x) cos (y) sin (x) 23. f (x; y) = 1 + x f (x; y) = e y 1 + y 2 x 25. f (x; y) = x 2 + y f (x; y) = x + y x 2 + y 2 In 27-30, u (x; t) is the displacement of a vibrating string at a point x in [0; ] and at time t: Sketch the graph of the string at each of the given times. 27. u (x; t) = cos 6 t sin (x) 28. u (x; t) = cos (t) cos (2x) t = 0; 1; 2; 3 t = 0; 1; 2; u (x; t) = sin 4 t cos (2x) 30. u (x; t) = e t=5 sin 6 t sin (x) t = 0; 1; 2; 3 t = 0; 1; 2; Explain why the set f(x; y) j y 6= 2xg is the same as f(x; y) j y < 2xg [ f(x; y) j y > 2xg 32. What is the domain of the function f (x; y) = p 1 2 cosh (xy) (1) 10

11 Does it contain any points at all? Can (1) even be considered a function? 33. The function u (x; t) = sin (x t)+sin (x + t) models the shape of a vibrating string which is xed at x = 0 and x = : Graph u (x; t) over x in [0; ] for several di erent values of t (e.g., t = 0; 1; 2, etc.). What does the vibration of the string look like? How long does it take until it returns to its original shape? 34. The function u (x; t) = e t sin 2 (x) + 32 models the temperature in F of a 1 foot long thin rod in which both ends are held at the freezing point at all times t. Graph u (x; t) over x in [0; 1] for several di erent values of t (e.g., t = 0; 1; 2, etc.). What happens to the temperature of the rod as t approaches 1? 35. The function (x t)2 u (x; t) = (x t) e is an example of a traveling wave. Graph u (x; t) for several di erent values of t (e.g., t = 0; 1; 2, etc.). Why might we call this a traveling wave? 36. The 1-dimensional heat kernel is de ned to be u (x; t) = 1 p 4t e x2 =(4t) Graph u (x; t) for several di erent values of t (e.g., t = 1; 2, 3). What does the graph look like when t is close to 0? 37. Suppose that a function of 1 variable, g (x) ; has a domain of [a; b] : If we de ne a function of 2 variables f (x; y) = g (x) ; then what is dom (f)? Is it bounded? Is it open or closed? 38. Suppose that g (x) has a domain of [a; b] and that h (y) has a domain of [c; d] : Then what is the domain of f (x; y) = g (x) h (y)? Is it bounded? Is it open or closed? 39. Write to Learn: Suppose that f (x; y) is de ned everywhere and that f (x; y) = 0 is a smooth closed curve. What is the domain of h (x; y) = 1 f (x; y) Is dom (h) open or closed? Bounded or unbounded? Connected or disconnected? Report your conclusions in a short essay with supporting diagrams. 40. Write to Learn: Suppose that the domain of f (x; y) is dom (f) and the domain of g (x; y) is dom (g) : Write a short essay which explains why if h (x; y) = f (x; y) + g (x; y) ; then the domain of h (x; y) is dom (h) = dom (f) \ dom (g) 41. Let s suppose that f (x; y) is the shortest distance from (x; y) to the origin along paths that contain only horizontal and vertical line segments (this is known as taxicab distance). What is f (x; y)? What does its graph look like? 42. Let G (x; y) be the gallons of fuel consumed by a taxicab that drives from a point (x; y) to the origin along only horizontal and vertical line segments given that it consumes 0:05 gallons per mile (see question 41). What is G (x; y)? What is its domain? Explain. 11

Partial Derivatives. @x f (x; y) = @ x f (x; y) @x x2 y + @ @x y2 and then we evaluate the derivative as if y is a constant.

Partial Derivatives. @x f (x; y) = @ x f (x; y) @x x2 y + @ @x y2 and then we evaluate the derivative as if y is a constant. Partial Derivatives Partial Derivatives Just as derivatives can be used to eplore the properties of functions of 1 variable, so also derivatives can be used to eplore functions of 2 variables. In this

More information

x 2 + y 2 = 1 y 1 = x 2 + 2x y = x 2 + 2x + 1

x 2 + y 2 = 1 y 1 = x 2 + 2x y = x 2 + 2x + 1 Implicit Functions Defining Implicit Functions Up until now in this course, we have only talked about functions, which assign to every real number x in their domain exactly one real number f(x). The graphs

More information

36 CHAPTER 1. LIMITS AND CONTINUITY. Figure 1.17: At which points is f not continuous?

36 CHAPTER 1. LIMITS AND CONTINUITY. Figure 1.17: At which points is f not continuous? 36 CHAPTER 1. LIMITS AND CONTINUITY 1.3 Continuity Before Calculus became clearly de ned, continuity meant that one could draw the graph of a function without having to lift the pen and pencil. While this

More information

Surface Normals and Tangent Planes

Surface Normals and Tangent Planes Surface Normals and Tangent Planes Normal and Tangent Planes to Level Surfaces Because the equation of a plane requires a point and a normal vector to the plane, nding the equation of a tangent plane to

More information

c 2008 Je rey A. Miron We have described the constraints that a consumer faces, i.e., discussed the budget constraint.

c 2008 Je rey A. Miron We have described the constraints that a consumer faces, i.e., discussed the budget constraint. Lecture 2b: Utility c 2008 Je rey A. Miron Outline: 1. Introduction 2. Utility: A De nition 3. Monotonic Transformations 4. Cardinal Utility 5. Constructing a Utility Function 6. Examples of Utility Functions

More information

Solutions to Homework 10

Solutions to Homework 10 Solutions to Homework 1 Section 7., exercise # 1 (b,d): (b) Compute the value of R f dv, where f(x, y) = y/x and R = [1, 3] [, 4]. Solution: Since f is continuous over R, f is integrable over R. Let x

More information

Coordinate Transformation

Coordinate Transformation Coordinate Transformation Coordinate Transformations In this chater, we exlore maings where a maing is a function that "mas" one set to another, usually in a way that reserves at least some of the underlyign

More information

Advanced Microeconomics

Advanced Microeconomics Advanced Microeconomics Ordinal preference theory Harald Wiese University of Leipzig Harald Wiese (University of Leipzig) Advanced Microeconomics 1 / 68 Part A. Basic decision and preference theory 1 Decisions

More information

1 if 1 x 0 1 if 0 x 1

1 if 1 x 0 1 if 0 x 1 Chapter 3 Continuity In this chapter we begin by defining the fundamental notion of continuity for real valued functions of a single real variable. When trying to decide whether a given function is or

More information

Representation of functions as power series

Representation of functions as power series Representation of functions as power series Dr. Philippe B. Laval Kennesaw State University November 9, 008 Abstract This document is a summary of the theory and techniques used to represent functions

More information

AP CALCULUS AB 2008 SCORING GUIDELINES

AP CALCULUS AB 2008 SCORING GUIDELINES AP CALCULUS AB 2008 SCORING GUIDELINES Question 1 Let R be the region bounded by the graphs of y = sin( π x) and y = x 4 x, as shown in the figure above. (a) Find the area of R. (b) The horizontal line

More information

Lecture 9: Lines. m = y 2 y 1 x 2 x 1

Lecture 9: Lines. m = y 2 y 1 x 2 x 1 Lecture 9: Lines If we have two distinct points in the Cartesian plane, there is a unique line which passes through the two points. We can construct it by joining the points with a straight edge and extending

More information

Limits and Continuity

Limits and Continuity Math 20C Multivariable Calculus Lecture Limits and Continuity Slide Review of Limit. Side limits and squeeze theorem. Continuous functions of 2,3 variables. Review: Limits Slide 2 Definition Given a function

More information

Section 2.4: Equations of Lines and Planes

Section 2.4: Equations of Lines and Planes Section.4: Equations of Lines and Planes An equation of three variable F (x, y, z) 0 is called an equation of a surface S if For instance, (x 1, y 1, z 1 ) S if and only if F (x 1, y 1, z 1 ) 0. x + y

More information

Change of Variables in Double Integrals

Change of Variables in Double Integrals Change of Variables in Double Integrals Part : Area of the Image of a egion It is often advantageous to evaluate (x; y) da in a coordinate system other than the xy-coordinate system. In this section, we

More information

Student Performance Q&A:

Student Performance Q&A: Student Performance Q&A: 2008 AP Calculus AB and Calculus BC Free-Response Questions The following comments on the 2008 free-response questions for AP Calculus AB and Calculus BC were written by the Chief

More information

Chapter 3: Section 3-3 Solutions of Linear Programming Problems

Chapter 3: Section 3-3 Solutions of Linear Programming Problems Chapter 3: Section 3-3 Solutions of Linear Programming Problems D. S. Malik Creighton University, Omaha, NE D. S. Malik Creighton University, Omaha, NE Chapter () 3: Section 3-3 Solutions of Linear Programming

More information

Mechanics 1: Conservation of Energy and Momentum

Mechanics 1: Conservation of Energy and Momentum Mechanics : Conservation of Energy and Momentum If a certain quantity associated with a system does not change in time. We say that it is conserved, and the system possesses a conservation law. Conservation

More information

Algebra. Exponents. Absolute Value. Simplify each of the following as much as possible. 2x y x + y y. xxx 3. x x x xx x. 1. Evaluate 5 and 123

Algebra. Exponents. Absolute Value. Simplify each of the following as much as possible. 2x y x + y y. xxx 3. x x x xx x. 1. Evaluate 5 and 123 Algebra Eponents Simplify each of the following as much as possible. 1 4 9 4 y + y y. 1 5. 1 5 4. y + y 4 5 6 5. + 1 4 9 10 1 7 9 0 Absolute Value Evaluate 5 and 1. Eliminate the absolute value bars from

More information

Lecture 8 : Coordinate Geometry. The coordinate plane The points on a line can be referenced if we choose an origin and a unit of 20

Lecture 8 : Coordinate Geometry. The coordinate plane The points on a line can be referenced if we choose an origin and a unit of 20 Lecture 8 : Coordinate Geometry The coordinate plane The points on a line can be referenced if we choose an origin and a unit of 0 distance on the axis and give each point an identity on the corresponding

More information

Differentiation of vectors

Differentiation of vectors Chapter 4 Differentiation of vectors 4.1 Vector-valued functions In the previous chapters we have considered real functions of several (usually two) variables f : D R, where D is a subset of R n, where

More information

f(x) = g(x), if x A h(x), if x B.

f(x) = g(x), if x A h(x), if x B. 1. Piecewise Functions By Bryan Carrillo, University of California, Riverside We can create more complicated functions by considering Piece-wise functions. Definition: Piecewise-function. A piecewise-function

More information

AP Calculus AB 2010 Free-Response Questions Form B

AP Calculus AB 2010 Free-Response Questions Form B AP Calculus AB 2010 Free-Response Questions Form B The College Board The College Board is a not-for-profit membership association whose mission is to connect students to college success and opportunity.

More information

Angles and Quadrants. Angle Relationships and Degree Measurement. Chapter 7: Trigonometry

Angles and Quadrants. Angle Relationships and Degree Measurement. Chapter 7: Trigonometry Chapter 7: Trigonometry Trigonometry is the study of angles and how they can be used as a means of indirect measurement, that is, the measurement of a distance where it is not practical or even possible

More information

Determine If An Equation Represents a Function

Determine If An Equation Represents a Function Question : What is a linear function? The term linear function consists of two parts: linear and function. To understand what these terms mean together, we must first understand what a function is. The

More information

PROBLEM SET. Practice Problems for Exam #1. Math 1352, Fall 2004. Oct. 1, 2004 ANSWERS

PROBLEM SET. Practice Problems for Exam #1. Math 1352, Fall 2004. Oct. 1, 2004 ANSWERS PROBLEM SET Practice Problems for Exam # Math 352, Fall 24 Oct., 24 ANSWERS i Problem. vlet R be the region bounded by the curves x = y 2 and y = x. A. Find the volume of the solid generated by revolving

More information

MAC 1114. Learning Objectives. Module 10. Polar Form of Complex Numbers. There are two major topics in this module:

MAC 1114. Learning Objectives. Module 10. Polar Form of Complex Numbers. There are two major topics in this module: MAC 1114 Module 10 Polar Form of Complex Numbers Learning Objectives Upon completing this module, you should be able to: 1. Identify and simplify imaginary and complex numbers. 2. Add and subtract complex

More information

Solving Simultaneous Equations and Matrices

Solving Simultaneous Equations and Matrices Solving Simultaneous Equations and Matrices The following represents a systematic investigation for the steps used to solve two simultaneous linear equations in two unknowns. The motivation for considering

More information

Algebra I Notes Relations and Functions Unit 03a

Algebra I Notes Relations and Functions Unit 03a OBJECTIVES: F.IF.A.1 Understand the concept of a function and use function notation. Understand that a function from one set (called the domain) to another set (called the range) assigns to each element

More information

2.1 Increasing, Decreasing, and Piecewise Functions; Applications

2.1 Increasing, Decreasing, and Piecewise Functions; Applications 2.1 Increasing, Decreasing, and Piecewise Functions; Applications Graph functions, looking for intervals on which the function is increasing, decreasing, or constant, and estimate relative maxima and minima.

More information

Math 241, Exam 1 Information.

Math 241, Exam 1 Information. Math 241, Exam 1 Information. 9/24/12, LC 310, 11:15-12:05. Exam 1 will be based on: Sections 12.1-12.5, 14.1-14.3. The corresponding assigned homework problems (see http://www.math.sc.edu/ boylan/sccourses/241fa12/241.html)

More information

Copyright 2011 Casa Software Ltd. www.casaxps.com. Centre of Mass

Copyright 2011 Casa Software Ltd. www.casaxps.com. Centre of Mass Centre of Mass A central theme in mathematical modelling is that of reducing complex problems to simpler, and hopefully, equivalent problems for which mathematical analysis is possible. The concept of

More information

Definition: A vector is a directed line segment that has and. Each vector has an initial point and a terminal point.

Definition: A vector is a directed line segment that has and. Each vector has an initial point and a terminal point. 6.1 Vectors in the Plane PreCalculus 6.1 VECTORS IN THE PLANE Learning Targets: 1. Find the component form and the magnitude of a vector.. Perform addition and scalar multiplication of two vectors. 3.

More information

x 2 if 2 x < 0 4 x if 2 x 6

x 2 if 2 x < 0 4 x if 2 x 6 Piecewise-defined Functions Example Consider the function f defined by x if x < 0 f (x) = x if 0 x < 4 x if x 6 Piecewise-defined Functions Example Consider the function f defined by x if x < 0 f (x) =

More information

Math 1B, lecture 5: area and volume

Math 1B, lecture 5: area and volume Math B, lecture 5: area and volume Nathan Pflueger 6 September 2 Introduction This lecture and the next will be concerned with the computation of areas of regions in the plane, and volumes of regions in

More information

Two vectors are equal if they have the same length and direction. They do not

Two vectors are equal if they have the same length and direction. They do not Vectors define vectors Some physical quantities, such as temperature, length, and mass, can be specified by a single number called a scalar. Other physical quantities, such as force and velocity, must

More information

Solutions to Practice Problems for Test 4

Solutions to Practice Problems for Test 4 olutions to Practice Problems for Test 4 1. Let be the line segmentfrom the point (, 1, 1) to the point (,, 3). Evaluate the line integral y ds. Answer: First, we parametrize the line segment from (, 1,

More information

7 Relations and Functions

7 Relations and Functions 7 Relations and Functions In this section, we introduce the concept of relations and functions. Relations A relation R from a set A to a set B is a set of ordered pairs (a, b), where a is a member of A,

More information

MATH 132: CALCULUS II SYLLABUS

MATH 132: CALCULUS II SYLLABUS MATH 32: CALCULUS II SYLLABUS Prerequisites: Successful completion of Math 3 (or its equivalent elsewhere). Math 27 is normally not a sufficient prerequisite for Math 32. Required Text: Calculus: Early

More information

2.5 Transformations of Functions

2.5 Transformations of Functions 2.5 Transformations of Functions Section 2.5 Notes Page 1 We will first look at the major graphs you should know how to sketch: Square Root Function Absolute Value Function Identity Function Domain: [

More information

HSC Mathematics - Extension 1. Workshop E4

HSC Mathematics - Extension 1. Workshop E4 HSC Mathematics - Extension 1 Workshop E4 Presented by Richard D. Kenderdine BSc, GradDipAppSc(IndMaths), SurvCert, MAppStat, GStat School of Mathematics and Applied Statistics University of Wollongong

More information

11.1. Objectives. Component Form of a Vector. Component Form of a Vector. Component Form of a Vector. Vectors and the Geometry of Space

11.1. Objectives. Component Form of a Vector. Component Form of a Vector. Component Form of a Vector. Vectors and the Geometry of Space 11 Vectors and the Geometry of Space 11.1 Vectors in the Plane Copyright Cengage Learning. All rights reserved. Copyright Cengage Learning. All rights reserved. 2 Objectives! Write the component form of

More information

Math Placement Test Practice Problems

Math Placement Test Practice Problems Math Placement Test Practice Problems The following problems cover material that is used on the math placement test to place students into Math 1111 College Algebra, Math 1113 Precalculus, and Math 2211

More information

Figure 1.1 Vector A and Vector F

Figure 1.1 Vector A and Vector F CHAPTER I VECTOR QUANTITIES Quantities are anything which can be measured, and stated with number. Quantities in physics are divided into two types; scalar and vector quantities. Scalar quantities have

More information

*X100/12/02* X100/12/02. MATHEMATICS HIGHER Paper 1 (Non-calculator) MONDAY, 21 MAY 1.00 PM 2.30 PM NATIONAL QUALIFICATIONS 2012

*X100/12/02* X100/12/02. MATHEMATICS HIGHER Paper 1 (Non-calculator) MONDAY, 21 MAY 1.00 PM 2.30 PM NATIONAL QUALIFICATIONS 2012 X00//0 NTIONL QULIFITIONS 0 MONY, MY.00 PM.0 PM MTHEMTIS HIGHER Paper (Non-calculator) Read carefully alculators may NOT be used in this paper. Section Questions 0 (40 marks) Instructions for completion

More information

Algebra 2 Chapter 1 Vocabulary. identity - A statement that equates two equivalent expressions.

Algebra 2 Chapter 1 Vocabulary. identity - A statement that equates two equivalent expressions. Chapter 1 Vocabulary identity - A statement that equates two equivalent expressions. verbal model- A word equation that represents a real-life problem. algebraic expression - An expression with variables.

More information

Functions. MATH 160, Precalculus. J. Robert Buchanan. Fall 2011. Department of Mathematics. J. Robert Buchanan Functions

Functions. MATH 160, Precalculus. J. Robert Buchanan. Fall 2011. Department of Mathematics. J. Robert Buchanan Functions Functions MATH 160, Precalculus J. Robert Buchanan Department of Mathematics Fall 2011 Objectives In this lesson we will learn to: determine whether relations between variables are functions, use function

More information

Parallel and Perpendicular. We show a small box in one of the angles to show that the lines are perpendicular.

Parallel and Perpendicular. We show a small box in one of the angles to show that the lines are perpendicular. CONDENSED L E S S O N. Parallel and Perpendicular In this lesson you will learn the meaning of parallel and perpendicular discover how the slopes of parallel and perpendicular lines are related use slopes

More information

Algebra I Vocabulary Cards

Algebra I Vocabulary Cards Algebra I Vocabulary Cards Table of Contents Expressions and Operations Natural Numbers Whole Numbers Integers Rational Numbers Irrational Numbers Real Numbers Absolute Value Order of Operations Expression

More information

Biggar High School Mathematics Department. National 5 Learning Intentions & Success Criteria: Assessing My Progress

Biggar High School Mathematics Department. National 5 Learning Intentions & Success Criteria: Assessing My Progress Biggar High School Mathematics Department National 5 Learning Intentions & Success Criteria: Assessing My Progress Expressions & Formulae Topic Learning Intention Success Criteria I understand this Approximation

More information

4. How many integers between 2004 and 4002 are perfect squares?

4. How many integers between 2004 and 4002 are perfect squares? 5 is 0% of what number? What is the value of + 3 4 + 99 00? (alternating signs) 3 A frog is at the bottom of a well 0 feet deep It climbs up 3 feet every day, but slides back feet each night If it started

More information

Calculus AB 2014 Scoring Guidelines

Calculus AB 2014 Scoring Guidelines P Calculus B 014 Scoring Guidelines 014 The College Board. College Board, dvanced Placement Program, P, P Central, and the acorn logo are registered trademarks of the College Board. P Central is the official

More information

List the elements of the given set that are natural numbers, integers, rational numbers, and irrational numbers. (Enter your answers as commaseparated

List the elements of the given set that are natural numbers, integers, rational numbers, and irrational numbers. (Enter your answers as commaseparated MATH 142 Review #1 (4717995) Question 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Description This is the review for Exam #1. Please work as many problems as possible

More information

Common sense, and the model that we have used, suggest that an increase in p means a decrease in demand, but this is not the only possibility.

Common sense, and the model that we have used, suggest that an increase in p means a decrease in demand, but this is not the only possibility. Lecture 6: Income and Substitution E ects c 2009 Je rey A. Miron Outline 1. Introduction 2. The Substitution E ect 3. The Income E ect 4. The Sign of the Substitution E ect 5. The Total Change in Demand

More information

AP PHYSICS C Mechanics - SUMMER ASSIGNMENT FOR 2016-2017

AP PHYSICS C Mechanics - SUMMER ASSIGNMENT FOR 2016-2017 AP PHYSICS C Mechanics - SUMMER ASSIGNMENT FOR 2016-2017 Dear Student: The AP physics course you have signed up for is designed to prepare you for a superior performance on the AP test. To complete material

More information

13.4 THE CROSS PRODUCT

13.4 THE CROSS PRODUCT 710 Chapter Thirteen A FUNDAMENTAL TOOL: VECTORS 62. Use the following steps and the results of Problems 59 60 to show (without trigonometry) that the geometric and algebraic definitions of the dot product

More information

Chapter 27: Taxation. 27.1: Introduction. 27.2: The Two Prices with a Tax. 27.2: The Pre-Tax Position

Chapter 27: Taxation. 27.1: Introduction. 27.2: The Two Prices with a Tax. 27.2: The Pre-Tax Position Chapter 27: Taxation 27.1: Introduction We consider the effect of taxation on some good on the market for that good. We ask the questions: who pays the tax? what effect does it have on the equilibrium

More information

2-1 Position, Displacement, and Distance

2-1 Position, Displacement, and Distance 2-1 Position, Displacement, and Distance In describing an object s motion, we should first talk about position where is the object? A position is a vector because it has both a magnitude and a direction:

More information

Discrete Mathematics

Discrete Mathematics Discrete Mathematics Chih-Wei Yi Dept. of Computer Science National Chiao Tung University March 16, 2009 2.1 Sets 2.1 Sets 2.1 Sets Basic Notations for Sets For sets, we ll use variables S, T, U,. We can

More information

PRACTICE FINAL. Problem 1. Find the dimensions of the isosceles triangle with largest area that can be inscribed in a circle of radius 10cm.

PRACTICE FINAL. Problem 1. Find the dimensions of the isosceles triangle with largest area that can be inscribed in a circle of radius 10cm. PRACTICE FINAL Problem 1. Find the dimensions of the isosceles triangle with largest area that can be inscribed in a circle of radius 1cm. Solution. Let x be the distance between the center of the circle

More information

Fundamental Theorems of Vector Calculus

Fundamental Theorems of Vector Calculus Fundamental Theorems of Vector Calculus We have studied the techniques for evaluating integrals over curves and surfaces. In the case of integrating over an interval on the real line, we were able to use

More information

Review of Fundamental Mathematics

Review of Fundamental Mathematics Review of Fundamental Mathematics As explained in the Preface and in Chapter 1 of your textbook, managerial economics applies microeconomic theory to business decision making. The decision-making tools

More information

Review D: Potential Energy and the Conservation of Mechanical Energy

Review D: Potential Energy and the Conservation of Mechanical Energy MSSCHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.01 Fall 2005 Review D: Potential Energy and the Conservation of Mechanical Energy D.1 Conservative and Non-conservative Force... 2 D.1.1 Introduction...

More information

Arrangements And Duality

Arrangements And Duality Arrangements And Duality 3.1 Introduction 3 Point configurations are tbe most basic structure we study in computational geometry. But what about configurations of more complicated shapes? For example,

More information

88 CHAPTER 2. VECTOR FUNCTIONS. . First, we need to compute T (s). a By definition, r (s) T (s) = 1 a sin s a. sin s a, cos s a

88 CHAPTER 2. VECTOR FUNCTIONS. . First, we need to compute T (s). a By definition, r (s) T (s) = 1 a sin s a. sin s a, cos s a 88 CHAPTER. VECTOR FUNCTIONS.4 Curvature.4.1 Definitions and Examples The notion of curvature measures how sharply a curve bends. We would expect the curvature to be 0 for a straight line, to be very small

More information

3.2 LOGARITHMIC FUNCTIONS AND THEIR GRAPHS. Copyright Cengage Learning. All rights reserved.

3.2 LOGARITHMIC FUNCTIONS AND THEIR GRAPHS. Copyright Cengage Learning. All rights reserved. 3.2 LOGARITHMIC FUNCTIONS AND THEIR GRAPHS Copyright Cengage Learning. All rights reserved. What You Should Learn Recognize and evaluate logarithmic functions with base a. Graph logarithmic functions.

More information

The Math Circle, Spring 2004

The Math Circle, Spring 2004 The Math Circle, Spring 2004 (Talks by Gordon Ritter) What is Non-Euclidean Geometry? Most geometries on the plane R 2 are non-euclidean. Let s denote arc length. Then Euclidean geometry arises from the

More information

Mathematics Review for MS Finance Students

Mathematics Review for MS Finance Students Mathematics Review for MS Finance Students Anthony M. Marino Department of Finance and Business Economics Marshall School of Business Lecture 1: Introductory Material Sets The Real Number System Functions,

More information

1.2 GRAPHS OF EQUATIONS. Copyright Cengage Learning. All rights reserved.

1.2 GRAPHS OF EQUATIONS. Copyright Cengage Learning. All rights reserved. 1.2 GRAPHS OF EQUATIONS Copyright Cengage Learning. All rights reserved. What You Should Learn Sketch graphs of equations. Find x- and y-intercepts of graphs of equations. Use symmetry to sketch graphs

More information

In order to describe motion you need to describe the following properties.

In order to describe motion you need to describe the following properties. Chapter 2 One Dimensional Kinematics How would you describe the following motion? Ex: random 1-D path speeding up and slowing down In order to describe motion you need to describe the following properties.

More information

Section 13.5 Equations of Lines and Planes

Section 13.5 Equations of Lines and Planes Section 13.5 Equations of Lines and Planes Generalizing Linear Equations One of the main aspects of single variable calculus was approximating graphs of functions by lines - specifically, tangent lines.

More information

GRAPHING IN POLAR COORDINATES SYMMETRY

GRAPHING IN POLAR COORDINATES SYMMETRY GRAPHING IN POLAR COORDINATES SYMMETRY Recall from Algebra and Calculus I that the concept of symmetry was discussed using Cartesian equations. Also remember that there are three types of symmetry - y-axis,

More information

2008 AP Calculus AB Multiple Choice Exam

2008 AP Calculus AB Multiple Choice Exam 008 AP Multiple Choice Eam Name 008 AP Calculus AB Multiple Choice Eam Section No Calculator Active AP Calculus 008 Multiple Choice 008 AP Calculus AB Multiple Choice Eam Section Calculator Active AP Calculus

More information

Unit 6 Trigonometric Identities, Equations, and Applications

Unit 6 Trigonometric Identities, Equations, and Applications Accelerated Mathematics III Frameworks Student Edition Unit 6 Trigonometric Identities, Equations, and Applications nd Edition Unit 6: Page of 3 Table of Contents Introduction:... 3 Discovering the Pythagorean

More information

Continuous Random Variables

Continuous Random Variables Chapter 5 Continuous Random Variables 5.1 Continuous Random Variables 1 5.1.1 Student Learning Objectives By the end of this chapter, the student should be able to: Recognize and understand continuous

More information

ax 2 by 2 cxy dx ey f 0 The Distance Formula The distance d between two points (x 1, y 1 ) and (x 2, y 2 ) is given by d (x 2 x 1 )

ax 2 by 2 cxy dx ey f 0 The Distance Formula The distance d between two points (x 1, y 1 ) and (x 2, y 2 ) is given by d (x 2 x 1 ) SECTION 1. The Circle 1. OBJECTIVES The second conic section we look at is the circle. The circle can be described b using the standard form for a conic section, 1. Identif the graph of an equation as

More information

Graphing Quadratic Functions

Graphing Quadratic Functions Problem 1 The Parabola Examine the data in L 1 and L to the right. Let L 1 be the x- value and L be the y-values for a graph. 1. How are the x and y-values related? What pattern do you see? To enter the

More information

6. Vectors. 1 2009-2016 Scott Surgent (surgent@asu.edu)

6. Vectors. 1 2009-2016 Scott Surgent (surgent@asu.edu) 6. Vectors For purposes of applications in calculus and physics, a vector has both a direction and a magnitude (length), and is usually represented as an arrow. The start of the arrow is the vector s foot,

More information

This unit will lay the groundwork for later units where the students will extend this knowledge to quadratic and exponential functions.

This unit will lay the groundwork for later units where the students will extend this knowledge to quadratic and exponential functions. Algebra I Overview View unit yearlong overview here Many of the concepts presented in Algebra I are progressions of concepts that were introduced in grades 6 through 8. The content presented in this course

More information

C3: Functions. Learning objectives

C3: Functions. Learning objectives CHAPTER C3: Functions Learning objectives After studing this chapter ou should: be familiar with the terms one-one and man-one mappings understand the terms domain and range for a mapping understand the

More information

DRAFT. Further mathematics. GCE AS and A level subject content

DRAFT. Further mathematics. GCE AS and A level subject content Further mathematics GCE AS and A level subject content July 2014 s Introduction Purpose Aims and objectives Subject content Structure Background knowledge Overarching themes Use of technology Detailed

More information

Functions and their Graphs

Functions and their Graphs Functions and their Graphs Functions All of the functions you will see in this course will be real-valued functions in a single variable. A function is real-valued if the input and output are real numbers

More information

Volumes of Revolution

Volumes of Revolution Mathematics Volumes of Revolution About this Lesson This lesson provides students with a physical method to visualize -dimensional solids and a specific procedure to sketch a solid of revolution. Students

More information

Trigonometry Review with the Unit Circle: All the trig. you ll ever need to know in Calculus

Trigonometry Review with the Unit Circle: All the trig. you ll ever need to know in Calculus Trigonometry Review with the Unit Circle: All the trig. you ll ever need to know in Calculus Objectives: This is your review of trigonometry: angles, six trig. functions, identities and formulas, graphs:

More information

1. First-order Ordinary Differential Equations

1. First-order Ordinary Differential Equations Advanced Engineering Mathematics 1. First-order ODEs 1 1. First-order Ordinary Differential Equations 1.1 Basic concept and ideas 1.2 Geometrical meaning of direction fields 1.3 Separable differential

More information

CHAPTER 1 Linear Equations

CHAPTER 1 Linear Equations CHAPTER 1 Linear Equations 1.1. Lines The rectangular coordinate system is also called the Cartesian plane. It is formed by two real number lines, the horizontal axis or x-axis, and the vertical axis or

More information

3 e) x f) 2. Precalculus Worksheet P.1. 1. Complete the following questions from your textbook: p11: #5 10. 2. Why would you never write 5 < x > 7?

3 e) x f) 2. Precalculus Worksheet P.1. 1. Complete the following questions from your textbook: p11: #5 10. 2. Why would you never write 5 < x > 7? Precalculus Worksheet P.1 1. Complete the following questions from your tetbook: p11: #5 10. Why would you never write 5 < > 7? 3. Why would you never write 3 > > 8? 4. Describe the graphs below using

More information

*X100/12/02* X100/12/02. MATHEMATICS HIGHER Paper 1 (Non-calculator) NATIONAL QUALIFICATIONS 2014 TUESDAY, 6 MAY 1.00 PM 2.30 PM

*X100/12/02* X100/12/02. MATHEMATICS HIGHER Paper 1 (Non-calculator) NATIONAL QUALIFICATIONS 2014 TUESDAY, 6 MAY 1.00 PM 2.30 PM X00//0 NTIONL QULIFITIONS 0 TUESY, 6 MY.00 PM.0 PM MTHEMTIS HIGHER Paper (Non-calculator) Read carefully alculators may NOT be used in this paper. Section Questions 0 (0 marks) Instructions for completion

More information

Pre Calculus Math 40S: Explained!

Pre Calculus Math 40S: Explained! www.math40s.com 7 Part I Ferris Wheels One of the most common application questions for graphing trigonometric functions involves Ferris wheels, since the up and down motion of a rider follows the shape

More information

The Distance Formula and the Circle

The Distance Formula and the Circle 10.2 The Distance Formula and the Circle 10.2 OBJECTIVES 1. Given a center and radius, find the equation of a circle 2. Given an equation for a circle, find the center and radius 3. Given an equation,

More information

THE COLLEGES OF OXFORD UNIVERSITY MATHEMATICS, JOINT SCHOOLS AND COMPUTER SCIENCE. Sample Solutions for Specimen Test 2

THE COLLEGES OF OXFORD UNIVERSITY MATHEMATICS, JOINT SCHOOLS AND COMPUTER SCIENCE. Sample Solutions for Specimen Test 2 THE COLLEGES OF OXFORD UNIVERSITY MATHEMATICS, JOINT SCHOOLS AND COMPUTER SCIENCE Sample Solutions for Specimen Test. A. The vector from P (, ) to Q (8, ) is PQ =(6, 6). If the point R lies on PQ such

More information

14.451 Lecture Notes 10

14.451 Lecture Notes 10 14.451 Lecture Notes 1 Guido Lorenzoni Fall 29 1 Continuous time: nite horizon Time goes from to T. Instantaneous payo : f (t; x (t) ; y (t)) ; (the time dependence includes discounting), where x (t) 2

More information

AP Calculus BC 2006 Free-Response Questions

AP Calculus BC 2006 Free-Response Questions AP Calculus BC 2006 Free-Response Questions The College Board: Connecting Students to College Success The College Board is a not-for-profit membership association whose mission is to connect students to

More information

Vectors. Objectives. Assessment. Assessment. Equations. Physics terms 5/15/14. State the definition and give examples of vector and scalar variables.

Vectors. Objectives. Assessment. Assessment. Equations. Physics terms 5/15/14. State the definition and give examples of vector and scalar variables. Vectors Objectives State the definition and give examples of vector and scalar variables. Analyze and describe position and movement in two dimensions using graphs and Cartesian coordinates. Organize and

More information

Answer Key for California State Standards: Algebra I

Answer Key for California State Standards: Algebra I Algebra I: Symbolic reasoning and calculations with symbols are central in algebra. Through the study of algebra, a student develops an understanding of the symbolic language of mathematics and the sciences.

More information

State Newton's second law of motion for a particle, defining carefully each term used.

State Newton's second law of motion for a particle, defining carefully each term used. 5 Question 1. [Marks 20] An unmarked police car P is, travelling at the legal speed limit, v P, on a straight section of highway. At time t = 0, the police car is overtaken by a car C, which is speeding

More information

Solutions - Homework sections 17.7-17.9

Solutions - Homework sections 17.7-17.9 olutions - Homework sections 7.7-7.9 7.7 6. valuate xy d, where is the triangle with vertices (,, ), (,, ), and (,, ). The three points - and therefore the triangle between them - are on the plane x +

More information

Section 1.1. Introduction to R n

Section 1.1. Introduction to R n The Calculus of Functions of Several Variables Section. Introduction to R n Calculus is the study of functional relationships and how related quantities change with each other. In your first exposure to

More information