Wolfram: Number Comparison

By Xah Lee. Date: . Last updated: .
Greater

🔸 SHORT SYNTAX: >


x = 3;
y = 4;
y > x
GreaterEqual

🔸 SHORT SYNTAX: >=


x = 3;
y = 4;
y >= x
Less

🔸 SHORT SYNTAX: <


x = 3;
y = 4;
x < y
LessEqual

🔸 SHORT SYNTAX: <=


x = 3;
y = 4;
x <= y

Wolfram. Number

Wolfram. Boolean