Arithmetic/Working With Integers
From Wikibooks, the open-content textbooks collection
There are a number of ways to compare two arithmetic expressions. The first one can either be:
- equal to the second (=)
- greater than the second (>)
- less than the second (<)
- greater than OR equal to the second (≥)
- less than or equal to the second (≤)
Examples:
5>2 (reads: "Five is greater than Two") 2<5 (reads: "Two is less than Five") 7=7 (reads: "Seven is equal to Seven") a ≥ b (reads: "A is greater than or equal to B". This means A could be equal to B OR greater than B. ) a ≤ b (reads: "A is less than or equal to B". This means A could be equal to be OR less than B.)
- These are very important to understand before diving into solving equations with these symbols.