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
IntegrationTools[CollapseNested] - collapse a nested integral into a multiple integral
Calling Sequence
CollapseNested(v)
CollapseNested(v, options)
Parameters
v
-
nested integral expression
options
(optional) specify one or more of the following: stripoptions, intersectoptions, matchtypes, norecurse
Description
The function CollapseNested collapses a nested integral into a multiple integral given as a single Int or int function call.
If v is an expression of nested definite and indefinite integrals, only the matching integrals will be collapsed.
You can control whether options present in the integral v will appear in the output. If the option stripoptions is given, none of the options in the integral v will appear in the output. If the option intersectoptions is given, the options that appear in every integral will appear in the output. Otherwise, all options on any of the integrals will appear in the output.
If the option matchtypes is given, only integrals of the same type will be collapsed. For example, two nested Int integrals will be collapsed, but nested int and Int integrals will not be collapsed.
If the option norecurse if given, only the outermost integrals will be collapsed.
Examples
The display of i1 and i2 look the same but in fact the integrals have different structure:
Int(f(x,y),[x, y]) = Int(Int(f(x,y),x),y)
Collapsing integrals will match the outermost type of integral
Int(f(x,y),[x, y])
Int(int(f(x,y),x),y)
Int(Int(f(x,y),[x = a .. b, y = c .. d]),[x, y])
Int(Int(Int(f(x,y),x = a .. b),y = c .. d),[x, y])
See Also
int, IntegrationTools, IntegrationTools[ExpandMultiple]
Download Help Document