Classroom Tips and Techniques: Drawing a Normal and Tangent Plane on a Surface
Robert J. Lopez
Emeritus Professor of Mathematics and Maple Fellow
Maplesoft
Introduction
A question posted to MaplePrimes on May 25, 2013, asked for help in drawing a normal and tangent plane on a given surface. Posted on the Sunday prior to the American Memorial Day holiday, it was probably a request for help on a homework assignment. As such, it went unanswered, but it's such a standard problem in multivariate calculus, that it begs for a solution. In fact, there are at least four different ways to solve the problem in Maple, and this article discusses them all.
The Problem
The actual post to MaplePrimes can be found here. In essence, it asks for the normal and tangent plane at on the surface defined by .
Solution 1
Table 1 contains a solution based on the new "lines and planes" commands recently added to the Student MultivariateCalculus package in Maple 17. The solution is implemented via explicit calls to commands, but the calculation could equally well be done in a syntax-free way through the Context Menu.
Initializations
Click the restart icon in the toolbar, or execute the restart command at the right.
Tools_Load Package: Student Multivariate Calculus
Loading Student:-MultivariateCalculus
Assign to the name , the expression for .
Define , the point of contact.
Obtain a normal vector at the point
Apply the Gradient command to the expression . The Gradient command in the MultivariateCalculus package has simple syntax for evaluating the gradient vector at a point.
Obtain the tangent plane
Invoke the Plane command with the point and normal vector N as arguments.
Display the equation of the plane with the GetRepresentation command.
Table 1 Tangent plane and normal obtained in the Student MultivariateCalculus package
Figure 1 shows the surface, the tangent plane, and the normal vector. The surface is drawn with the plot3d command; the tangent plane, normal, and point of contact, with the GetPlot command in the MultivariateCalculus package. The two separate images are joined with the display command in the plots package.
Figure 1 Surface drawn by plot3d; tangent plane and normal, by GetPlot
Solution 2
Table 2 contains a solution based on commands in the Student VectorCalculus package. As in Table 1, explicit commands are employed; the calculations also can be implemented in a syntax-free way through the Context Menu.
Tools_Load Package: Student Vector Calculus
Loading Student:-VectorCalculus
The Gradient command in the VectorCalculus packages returns a VectorField object. Evaluation at a point via the evalVF command returns a RootedVector that "knows" the location of its root point, or "tail".
Obtain the equation of the tangent plane
In the VectorCalculus packages, the TangentPlane command returns the parametric form of a tangent plane, placing the component expressions in a vector.
Table 2 Tangent plane and normal obtained in the Student VectorCalculus package
Figure 2 shows the surface, the tangent plane, and the normal vector. The surface is drawn with the plot3d command; the tangent plane, with the implicitplot3d command; and the normal vector, with the PlotVector command in the Student VectorCalculus package.
Figure 2 Surface, tangent plane, and normal vector
Each component in Figure 2 is drawn with a different command. The surface is drawn with the plot3d command that resides at top level. The tangent plane is drawn with the implicitplot3d command in the plots package. The advantage here is the greater control over the size of the tangent plane. Finally, the normal vector is drawn with the PlotVector command in the Student VectorCalculus package. This command respects the root point when graphing a RootedVector.
Solution 3
A third solution obtains the tangent plane as the degree-one Taylor polynomial approximation to . This approximation can be obtained via the TaylorApproximation command, or via the Taylor Approximation tutor. Table 3 first initializes the calculation; the interaction with the tutor is captured by the static image in Figure 3.
As per Table 1, apply the Gradient command to the expression , again making use of the simple syntax for evaluating the gradient vector at a point.
Type Context Menu: Evaluate and Display Inline
Context Menu: Tutors_Calculus-Multivariate_Taylor Approximation
Adjust the tutor as per Figures 3 and 4, below.
=
Table 3 Solution via Taylor Approximation tutor
As per Figure 4, set the coordinates for the point of contact, and change the default degree (which is 5) to 1. Click the Plot Options button to obtain the dialogs shown Figure 3. Change the size of the bounding box for the graph, apply constrained scaling, and change the axes to "frame." Click the Color button to select color change for the Taylor series, and for the tangent plane, select a color lighter than the default color.
Figure 3 Auxiliary dialogs associated with the Taylor Approximation tutor
The graph in the tutor is returned to the worksheet by clicking the Close button. Note the TaylorApproximation command at the bottom of the tutor. It can be copied and pasted, thereby obtaining the graph directly, without going through the intermediary of the tutor.
Figure 4 Tangent plane obtained as the degree-one Taylor polynomial approximation
Figure 6 is obtained from the graph returned by the tutor by adding the normal vector via a drag-and-drop (or copy/paste) of the image of the vector in Figure 5.
Figure 5 Normal vector drawn with the arrow command in the plots package
After interactively adjusting the axes via the Context Menu for the graph of the surface and tangent plane, and adding the graph of the vector, the result is Figure 6, comparable to Figures 1 and 2.
Figure 6 Graph of surface, tangent plane and normal vector
Of course, the graph returned by the tutor can be generated directly, as per Figure 7, where it is assigned to a name so that it can be used in the display command that generates Figure 8.
Figure 7 Graph of surface and tangent plane generated by the TaylorApproximation command
Figure 8 combines the graph in Figure 7 with a graph of the normal vector.
Figure 8 Alternate method for obtaining the graph in Figures 1, 2, and 6
Solution 4
Table 4 contains top-level calculations for the normal vector and the equation of the tangent plane. No special packages are therefore used. In place of the partial derivative templates taken from the Expression palette, the diff command could have been used. Also, in place of the Evaluation template, the eval command could have been used.
The dot product operator from the Common Symbols palette could have been replaced with the period. The vector form of the equation of a plane is compact. The algebraic alternative of writing , and determining by the substitutions , would require additional steps.
Initialize
Define the point of contact as the vector P.
Obtain a normal vector at
Obtain the vector , a normal to .
Expression palette: Evaluation template Evaluate v at the point of contact.
Using the vector form of the equation of a plane containing the point , and having normal N, obtain , the required tangent plane.
Table 4 Top-level calculation of a normal and the equation of the tangent plane
Figure 9, comparable to Figures 1, 2, 6, and 8, is obtained from separate graphs of the surface, tangent plane, and normal vector.
Figure 9 Graph of surface, tangent plane, and normal vector
Legal Notice: © Maplesoft, a division of Waterloo Maple Inc. 2013. Maplesoft and Maple are trademarks of Waterloo Maple Inc. This application may contain errors and Maplesoft is not liable for any damages resulting from the use of this material. This application is intended for non-commercial, non-profit use only. Contact Maplesoft for permission if you wish to use this application in for-profit activities.