Tell me more ×
Philosophy Stack Exchange is a question and answer site for those interested in logical reasoning. It's 100% free, no registration required.

We have, not all represented by ~(x) and some represented (∃x) For example if I say,

  1. Not all are animals.
  2. Some are animals.

Because we aren't considering all the animal nor we are disregarding all the animal. What would be difference between the two statements and how do we use them?

share|improve this question

2 Answers

up vote 8 down vote accepted

"Some", (∃x), is left-open, right-closed interval - the number of animals is in (0, x], 0 < n ≤ x

"Not all", ~(x), is right-open, left-closed interval - the number of animals is in [0, x), 0 ≤ n < x.

"Some" means at least one (can't be 0), "not all" can be 0.

"No", ~(∃x), allows only number 0.

share|improve this answer
There's also 'no' ~(∃x) which also can be 0. How would it be different from "Not all"? – user963241 Nov 1 '12 at 9:03
2  
No only allows one value - 0. Not all allows any value from 0 (inclusive) to the total number (exclusive). – Ryno Nov 1 '12 at 9:11

This may be clearer in first order logic. Let P be the relevant property:

"Some x are P" is ∃x(P(x))

"Not all x are P" is ∃x(~P(x)), or equivalently, ~(∀x P(x))

The practical difference between some and not all is in contradictions. If P(x) is never true, ∃x(P(x)) is false but ∃x(~P(x)) is true.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.