Link Search Menu Expand Document

Functions of Two or Three Variables

We will cover following topics

Limits

Let S be an open set containing (x0,y0, and let f be a function of two variables defined on S, except possibly at (x0,y0). The limit of f(x,y) as (x,y) approaches (x0,y0) is L, denoted as:

lim(x,y)(x0,y0)f(x,y)=L

It means that given any ε>0, there exists δ>0 such that for all (x,y)(x0,y0), if (x,y) is in the open disk centered at (x0,y0) with radius δ, then |f(x,y)L|<ε.

Continuity

Let a function f(x,y) be defined on an open disk B containing (x0,y0). Then,

  1. f is continuous at (x0,y0) if lim(x,y)(x0,y0)f(x,y)=f(x0,y0)
  2. f is continuous on B if f is continuous at all points in B. If f is continuous at all points in R2, we say that f is continuous everywhere.

Partial Derivaties

Let z=f(x,y) be a continuous function on an open set S in R2, then

  • The partial derivative of f with respect to x is:
fx(x,y)=limh0f(x+h,y)f(x,y)h
  • The partial derivative of f with respect to y is:
fy(x,y)=limh0f(x,y+h)f(x,y)h
  • The second partial derivative of f with respect to x then x is:
x(fx)=2fx2=(fx)x=fxx
  • The second partial derivative of f with respect to x then y is:
y(fx)=2fyx=(fx)y=fxy

The similar definitions can be extended to functions of more than two variables.


Theorem: Let f be defined such that fxy and fyx are continuous on an open set S. Then, for each point (x,y) in S, fxy(x,y)=fyx(x,y).

Maxima and Minima

Second Derivative Test: Let z=f(x,y) be differentiable on an open set containing P=(x0,y0) and let D=fxx(x0,y0)fyy(x0,y0)fxy2(x0,y0).

  1. If D>0 and fxx(x0,y0)>0, then P is a relative minimum of f

  2. If D>0 and fxx(x0,y0)<0, then P is a relative maximum of f

  3. If D<0, then P is a saddle point of f

  4. lf D=0, the test is inconclusive.

Lagrange’s Method Of Multipliers

Lagrange’s method of multipliers is a strategy for finding the local maxima and minima of a function subject to equality constraints. We can be provided with a single constraint or multiple constraints.

Case I: Single Constraint

Suppose we have an objective function of two variables with a single constraint.

maximize f(x,y)
subject to g(x,y)=0

We first find the Lagrangian, which is given by

L(x,y,λ)=f(x,y)λg(x,y)

Then, we solve the below equation to find the stationary points:

x,y,λL(x,y,λ)=0

We then calculate the value of f(x,y) at stationary points to find its maximum value.


Case II: Multiple Constraints

Suppose we have an objective function of n variables and m constraints.

maximize f(x1,x2,xn)
subject to
g1(x,y)=0,
g2(x,y)=0,
gm(x,y)=0

We first find the Lagrangian given by:

L(x1,,xn,λ1,λm)=f(x1,,xn)k=1mλkgk(x1,,xn)

and solve

x1,,xn,λ1,,λmL(x1,,xn,λ1,λm)=0

which implies that

f(x)k=1mλkgk(x)=0

and

g1(x)=g2(x)==gm(x)=0

Example: Maximize f(x,y)=x+y subject to the constraint x2+y2=1.

Solution: Here f(x,y)=x+y, g(x,y)=x2+y21 and therefore,

(1)L(x,y,λ)=f(x,y)+λg(x,y)(2)=x+y+λ(x2+y21)

Now, we calculate the gradient:

(3)x,y,λL(x,y,λ)=(Lx,Ly,Lλ)(4)=(1+2λx,1+2λ,x2+y21)

Therefore:

x,y,λL(x,y,λ)=0{1+2λx=01+2λy=0x2+y21=0

which implies that the stationary points of L are:

(22,22,12),(22,22,12)

Evaluating the objective function f at these points yields

f(22,22)=2,
f(22,22)=2

Thus, the constrained maximum is 2 and the constraied minimum is 2.

Jacobian

The Jacobian martix is the matrix of all first-order partial derivatives of a vector-valued function. If the matrix is a square matrix, both the matrix and its determinant are referred to as the Jacobian in literature.

Suppose f(x):RnRm, then the Jacobian matrix J of f is an m×n matrix as deined below:

J=[fx1fxn]=[f1x1f1xnfmx1fmxn],

or component wise, Jij=fixj


Example 1: Consider the function f:R2R2, with (x,y)(f1(x,y),f2(x,y)), given by

f([xy])=[f1(x,y)f2(x,y)]=[x2y5x+siny]

Then, we have

f1(x,y)=x2y

and

f2(x,y)=5x+siny
Jf(x,y)=[f1xf1yf2xf2y]=[2xyx25cosy]

and the Jacobian determinant is equal to

det(Jf(x,y))=2xycosy5x2

Example 2: Polar-Cartesian Transformation

The transformation from polar coordinates (r,φ) to Cartesian coordinates (x,y), is given by the function F:R+×[0,2π)R2 with components:

x=rcosφ
y=rsinφ

Therefore, the Jacobian matrix of f is given by:

Jf(r,φ)=[xrxφyryφ]=[cosφrsinφsinφrcosφ]

and the Jacobian determinant is equal to r. It is used to transform integrals between the two coordinate systems:

F(A)f(x,y)dxdy=Af(rcosφ,rsirφ)rdrdφ

Example 3: Spherical-Cartesian Transformation

The transformation from spherical coordinates (r,θ,φ) to Cartesian coordinates (x,y,z) is given by the function F:R+×[0,π]×[0,2π)R3 with components:

x=rsinθcosφ
y=rsinθsinφ
z=rcosθ

The Jacobian matrix for this coordinate change is given by:

Jf(r,θ,φ)=[xrxθxφyryθyφzrzθzφ]
=[sinθcosφrcosθcosϕrsinθsinφsinθsinφrcosθsinφrsinθcosφcosθrsinθ0]

and the Jacobian determinant is equal to r2sinθ.

As an example, since dV=dxdydz, this determinant implies that the differential volume element dV=r2sinθdrdθdφ.


PYQs

Limits

1) Find lim(x,y)(0,0)x2yx3+y3 if it exists.

[2011, 10M]


Continuity

1) Let f:D(R2)R be a function and (a,b)D. If f(x,y) is continuous at (a,b), then show that the function f(x,b) and f(a,y) are continuous at x=a and at y=b respectively.

[2019, 10M]


2) Let f(x,y)={2x4y5x3y2+y5(x2+y2)2,(x,y)(0,0)0,(x,y)=(0,0)
Find a δ>0 such that |f(x,y)f(0,0)|<0.01 whenever x2+y2<δ.

[2016, 15M]

Remarks: Original question has printing mistake


3) Examine the continuity for the function f(x,y)={x2xyx2+y,(x,y)(0,0)0,(x,y)=(0,0)

[2015, 12M]


4) Define a function f of two real variables in the plane by: f(x,y)={x3cos1y+y3cos1xx2+y2, for x,y00, otherwise 

Check the continuity and differentiability of f at (0,0).

[2012, 12M]


5) Show that the function given below is not continuous at the origin.

f(x,y)={0 if xy=01 if xy0

[2005, 12M]

Partial Derivatives

1) If

u=sin1x1/3+y1/3x1/2+y1/2,

then show that sin2u is homogeneous function of x and y of degree 16. Hence show that

x22ux2+2xy2uxy+y22uy2=tanu12(1312+tan2u12)

[2018, 12M]


2) Let

f(x,y)=xy2, if y>0 and f(x,y)=xy2, if y0

Determine which of fx(0,1) and fy(0,1) exists and which does not exist.

[2018, 12M]


3) If f(x,y)={xy(x2y2)x2+y2,(x,y)(0,0)0,(x,y)=(0,0)
Calculate 2fxy and 2fyx at (0,0).

[2017, 15M]


4) Compute fxy(0,0) and fyx(0,0) for the function f(x,y)={xy3x+y2,(x,y)(0,0)0,(x,y)=(0,0)
Also discuss the continuity of fxy and fyx at (0,0).

[2013, 15M]


5) If f(x,y) is a homogeneous function of degree n in x and y, and has continuous first and second order partial derivatives, then show that:-
i) xfx+yfy=nf
ii) x22fx2+2xy2fxy+y22fy2=n(n1)f.

[2010, 10M]


6) Let f:R2R be defined as:

f(x,y)={xyx2+y2,(x,y)(0,0)0,(x,y)=(0,0)

Is f continuous at (0,0)? Compute partial derivatives of f at any point (x,y), if it exists.

[2009, 20M]


7) If x=3±0.01 and y=4±0.01 with approximately what accuracy can you calculate the polar coordinates r and θ of the point P(x,y). Express your estimates as percentage changes of the value that r and θ have at the point (3,4).

[2009, 20M]


8) Prove that if z=ϕ(y+ax)+ψ(yax), then a22zy22zx2=0 for any twice differentiable ϕ and ψ. Here, a is a constant.

[2007, 15M]


9) If z=xf(yx)+g(yx), show that x22zx2+2xy2zxy+y22zy2=0

[2006, 15M]


10) Let R2R be defined as f(x,y)=xy(x2+y2),(x,y)(0,0)=0, prove that fx and fy exist (0,0) but f is not differentiable at (0,0).

[2005, 12M]


11) If the function f is defined by: f(x,y)={xyx2+y2,(x,y)(0,0)0,(x,y)=(0,0) then show that f posseses both partial derivative at origin but it is not continuous thereat.

[2004, 15M]


Maxima and Minima

1) Find the maximum and the minimum value of x45x2+4 on the interval [2,3].

[2018, 13M]


2) A conical tent is of given capacity. For the least amount of Canvas required for it, find the ratio of its height to the radius of its base.

[2015, 13M]


3) Which point of the sphere x2+y2+z2=1 is at the maximum distance from the point (2,1,3).

[2015, 13M]


4) Find the height of the cylinder of maximum volume that can be inscribed in a sphere of radius a.

[2014, 15M]


5) Find the maximum or minimum values of x2+y2+z2 subject to the condition ax2+by2+cz2=1 and lx+my+nz=0 interpret result geometrically.

[2014, 20M]


6) Find the point of local extrema and saddle points of the function f for two variable defined by f(x,y)=x3+y363(x+y)+12xy.

[2012, 20M]


7) Show that a box (rectangular parallelepiped) of maximum volume V with prescribed surface area is a cube.

[2010, 20M]


8) A space probe in the shape of the ellipsoid 4x2+y2+4z2=16 enters the earth’s atmosphere and its surface begins to heat. After one hour, the temperature at the point (x,y,z) on the probe surface is given by T(x,y,z)=8x2+4yz16z+1600. Find the hottest point on the probe surface.

[2009, 20M]


9) Determine the maximum and minimum distances of the origin from the curve given by the equation 3x2+4xy+6y2=140

[2008, 20M]


10) Find the maximum and minimum radii vectors of the section of the surface (x2+y2+z2)=a2x2+b2y2+c2z2 by the plane lx+my+nz=0.

[2001, 15M]

Lagrange’s Method of Multipliers

1) Find the maximum and minimum values of x2+y2+z2 subject to the conditions x24+y25+z225=1 and x+yz=0.

[2016, 20M]


2) Using Lagrange’s multiplier method find the shortest distance between the line y=102x and the ellipse x24+y29=1

[2013, 20M]


3) Find a rectangular parallelopiped of greatest volume for a give total surface area S using Lagrange’s method of multipliers.

[2007, 20M]


4) A rectangular box open at the top is to have a volume of 4 m3. Using Lagrange’s method of multipliers, find the dimensions of the box so that the material of a given type required to construct it may be least.

[2003, 15M]

Jacobian

1) Using the Jacobian method, show that if f(x)=11+x2 and f(0)=0, then

f(x)+f(y)=f(x+y1xy)

[2019, 8M]


2) By using the transformation x+y=u, y=uv, evaluate the integral {xy(1xy)}1/2dxdy taken over the area enclosed by the straight lines x=0, y=0 and x+y=1.

[2014, 15M]


3) If u=x+y+z, uv=y+z and uvw=z, then find (x,y,z)(u,v,w)

[2005, 15M]


4) Let the roots of the below equation in λ be u,v,w. (λx)3+(λy)3+(λz)3=0

Prove that: (u,v,w)(x,y,z)=2(yz)(zx)(xy)(uv)(vw)(wu)

[2004, 15M]


5) If the roots of the equation (λu)3+(λv)3+(λw)3=0 in λ are x,y,z, show that:

(x,y,z)(u,v,w)=2(uv)(vw)(wu)(xy)(yz)(zx)

[2002, 15M]


< Previous Next >