relational operators - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Equations and Inequalities, =, <>, <, <=, >, >=

 

Description

Thread Safety

Examples

Description

• 

An equation is represented externally using the binary operator =. An expression which is an equation has two operands, the left-hand side and the right-hand side.  The names = and equation are known to the type function.

• 

In 2-D math, when you type <>, <=, or >=, it is displayed as , , or , respectively.

• 

There are three internal data types for inequalities, corresponding to the operators <>, <, and <=. Inequalities involving the operators > and >= are converted to the latter two cases for purposes of representation. An inequality has two operands, the left-hand side and the right-hand side. The names <>, <, <= are known to the type function.

• 

Comparisons of numeric values are carried out in the corresponding numeric computation environment. For example, the test 3.141 < 3.142 is evaluated by subtraction in the floating-point environment determined by Digits. Hence, if Digits > 3, this returns true.  If Digits <= 3, this test returns false.

• 

These operators are viewed as relational operators in a Boolean context or by the evalb function.  For more information, see boolean.

Thread Safety

• 

The equation and inequality operators are thread safe as of Maple 15.

• 

The Equations and Inequalities, =, <>, <, <=, >, >= command is thread-safe as of Maple 15.

• 

For more information on thread safety, see index/threadsafe.

Examples

(1)

(2)

(3)

(4)

(5)

(6)

(7)

(8)

(9)

(10)

(11)

(12)

See Also

assign

boolean

evalb

lhs

op

plots[inequal]

rhs

type

type/equation

type/inequation

 


Download Help Document