30

Googling this question has proved somewhat useless, so the ¬ symbol:

  • What is it for?
  • What is is called?
  • Is it used in any programming languages?
gnat
  • 21,213
  • 29
  • 113
  • 291
BanksySan
  • 724

1 Answers1

36

The only use I've seen for the ¬ symbol is to represent negation in the context of formal logic. For instance, if P is the proposition "It will rain today", then ¬P is the proposition "It will not rain today." I've also seen ~ used for this.

I don't believe it has an actual name other than "negation symbol". Normally it's read as "not".

As far as I know, in programming this symbol has no special meaning, at least not in any mainstream languages I've used.

Ixrec
  • 27,771