开发者

What is the meaning of ∃? [closed]

Closed. This question is off-topic.开发者_开发百科 It is not currently accepting answers.

Want to improve this question? Update the question so it's on-topic for Stack Overflow.

Closed 11 years ago.

Improve this question

Reading a book on algorithms. Can someone explain the meaning of the mathematical symbol ∃?


It is called a quantifier. It means "there exists".

When used in an expression such as

∃x s.t. x > 0

It means "There exists a number x such that x is greater than 0."

Its counterpart is ∀, which means "for all". It's used like this:

∀x, x > 0

Which means "For any number x, it is greater than 0."


It is the "existential quantifier" as opposed to the upside-down A (∀) which means "universal quantifier." It should be read as "there exists" or "for some". It is a predication that means that some relation or property holds true for at least one object in the domain.

Examples:

An integer n is composite if integer m such that m > 1 and m < n with n divisible by m.

An integer n is prime if integer m such that m > 1 and m < n it is true that n is not divisible by m.

A function f is continuous on a metric space (X, d) if ∀x∀ε>0∃δ>0 | ∀y d(x, y) < δ => d(f(x), f(y)) < ε


More Info on Predicate Logic


It is called existential quantifier and being followed by x, it means there exists at least one x


For future reference, wikipedia has a table of mathematical symbols, with an explanation of the meaning(s) of each one.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜