Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
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.
areaoptions = list
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.
edgeoptions = list
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.
functionoptions = list
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.
regionoptions = list
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.
showarea = true or false
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.
caption = anything
A caption for the plot.
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.
title = anything
A title for the plot.
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
See Also
plot3d/options, Student, Student[MultivariateCalculus]
Download Help Document