verify/Array
verify a relation between two Arrays
Calling Sequence
Parameters
Description
Examples
Compatibility
verify(expr1, expr2, Array)
verify(expr1, expr2, 'Array'(ver))
expr1, expr2
-
anything, assumed to be of type Array
ver
verification for the Array elements
The verify(expr1, expr2, Array) and verify(expr1, expr2, 'Array'(ver)) calling sequences return true if it can be determined that the two Arrays satisfy a relation elementwise, either by testing with equality or using the verification ver.
If true is returned, then each of the pairs of elements satisfied the relation. If false is returned, then at least one pair of elements did not satisfy the relation (a result of type verify(false)). Otherwise, FAIL is returned, indicating that for at least one pair of elements it could not be determined whether or not they satisfied the relation (a result of type verify(FAIL)).
The verification Array is symmetric and a verification 'Array'(ver) is symmetric if and only if the verification ver is symmetric.
Since Array is a Maple function, it must be enclosed in single quotes to prevent evaluation.
If either expr1 or expr2 is not of type Array, then false is returned.
The special verifications %NULL, seq, and &, can be used to verify an expression sequence in an Array. See verify/exprseq.
a≔Array⁡1..3,1,2,x−12
a≔12x−12
b≔Array⁡1..3,1,2,x−12
b≔12x−12
c≔Array⁡1..3,1,2,x2−2⁢x+1
c≔12x2−2⁢x+1
evalb⁡a=b
false
verify⁡a,b,Array
true
verify⁡a,c,Array
verify⁡a,c,Array⁡expand
The verify/Array command was updated in Maple 2015.
See Also
Array
verify
Download Help Document