Student[MultivariateCalculus][SurfaceArea] - return the surface area defined by a function
|
Calling Sequence
|
|
SurfaceArea(f(x,y), x=a..b, y=c..d, opts)
|
|
Parameters
|
|
f(x, y)
|
-
|
algebraic expression
|
x, y
|
-
|
name; independent variables
|
a, b, c, d
|
-
|
real constants; limits of integration
|
opts
|
-
|
(optional) equation(s) of the form option=value where option is one of areaoptions, edgeoptions, functionoptions, output, regionoptions, showarea, showedges, showfunction, or showregion; specify output optionsmore
|
|
|
|
|
Description
|
|
•
|
The SurfaceArea(f(x,y), x=a..b, y=c..d) calling sequence returns the value of the surface area defined by z=f(x,y) over the specified region, if this can be exactly determined, or the integral representing this value. In the latter case, use the evalf function to obtain a numerical approximation to the exact result.
|
•
|
The output parameter can be used to select whether this command returns a value, the integral representing the surface area, or a plot showing the surface and region over which the area is to be considered.
|
•
|
If the output=plot option is specified, the function f(x,y) is plotted over a region slightly larger than that specified by the second and third parameters. The part of the surface over that specified region is colored differently from the part outside that region. Vertical lines are drawn at the corner of the region.
|
•
|
The opts argument can contain any of the following equations that set output options.
|
|
Specifies the plot options for plotting the portion of the surface that lies over the selected region. For more information on plotting options, see plot3d/options.
|
|
Specifies the plot options for plotting the lines marking the corners of the region over which the surface area is to be computed. For more information on plotting options, see plot3d/options.
|
|
Specifies the plot options for plotting the function . For more information on plotting options, see plot3d/options.
|
|
output = value, plot, or integral
|
|
This option controls the return value of the function.
|
|
* output = value specifies that the value of the surface area is returned. Plot options are ignored if output = value. The default is output = value.
|
|
* output = plot specifies that a plot is displayed showing the a graph of the expression, the specified region, and the portion of the surface over that region.
|
|
* output = integral specifies that the inert form of the surface area integral is returned. For this selection only, the endpoints of the integration ranges can be arbitrary algebraic expressions.
|
|
Specifies the plot options for the region over which the area of the surface is being considered. For more information on plotting options, see plot3d/options.
|
|
Specifies whether the area of the surface over the selected region is plotted (distinctly from the surface). The default is true.
|
|
showedges = true or false
|
|
Determines whether the lines marking the region corners are plotted. The default is true.
|
|
showfunction = true or false
|
|
Determines whether the function is plotted. When true, the function is plotted over a region slightly larger than the region over which the area is being considered. The default is true.
|
|
showregion = true or false
|
|
Determines whether the region is plotted. The default is true.
|
|
The default caption is constructed from the parameters and the command options. caption = "" disables the default caption. For more information about specifying a caption , see plot/typesetting.
|
|
The default title is constructed from the parameters and the command options. title = "" disables the default title. For more information about specifying a title, see plot/typesetting.
|
•
|
For information on how to change the default colors, see the Student[SetColors] help page.
|
|
|
Examples
|
|
>
|
|
>
|
|
| (1) |
>
|
|
| (2) |
>
|
|
>
|
|
|
|