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
simplify/sqrt - simplify square roots
Calling Sequence
simplify(expr, sqrt)
simplify(expr, sqrt, symbolic)
Parameters
expr
-
any expression
sqrt
literal name; sqrt
symbolic
(optional) literal name; symbolic
Description
The simplify/sqrt function is used to simplify expressions which contain square roots or powers of square roots.
It extracts any square integer or polynomial factor from inside the square root.
The positive square root is used.
You can also apply sqrt(x^2); ==> csgn(x)*x or sqrt(x^2); ==> signum(x)*x if x is known to be real.
Dependent roots like sqrt(6), sqrt(2), sqrt(3) are transformed into having only sqrt(2) and sqrt(3) so as to achieve a normal form.
When the symbolic option is specified, square roots are computed without regard for possible complex or negative values of variables. No csgn() or signum() appears in the answer. The purpose of this feature is to allow simplification of expressions in contexts where the sign has no meaning, such as when x is an algebraic indeterminate. In particular, simplify( sqrt( x^2 - 2*x*y + y^2), sqrt, symbolic), returns at random either or . Furthermore, there is no guarantee that the choice is the same as that made by sqrt( x^2 - 2*x*y + y^2, symbolic).
Examples
See Also
assume, radnormal, simplify[radical], sqrt
Download Help Document