Skip to content

alternative exists_unfolding #345

@wdcraft01

Description

@wdcraft01

@wwitzel .

The current state of the Forall() and Exists() quantifiers in logic/booleans/quantification makes it surprisingly difficult and awkward to translate between an existential such as:

$\exists_{x}\big(\lnot P(x)\big)$

and the equivalent universal:

$\lnot\big(\forall_{x}P(x)\big)$,

with the system currently offering Exists.unfold() and Exists.conclude() methods that depend on the following unfolding and folding theorems:

Image

I propose to add analogous theorems along the lines of:

exists_not_unfolding: $\forall_{n \in \mathbb{N}^{+}}\big[ \forall_{P, Q} \big([\exists_{x_1, \ldots, x_n | Q(x_1, \ldots, x_n)}\lnot P(x_1, \ldots, x_n)] \Rightarrow \big(\lnot\big[\forall_{x_1, \ldots, x_n | Q(x_1, \ldots, x_n)} P(x_1, \ldots, x_n)\big]\big)\big)\big]$

exists_not_folding: $\forall_{n \in \mathbb{N}^{+}}\big[ \forall_{P, Q | \big(\lnot\big[\forall_{x_1, \ldots, x_n | Q(x_1, \ldots, x_n)} P(x_1, \ldots, x_n)\big]\big)} \big(\exists_{x_1, \ldots, x_n | Q(x_1, \ldots, x_n)}\lnot P(x_1, \ldots, x_n)]\big)\big]$

along with new Exists() class methods analogous to the current Exists().unfold and Exists().conclude().

Metadata

Metadata

Assignees

Type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions