Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
simplify - apply simplification rules to an expression
Calling Sequence
simplify(expr, n1, n2, ...)
simplify(expr, side1, side2, ...)
simplify(expr, assume=prop)
simplify(expr, symbolic)
Parameters
expr
-
any expression
n1, n2, ...
(optional) names; simplification procedures
side1, side2, ...
(optional) sets or lists; side relations
prop
(optional) any property
Basic Information
This help page contains complete information about the simplify command. For basic information on the simplify command, see the simplify help page.
Description
The simplify command is used to apply simplification rules to an expression.
The simplify/expr calling sequence searches the expression, expr, for function calls, square roots, radicals, and powers. It then invokes the appropriate simplification procedures.
Optional Arguments
Invokes only the simplification procedures specified by the additional names.
Further information on the simplification procedures supported is available in the help pages simplify/name where name is one of:
@
constant
constants
Ei
GAMMA
hypergeom
ln
piecewise
polar
power
radical
RootOf
rtable
siderels
size
sqrt
trig
wronskian
zero
You can extend the simplify function by defining a Maple procedure. If the procedure `simplify/f` is defined, then the function call simplify(a,f) invokes `simplify/f`(a).
side1, side2,...
Performs simplification with respect to the side relations. For details, see simplify/siderels.
assume=prop
When the last argument is assume=prop, all the indeterminates in expr are assumed to have the property prop when computing the simplified expression. This option is not necessary to simplify integrands and summands in definite integrals and sums taking into account the integration/summation range. For details, see the following Examples section.
symbolic
Specifies that formal symbolic manipulation of expressions is allowed without regard to the analytical issue of branches for multi-valued functions. For example, the expression sqrt(x^2) simplifies to x under the symbolic option. Without this option, the simplified result must take into account the different possible values of the (complex) sign of x.
Note: When the symbolic option is specified, any branch of a multi-valued function can be chosen during the simplification process. The result of such an operation is in general not valid over the whole complex plane and can lead to incorrect results if you assume the expressions represent analytical functions.
Examples
Integrands and summands are simplified taking into account the integration or sum ranges respectively. For more information, see assuming.
See Also
assume, assuming, collect, combine, convert, expand, factor, normal, RealDomain, RealRange, simplify, simplify/@, simplify/Ei, simplify/GAMMA, simplify/hypergeom, simplify/ln, simplify/polar, simplify/power, simplify/radical, simplify/RootOf, simplify/rtable, simplify/sqrt, simplify/trig
Download Help Document