If ' A ' and ' B ' are equal . . . A =BIf ' A ' is greater . . . A > BIf ' A ' is smaller . . . A
No. B is either more or less than A therefore B isn't the same as A.
False. A is greater than C. ******************** I'm not in calculus but if A isn't less than B, then that means its either greater than or equal to it. and if B isn't less than C then its greater or equal to. so that means that A is either greater than or equal to C. so that means that A than C.
If a is not less than b then a is greater than or equal to b. The symbol for "greater than or equal to " is > with a bar under it -- a combination of the equal sign (=) and the greater than sign (>). In many computer languages you can use >= with no space between for this relation.
B>with the line under it 5
This means that whatever a given number "a" is, number "b" is larger that number "a". If you are trying to say equal or greater, it would be number "b" is either equal to number "a", or of larger value than "a".
Only if b is greater than 1 and less than 2 will 12b be greater than 12 and less than 24. If b is 1 or less, 12b will be less than or equal to 12 If b is 2 or more, 12b will be greater than or equal to 24.
A is greater than B (A>B). C is less than D (C<D). But what about "less than or equal"?
x >_ b means x is bigger than b or equal to b. x <_ b means x is smaller than b or equal to b. sorry for this stupid characters ;)
It means that two expressions are not equal, as in a # b (Using "#" for inequality). A statement that includes "less than", "less than or equal", "greater than", or "greater than or equal", can also be considered an inequality, for example, | x | < 5
An inequality is similar to an equation, in that it compares two expressions. But in an equality, instead of an equal sign, you would usually use one out of the following inequality symbols:* less than * less than or equal * greater than * greater than or equal
class Comparing{public static void main(String[] args){int a=24, b=25;if (a == b){System.out.println("Both are equal");}else if(a>b){System.out.println("a is greater than b");}else {System.out.println("b is greater than a");}}}