verify/vector
verify a relation between the elements of two vectors
Calling Sequence
Parameters
Description
Examples
verify(expr1, expr2, vector)
verify(expr1, expr2, 'vector'(ver))
expr1, expr2
-
anything, assumed to be of type vector
ver
verification for the vector elements
The verify(expr1, expr2, vector) and verify(expr1, expr2, 'vector'(ver)) calling sequences return true if it can be determined that the two vectors 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 vector is symmetric and a verification 'vector'(ver) is symmetric if and only if the verification ver is symmetric.
Because vector is a Maple function, it must be enclosed in single quotes to prevent evaluation.
If either expr1 or expr2 is not of type vector, then false is returned.
Important: The command vector has been superseded by Vector.
u1≔vector⁡2,1,x⁢1−x
u1≔1x⁢1−x
u2≔vector⁡2,1,x−x2
u2≔1−x2+x
verify⁡u1,u2,vector
false
verify⁡u1,u2,vector⁡expand
true
v1≔vector⁡2,0.3222,0.5001
v1≔0.32220.5001
v2≔vector⁡2,0.3223,0.5000
v2≔0.32230.5000
verify⁡v1,v2,vector
verify⁡v1,v2,vector⁡float⁡106
See Also
vector(deprecated)
verify
Download Help Document