verify/relation
verify a relation between two relations
Calling Sequence
Parameters
Description
Examples
verify(expr1, expr2, relation)
verify(expr1, expr2, relation(ver))
expr1, expr2
-
expressions
ver
verification
The verify(expr1, expr2, relation) and verify(expr1, expr2, relation(ver)) calling sequences return true if it can be determined that the relations expr1 and expr2 are equivalent, either by testing for equality or by using verify/ver.
Two equations or inequations are considered to satisfy a relation if the left-hand side minus the right-hand side of the first argument is related to either plus or minus the same construction for the second argument.
Two similar inequalities are considered to satisfy a relation if the left-hand side minus the right-hand side of the first argument is related to the left-hand side minus the right-hand side of the second argument.
The verification relation is symmetric and a verification relation(ver) is symmetric if and only if the verification ver is symmetric.
If either expr1 or expr2 is not of type relation, then false is returned. If expr1 and expr2 are not both of type =, <, <=, or <>, then false is returned.
verify⁡x2−1=1,x2=2,relation
true
verify⁡x2=1,x−1⁢x+1=0,relation
false
verify⁡x2=1,x−1⁢x+1=0,relation⁡expand
See Also
type/relation
verify
Download Help Document