Wolfram Function Repository
Instant-use add-on functions for the Wolfram Language
Function Repository Resource:
Find the tangent plane of a function at a point
| ResourceFunction["TangentPlane"][expr,{x,a},{y,b},z] gives an association of properties of the tangent plane to expr, viewed as an equation in x,y and z, at the point x=a,y=b. | |
| ResourceFunction["TangentPlane"][expr,{x,a},{y,b},z,prop] returns the value of the tangent plane property prop. | 
Return the equation of the tangent plane to a surface:
| In[1]:= | ![ResourceFunction["TangentPlane"][
 x^2 + y^2, {x, 2}, {y, 3}, z,  "StandardFormEquation"]](https://www.wolframcloud.com/obj/resourcesystem/images/c9a/c9ae0c55-7f19-4ea7-9ead-b5e1e4dfb1c2/1-0-1/4c61708f4c193ddf.png)  | 
| Out[1]= |   | 
Visualize the tangent plane:
| In[2]:= | ![ResourceFunction["TangentPlane"][x^2 + y^2, {x, 2}, {y, 3}, z, "Plot"]](https://www.wolframcloud.com/obj/resourcesystem/images/c9a/c9ae0c55-7f19-4ea7-9ead-b5e1e4dfb1c2/1-0-1/2791225d2170d858.png)  | 
| Out[2]= |   | 
Compute the slopes with respect to x and y:
| In[3]:= | ![ResourceFunction["TangentPlane"][
 x^2 + y^2, {x, 2}, {y, 3}, z, "Slopes"]](https://www.wolframcloud.com/obj/resourcesystem/images/c9a/c9ae0c55-7f19-4ea7-9ead-b5e1e4dfb1c2/1-0-1/0d375556f762a92c.png)  | 
| Out[3]= |   | 
Get an association of properties of a tangent plane to a surface:
| In[4]:= | ![ResourceFunction["TangentPlane"][x^2 + y^2, {x, 2}, {y, 3}, z]](https://www.wolframcloud.com/obj/resourcesystem/images/c9a/c9ae0c55-7f19-4ea7-9ead-b5e1e4dfb1c2/1-0-1/02bc9c3daa7ffd76.png)  | 
| Out[4]= |   | 
The first argument to TangentPlane can be an implicit definition of a surface:
| In[5]:= | ![ResourceFunction["TangentPlane"][
 x^2 + y^2 + z^2 == 9, {x, 0}, {y, 0}, {z, -3}, "Plot"]](https://www.wolframcloud.com/obj/resourcesystem/images/c9a/c9ae0c55-7f19-4ea7-9ead-b5e1e4dfb1c2/1-0-1/4d1404a396456faa.png)  | 
| Out[5]= |   | 
TangentPlane also works in four dimensions:
| In[6]:= | ![ResourceFunction["TangentPlane"][
 w == x^2 + y^2 + z^2, {x, 2}, {y, 3}, {z, 5}, w, "StandardFormEquation"]](https://www.wolframcloud.com/obj/resourcesystem/images/c9a/c9ae0c55-7f19-4ea7-9ead-b5e1e4dfb1c2/1-0-1/286b8c485d727d3f.png)  | 
| Out[6]= |   | 
This work is licensed under a Creative Commons Attribution 4.0 International License