library(tidyverse)
library(dasc2594)
set.seed(2021)
24 Graphs and Limits
Here we start a transition to topics in vector calculus. We will start with a discussion of functions of two variables (although the functions are not assumed to be linear). We define a function of two variables explicitly as
Definition 24.1 Like with linear functions, we can define the domain and range for general functions of two variables. A function
Example 24.1 Let
The domain of
is the set of points such that which is the unit circle (draw picture).The range is the unit interval
24.1 Graphs and level curves
Example 24.2 The parabola
Consider the function of two variables
which defines the surface
The 3-dimensional surface can be represented in 2-dimensions using level curves (think of a topographic map)
data.frame(expand.grid(x, y)) %>%
rename(x = Var1, y = Var2) %>%
mutate(z = parabola(x, y)) %>%
ggplot(aes(x = x, y = y, z = z)) +
geom_contour() +
coord_fixed(ratio = 1)
where each curve in the (x, y) plane has exactly the same value of
data.frame(expand.grid(x, y)) %>%
rename(x = Var1, y = Var2) %>%
mutate(z = parabola(x, y)) %>%
ggplot(aes(x = x, y = y, z = z)) +
geom_contour_filled() +
coord_fixed(ratio = 1)
Notice that although the original parabola was continuous, these 2-d representations simplify the diagram by representing the contours as discrete values.
Example 24.3 A saddle function
Consider the function of two variables
which defines the surface
The 3-dimensional surface can be represented in 2-dimensions using level curves (think of a topographic map)
data.frame(expand.grid(x, y)) %>%
rename(x = Var1, y = Var2) %>%
mutate(z = saddle(x, y)) %>%
ggplot(aes(x = x, y = y, z = z)) +
geom_contour() +
coord_fixed(ratio = 1)
where each curve in the (x, y) plane has exactly the same value of
data.frame(expand.grid(x, y)) %>%
rename(x = Var1, y = Var2) %>%
mutate(z = saddle(x, y)) %>%
ggplot(aes(x = x, y = y, z = z)) +
geom_contour_filled() +
coord_fixed(ratio = 1)
Notice that although the original saddle was continuous, these 2-d representations simplify the diagram by representing the contours as discrete values.
24.2 Limits
For functions of several variables, we have to define limits and continuity for these multivariable settings. For now, we focus on two variable functions as the multivariable case follows similar from the two variable case.
Let
For one-dimensional limits, “close” was defined as distance. Thus, for multivariable functions, “close” is defined as the Euclidean distance defined by a “ball” of radius
Recall that the distance
** Draw images**
Definition 24.2 (Limit of a Function of Two Variables) The function f(x, y) has limit
if, for any
whenever
In the definition, as the value of
Example 24.4 In class notes * Future work: write out hand-written examples
Theorem 24.1 Let
- Sum of limits:
- Difference of limits:
- Scalar multiple of the limit:
- Product of limits:
- Quotient of limits: As long as
we have
- Power of the limit:
- Root of the limit: If
is even, we assume
Example 24.5 Use the rules above to evaluate the limit
24.2.1 Boundary points
Definition 24.3 Define a region
An interior point
of is a point that lies entirely in the region . Mathematically, a point is an interior point of if it is possible to define a ball of radius centered at such that this ball only contains points within .A boundary point
of is a point that lies on the edge of the region . Mathematically, a point is an boundary point of if every ball of radius centered at contains at least one point in and one point outside .
Example 24.6 Let
Definition 24.4 A region
Figure: limit paths along the boundary
Example 24.7 Consider the
for all paths that do not cross the line
Example 24.8 nonexistence of limit in class
24.3 Continuity
A very important property of functions is continuity. In a general sense, a function is continuous if two nearby input values result in nearby output values. As a graph, this means that there are no hops, skips, or jumps.
Definition 24.5 The function
is defined at exists
Example 24.9 checking continuity in class