What does the 'not equal to' sign mean?

  • Context: High School 
  • Thread starter Thread starter kinkaid
  • Start date Start date
  • Tags Tags
    Mean Sign
Click For Summary

Discussion Overview

The discussion revolves around the meaning and implications of the 'not equal to' sign (=/=) in various contexts, including mathematics and programming. Participants explore whether it signifies mere incompatibility or implies a numerical relationship, particularly the concept of zero.

Discussion Character

  • Exploratory
  • Debate/contested
  • Conceptual clarification
  • Technical explanation

Main Points Raised

  • Some participants question whether "blue =/= red" could imply "blue = 0 red," suggesting a potential numerical interpretation of the 'not equal to' sign.
  • Others argue that the 'not equal to' sign simply indicates that two objects are not equivalent, without allowing for any derived equalities.
  • A participant mentions that the concept of 'not equal to' might be more philosophical than mathematical, proposing that it could mean "no" or "zero" of something.
  • Another participant clarifies that 'not equal to' does not imply zero of something, emphasizing that it only means two objects are not the same.
  • Some contributions reference programming languages, noting how comparisons can yield binary results (true or false) but do not have mathematical implications.
  • There is a discussion about the relationship between 'not equal to' and the number zero, with some participants rejecting the idea that they are related.

Areas of Agreement / Disagreement

Participants express differing views on the interpretation of the 'not equal to' sign, with no consensus reached on whether it implies incompatibility or a numerical relationship. The discussion remains unresolved with multiple competing perspectives.

Contextual Notes

Some participants highlight the limitations of applying mathematical concepts to philosophical interpretations, while others point out that not all branches of mathematics rely on numbers.

kinkaid
Messages
4
Reaction score
0
the 'not equal to' sign ( =/= )? If I say, blue =/= red. could you simply say: blue = 0 red? Or: life =/= death... mean life = 0 death? Does the not equal to sign mean merely 'incompatible' or does it mean 0 of the thing =/=?

How do you use that sign?! I may be far off
 
Last edited:
Mathematics news on Phys.org
kinkaid said:
the 'not equal to' sign ( =/= )? If I say, blue =/= red. could you simply say: blue = 0 red? Or: life =/= death... mean life = 0 death? Does the not equal to sign mean merely 'incompatible' or does it mean 0 of the thing =/=?

How do you use that sign?! I may be far off

It simply means that the two objects are not equivalent. It is not valid to derive any equalities from that statement. For example, 2 [itex]\ne[/itex] 3 does not imply that 2 = 0*3 = 0.
 
then what is the 'not equal to' sign used for. Progamming?

And not equal to what? What if i had a statement blue =/= red... pretty much means blue and red are logically incompatible. Almost like there is 0 red in blue and 0 blue in red. But that's not the function of Not equal to? Not equal to is only 'not equivalent'?

don't forget my question above.
 
Sometimes it's just as useful to know two things are not equal as it is to know two things are equal.

- Warren
 
kinkaid said:
the 'not equal to' sign ( =/= )? If I say, blue =/= red. could you simply say: blue = 0 red? Or: life =/= death... mean life = 0 death? Does the not equal to sign mean merely 'incompatible' or does it mean 0 of the thing =/=?

It means "not equal", not "incomparable". 2 is comparable to 3 (in particular, 2 < 3), but they aren't equal. Incomparable things should be not equal -- as in apple =/= 7 -- but then again maybe not... aleph_1 is incomparable to beth_1 in ZFC, but the statement that aleph_1 =/= beth_1 can't be proven in ZFC (since aleph_1 is equal to beth_1 in some models of ZFC, namely those with the continuum hypothesis).
 
The expression "blue =/= red" is basically shorthand for "it is not the case that blue=red." You can draw no other conclusions from it.
 
The "not equal sign" isn't really used in the context you are trying to use it for.. saying blue does not equal read is not same as blue equals zero red. It's actually means literally "not equal" as in two things are not equal to each other. You are attempting to over analyze the meaning.
 
This may be too philosophical for this forum. contextually there is 0 so it has actual math. But I believe the idea is out of mathematical context, more philosophical.

1) 'not equal to' = no (ex. not equal to blue = no blue)
2) no blue = 0 blue
3) therefore, 0 = 'not equal to'
 
kinkaid said:
This may be too philosophical for this forum. contextually there is 0 so it has actual math. But I believe the idea is out of mathematical context, more philosophical.

1) 'not equal to' = no (ex. not equal to blue = no blue)
2) no blue = 0 blue
3) therefore, 0 = 'not equal to'


By your logic...

Would you say that purple =/= blue?

If so, then purple = 0 blue?

This simply is not true, purple is made of blue and red, so it must have some blue in it right?

Not equal to in no way implies zero of something or zero in anyway. It just means that two objects are not the same exact thing. I think Manchot hit the nail on the head with his definition, you can not draw any other conclusions.
 
  • #10
diffy, this may be hard for you. but it either equals blue or it does NOT equal blue. There's no inbetween.
 
  • #11
Ad hominem. I see no problem with Diffy's reply.
 
  • #12
kinkaid said:
diffy, this may be hard for you. but it either equals blue or it does NOT equal blue. There's no inbetween.

Thanks for insulting me, that's fantastic.

There is no relationship between the 'does not equals sign', and the number 0.

kinkaid said:
If I say, blue =/= red. could you simply say: blue = 0 red?

You can't say that, I'll go for reductio ad absurdum this time. Because then Green =/= red would imply that Green = 0 Red by the same logic. So now we have Blue = 0 Red, and Green = 0 Red, so by transitive Blue = Green.
 
  • #13
To be honest, I have no idea what kinkaid is trying to do with the number 0 and [tex]\neq[/tex], but it reminds me a bit of how some programming languages such as C/C++ and Perl treat true and false.

In C/C++ and Perl, a true comparison is assigned the number 1 and a false comparison is assigned the number 0 (and any other integer is also consider false). However, it doesn't change anything inside of the comparison at all, it assigns the number to the entire comparison.

I.e, (A != B) is either 0 or 1 (depending on whether it's false or true respectively). This also has no mathematical basis; true and false cannot be considered integers. It is just how the results of operations are stored in memory, and giving the programmer access to this let's him do a few tricks to optimize the program.

But I've never before seen anyone get confused by this and think that this treatment of true and false had any mathematical relevance.

----

kinkaid, you said "it has 0 so it has actual math". However, you don't need numbers to do math. There are in fact a lot of branches of mathematics that don't have any numbers in the basic theory at all and don't depend on the existence of numbers as we usually think of them in any way. For instance, look up http://en.wikipedia.org/wiki/Group_theory" . While some familiar sets of numbers form groups, so do a lot of things that have no numbers in them at all.
 
Last edited by a moderator:

Similar threads

  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 22 ·
Replies
22
Views
3K
  • · Replies 9 ·
Replies
9
Views
4K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 20 ·
Replies
20
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 13 ·
Replies
13
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 10 ·
Replies
10
Views
2K