Inequality Articles about
Inequality
Website Links For
Inequality
 

Information About

Inequality




s of Linear Programming are defined by a set of inequalities.]]

In )
  • The notation a < b \!\ means that ''a'' is less than ''b'' and

  • The notation a > b \!\ means that ''a'' is greater than ''b''.

  • These relations are known as strict inequality; in contrast

  • a \le b means that ''a'' is less than or equal to ''b'' and

  • a \ge b means that ''a'' is greater than or equal to ''b''.


If the sense of the inequality is the same for all values of the variables for which its members are defined, then the inequality is called an "absolute" or "unconditional" inequality. If the sense of an inequality holds only for certain values of the variables involved, but is reversed or destroyed for other values of the variables, it is called a conditional inequality. The sense of an inequality is not changed if both sides are increased or decreased by the same number, or if both sides are multiplied or divided by a positive number; the sense of an inequality is reversed if both members are multiplied or divided by a Negative Number .

Young students sometimes confuse the less-than and greater-than signs, which are mirror images of one another. A commonly taught mnemonic is that the sign represents a hungry Alligator that is trying to eat the larger number; thus, it opens towards 8 in both 3 < 8 and 8 > 3. {Link without Title} Although widely used, some believe this mnemonic is misleading because young students can overlook the sign of a number, leading to false statements such as -3 < -8, though others argue that any misconception there isn't the fault of the mnemonic but of the student for not realizing which number is really greater than which, and since -3 is greater than -8 the mnemonic analogy is still accurate.

The notation a >> b means that a is "much greater than" b (although in Computer Science , the symbol may denote Bitwise Shift Operator ). What this means exactly can vary, meaning anything from a factor of 100 difference to a ten order of magnitude difference. It is used in relation to equations in which a much greater value will cause the output of the equation to converge on a certain result. Often results involving "much greater than" can be formalized using Limit s.


PROPERTIES

Inequalities are governed by the following Properties :


Trichotomy


The trichotomy property states:
  • For any Real Number s, "a" and "b", only one of the following is true:

  • --- a < b

  • --- a = b

  • --- a > b



Transitivity


The transitivity of inequalities states:
  • For any Real Number s, "a", "b", "c":

  • ---If a > b and b > c; then a > c

  • ---If a < b and b < c; then a < c



Reversal


The inequality relations are mirror images in the sense that:
  • For any Real Number s, "a" and "b":

  • ---If a > b then b < a

  • ---If a < b then b > a



Addition and subtraction


The properties which deal with Addition and Subtraction states:
  • For any Real Number s, "a", "b", "c":

  • ---If a > b; then a + c > b + c and a − c > b − c

  • ---If a < b; then a + c < b + c and a − c < b − c



Multiplication and division


The properties which deal with Multiplication and Division state:
  • For any real numbers, "a", "b", and "c":

  • --- If c is Positive and a > b; then a × c > b × c and a / c > b / c

  • --- If c is positive and a < b; then a × c < b × c and a / c < b / c

  • --- If c is negative and a > b; then a × c < b × c and a / c < b / c

  • --- If c is negative and a < b; then a × c > b × c and a / c > b / c



Applying a function to both sides

Any strictly Monotonic ally increasing Function may be applied to both sides of an inequality and it will still hold.


CHAINED NOTATION


The notation a < b < c stands for a < b and b < c which, by the transitivity property above, it also follows that a < c. Obviously, by the above laws, one can add/subtract the same number to all three terms, or multiply/divide all three terms by same nonzero number and reverse all inequalities according to sign. But care must be taken so that you really use the same number in all cases, eg. a < b + e < c is equivalent to a − e < b < c − e.

This notation can be generalized to any number of terms: for instance, a1 ≤ a2 ≤ ... ≤ an means that ai ≤ ai+1 for i = 1, 2, ..., n−1. By the transitivity property, this condition is equivalent to ai ≤ aj for any 1 ≤ i ≤ j ≤ n.

Occasionally, chained notation is used with inequalities in different directions, in which case the meaning is the Logical Conjunction of the inequalities between adjacent terms. For instance, a < b > c ≤ d means that a < b, b > c, and c ≤ d. In addition to rare use in mathematics, this notation exists in a few Programming Language s such as Python .


WELL-KNOWN INEQUALITIES


See also List Of Inequalities .

Mathematician s often use inequalities to bound quantities for which exact formulas cannot be computed easily. Some inequalities are used so often that they have names:



SEE ALSO




REFERENCES