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
verify[expand] - verify the equality of two objects when expanded
verify[normal] - verify the equality of two objects when normalized
verify[simplify] - verify the equality of two objects when simplified
Calling Sequence
verify(expr1, expr2, expand)
verify(expr1, expr2, 'expand'(opt1, opt2, ...))
verify(expr1, expr2, normal)
verify(expr1, expr2, 'normal'(expanded))
verify(expr1, expr2, simplify)
verify(expr1, expr2, 'simplify'(opt1, opt2, ...))
Parameters
expr1, expr2
-
anything, assumed to be of type algebraic
opt1, opt2, ...
optional parameters passed to expand or simplify
Description
The verify(expr1, expr2, expand), verify(expr1, expr2, normal), and verify(expr1, expr2, simplify) calling sequences return true if the difference between the arguments expr1 and expr2 is zero after having applied the procedures expand, normal, and simplify, respectively.
Any optional parameters are passed on as subsequent arguments to the appropriate procedures.
These verifications are symmetric.
Because expand, normal, and simplify are Maple procedures, they must be enclosed in single quotes to prevent evaluation.
If either expr1 or expr2 is not of type algebraic then false is returned.
Examples
See Also
expand, normal, simplify, verify
Download Help Document