next up previous
Next: About this document ... Up: No Title Previous: No Title

Subsections


Implicit Differentiation

Purpose

Background

Implicit Differentiation

The implicitdiff command can be used to find derivatives of implicitly defined functions. Suppose we wanted to use implicit differentiation to find $\displaystyle \frac{dy}{dx}$ for the relation

x2y2+y3=0

Then we first define our relation and give it a label for later use.
  > f:=x^2*y^2+y^3=0;

\begin{maplelatex}
\begin{displaymath}
f := x^{2}\,y^{2} + y^{3}=0\end{displaymath}\end{maplelatex}
The syntax of the implicitdiff command is shown by the following example.
  > implicitdiff(f,y,x);

\begin{maplelatex}
\begin{displaymath}
 - 2\,{\displaystyle \frac {x\,y}{2\,x^{2} + 3\,y}} \end{displaymath}\end{maplelatex}
The result of the command is the implicit derivative, $\displaystyle \frac{dy}{dx}$. The syntax of this command is very similar to that of the diff command. The first argument is always the relation that you want to differentiate implicitly. We were careful to use an equation for this argument, but if you just give an expression for this argument, Maple assumes you want to set this expression equal to zero before differentiating. The second argument to the implicitdiff command is where you tell Maple what the dependent variable is. That is, by putting y here, we were saying that we were thinking of this relation as defining y(x) and not x(y). The remaining arguments to implicitdiff are for specifying the order of the derivative you want. See below for an example of finding the second derivative implicitly.

Second derivatives can also be taken with implicitdiff. The following command computes $\displaystyle\frac{d^2y}{dx^2}$.

  > implicitdiff(f,y,x,x);

\begin{maplelatex}
\begin{displaymath}
 - 2\,{\displaystyle \frac {y\,( - 8\,x^{...
 ... 36\,x^{4}\,y + 54\,x^{2}\,y^{2} + 27\,y^{3}}} \end{displaymath}\end{maplelatex}

To compute numerical values of derivatives obtained by implicit differentiation, you have to use the subs command. For example, to find the value of $\displaystyle \frac{dy}{dx}$ at the point (1,-1) you could use the following command.

  > subs({x=1,y=-1},implicitdiff(f,y,x));

\begin{maplelatex}
\begin{displaymath}
-2\end{displaymath}\end{maplelatex}
Sometimes you want the value of a derivative, but first have to find the coordinates of the point. More than likely, you will have to use the fsolve command for this. However, to get the fsolve command to give you the solution you want, you often have to specify a range for the variable. Being able to plot the graph of a relation can be a big help in this task, so we now describe the implicitplot command. This Maple command for plotting implicitly defined functions is in the plots package which must be loaded before using the command.
  > with(plots):
Here is an example of using this command to plot the hyperbola x2-y2=1. Note that you have to specify both an x range and a y range. This is because the implicitplot command works by setting up a grid inside the ranges you specify and then using the grid points as starting values in solving the relation numerically.
  > implicitplot(x^2-y^2=1,x=-3..3,y=3..3);
To get a good graph with this command, you usually have to experiment with the ranges. For example the following command
  > implicitplot(f,x=-1..1,y=1..2);
produces an empty plot. The reason is simply that there are no solutions to x2y2+y3 = 0 with y > 0. This is easy to see if you rewrite the equation as x2y2= -y3 and recognize that both sides of the equation must be nonnegative. Usually a good strategy to follow is to start with fairly large ranges, for example -10 to 10 for both variables, and then refine them based on what you see.

This command can also have problems if the relation in question has solution branches that cross or are too close together. For example, try the following command.

  > implicitplot(f,x=-1..1,y=-1..0);
For y less than about -0.2, you should see the two smooth curves. However, for values of y closer to zero the two curves become jagged. In addition, the graph includes the whole x axis. To understand this, we need to take a closer look at the relation we tried to plot. The key is to notice that we can factor out y2 and write our relation as follows.

y2 (x2+y)

This makes it clear that the graph of the relation really has two pieces: y=0 and y=-x2. These two curves intersect at the origin, which explains why implicitplot has problems there.

As our last example, consider the relation $x^2 \sin(y)=1$. Try the following commands to see what a part of the graph of this relation looks like.

  > g := x^2*sin(y)=1;

\begin{maplelatex}
\begin{displaymath}
g := x^{2}\,{\rm sin}(y)=1\end{displaymath}\end{maplelatex}
  > implicitplot(g,x=-4..4,y=-10..10);
Suppose you were asked to find the slope of the graph of this relation at x=2, but you were only given that the value of y was about 9. Using the plot, it is relatively easy to find this derivative by first using fsolve to find the y value and then substituting to into the formula for the derivative. Note the use of a label so we can use the value of y in the next command.
  > y_sol := fsolve(subs(x=2,g),y,y=8..10);

\begin{maplelatex}
\begin{displaymath}
{\it y\_sol} := 9.172097706\end{displaymath}\end{maplelatex}
  > evalf(subs({x=2,y=y_sol},implicitdiff(g,y,x
)));

\begin{maplelatex}
\begin{displaymath}
.2581988893\end{displaymath}\end{maplelatex}

Exercises

1.
Find the slope of the graph of x2-y2=3 at the point (2,-1). Supply a plot of the graph that includes the point in question.
2.
For the relation x2y2+y3=0, the implicitdiff command gave the result

\begin{displaymath}
- 2\,{\displaystyle \frac {x\,y}{2\,x^{2} + 3\,y}} \end{displaymath}

Explain why this formula can't be used at the point (0,0) in terms of the graph of this relation. Does it give the correct results if you substitute y=0 or y=-x2?
3.
Consider the relation x2y2+y3 = 1.
(a)
Use the implicitplot command and/or any other technique to determine what the graph of this relation looks like. How many separate branches does the graph contain?
(b)
Find $\displaystyle \frac{dy}{dx}$ at the point(s) on the graph where x=1.
(c)
Are there any points on the graph where the derivative $\displaystyle \frac{dy}{dx}$ is undefined because the tangent line is vertical? If so, find them. (Hint - if the tangent line is vertical, what is true about $\displaystyle \frac{dx}{dy}$?)

next up previous
Next: About this document ... Up: No Title Previous: No Title

Jane E Bouchard
11/30/1999