Difference between revisions of "Membership in Goal"

From Event-B
Jump to navigationJump to search
imported>Laurent
imported>Nicolas
 
(17 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
{{TOCright}}
 
= Objective =
 
= Objective =
  
Line 24: Line 25:
 
This part explains how the tactic (MembershipGoalTac) associated to the reasoner MembershipGoal is working.
 
This part explains how the tactic (MembershipGoalTac) associated to the reasoner MembershipGoal is working.
 
=== Goal ===
 
=== Goal ===
The tactic (as the reasoner) should works only on goals such as :
+
The tactic (as the reasoner) works only on goals of the form :
 
*<math>\cdots~\in~\cdots</math>
 
*<math>\cdots~\in~\cdots</math>
For examples :
+
For example:
 
*<math>f(x)\in g\otimes h</math>
 
*<math>f(x)\in g\otimes h</math>
 
*<math>x\in A\cprod\left(B\cup C\right)</math>
 
*<math>x\in A\cprod\left(B\cup C\right)</math>
Line 33: Line 34:
  
 
=== Hypotheses ===
 
=== Hypotheses ===
Now we have to find hypotheses leading to discharge the sequent. To do so, the tactic recovers two kinds of hypotheses :
+
Now we have to find hypotheses leading to discharge the sequent. To do so, the tactic looks for two kinds of hypothesis :
#the ones related to the left member of the goal <math>\left( x\in S\right)</math> (this is the start point):
+
#the ones related to the left member of the goal <math>\left( x\in S\right)</math> (which will be used as a starting point):
 
#*<math>x\in \cdots</math>
 
#*<math>x\in \cdots</math>
 
#*<math>\cdots\mapsto x\mapsto\cdots\in\cdots</math>
 
#*<math>\cdots\mapsto x\mapsto\cdots\in\cdots</math>
Line 40: Line 41:
 
#*<math>\left\{\cdots, \cdots\mapsto x\mapsto\cdots,\cdots\right\}=/\subset/\subseteq\cdots</math>
 
#*<math>\left\{\cdots, \cdots\mapsto x\mapsto\cdots,\cdots\right\}=/\subset/\subseteq\cdots</math>
 
#*<math>f\ovl\left\{\cdots, x, \cdots\right\}=/\subset/\subseteq\cdots</math>
 
#*<math>f\ovl\left\{\cdots, x, \cdots\right\}=/\subset/\subseteq\cdots</math>
#the ones denoting inclusion (all but the ones matching the description of the first point) :
+
#the ones denoting inclusion (which will be used to find a path from a starting point to the goal) :
 
#*<math>\cdots\subset\cdots</math>
 
#*<math>\cdots\subset\cdots</math>
 
#*<math>\cdots\subseteq\cdots</math>
 
#*<math>\cdots\subseteq\cdots</math>
 
#*<math>\cdots=\cdots</math>
 
#*<math>\cdots=\cdots</math>
Then, it will search a link between those hypotheses so that the sequent can be discharged.
+
Then, it will search a link between these hypotheses so that the sequent can be discharged.
  
 
=== Find a path ===
 
=== Find a path ===
Now that we recovered all the hypotheses that could be useful for the reasoner, it remains to find a path among the hypotheses leading to discharge the sequent. Depending on the relations on each side of the inclusion, we will act differently. <math>f</math> always represent an expression (may be a domain, a range, etc.).
+
Now that we have found all the hypotheses that could be useful to the reasoner, it remains to find a path among these hypotheses leading to discharge the sequent. Depending on the relations on each side of the inclusion, we will act differently. <math>f</math> always denotes an expression (it may be a domain, a range, etc.).
 
#The following sequent is provable because <math>f\subseteq \varphi (f)</math>.
 
#The following sequent is provable because <math>f\subseteq \varphi (f)</math>.
 
#*<math>x\in f,\quad \varphi (f)\subseteq g\quad\vdash\quad x\in g</math>
 
#*<math>x\in f,\quad \varphi (f)\subseteq g\quad\vdash\quad x\in g</math>
Line 97: Line 98:
 
:<math>name\;of\;the\;rule\quad\frac{predicate\;of\;first\;antecedent\cdots predicate\;of\;last\;antecedent}{consequent\;of\;that\;rule}\left[parameters\right]</math>
 
:<math>name\;of\;the\;rule\quad\frac{predicate\;of\;first\;antecedent\cdots predicate\;of\;last\;antecedent}{consequent\;of\;that\;rule}\left[parameters\right]</math>
 
:<math>Hypothesis\quad\frac{}{predicate}\left[predicate\right]</math>
 
:<math>Hypothesis\quad\frac{}{predicate}\left[predicate\right]</math>
:<math>IncludBunion\quad\frac{A\bunion B\bunion C\bunion D\subseteq Z}{B\bunion C\subseteq Z}\left[B,~C\right]</math>
+
:<math>IncludeBunion\quad\frac{A\bunion B\bunion C\bunion D\subseteq Z}{B\bunion C\subseteq Z}\left[B,~C\right]</math>
 
:<math>Composition\quad\frac{x\in A,~A\subseteq B}{x\in B}\left[~\right]</math>
 
:<math>Composition\quad\frac{x\in A,~A\subseteq B}{x\in B}\left[~\right]</math>
  
 
= Implementation =  
 
= Implementation =  
  
This section explain how the tactic has bee implemented.
+
This section explains how the reasoner has been implemented.
  
=== Positions ===
+
=== Hypotheses ===
As it was said, we may sometimes need the position. It is represented by an array of integer. Here are the possible values the array contains (atomic positions) :
+
From the hypotheses, the reasoner derives new hypotheses leading to discharge the sequent. As explained in the design decision part, there are two kinds of hypotheses which are recovered (membership and inclusion). So, we developped two extractors which extract useful predicates from the hypotheses with these [[#Inference rules|inference rules]]. For each new hypothesis a rationale is built, this rationale contains the derived predicate and a rule used as a justification.
* '''''kdom''''' : it corresponds to the domain.
+
**<math>\left[A\cprod B\right]_{pos\;=\;kdom} = A</math>
+
=== Find a path ===
**<math>\left[x\mapsto y\right]_{pos\;=\;kdom} = x</math>
 
**<math>\left[g\right]_{pos\;=\;kdom} = dom(g)</math>
 
* '''''kran''''' : it corresponds to the domain.
 
**<math>\left[A\cprod B\right]_{pos\;=\;kran} = B</math>
 
**<math>\left[x\mapsto y\right]_{pos\;=\;kran} = y</math>
 
**<math>\left[g\right]_{pos\;=\;kran} = ran(g)</math>
 
* '''''converse''''' : it corresponds to the child of an inverse
 
**<math>\left[f^{-1}\right]_{pos\;=\;converse}=f</math>
 
**<math>\left[A\cprod B\right]_{pos\;=\;converse} = B\cprod A</math>
 
For example, the following expressions at the given positions are equivalent.
 
:<math>\left[ran(dom(g))\right]_{pos\;=\;\left[\right]} = \left[dom(g)\right]_{pos\;=\;\left[kran\right]} = \left[g\right]_{pos\;=\;\left[kdom,\; kran\right]}</math>
 
  
Some combinations of atomic positions are equivalent. In order to simplify comparison between positions, they are normalized :
+
Let's consider the following sequent : <math> x \in B,\quad f \ovl \{ x \mapsto y \} \in A \rel B,\quad dom(A \cprod B) \subseteq C,\quad A \binter B\binter C \subseteq D \quad\vdash\quad x\in D </math>  
*<math>ran(f^{-1}) = dom(f)\quad\limp\quad \left[f\right]_{pos \;=\; \left[converse,~kran\right]} = \left[f\right]_{pos\;=\;\left[kdom\right]}</math>
 
*<math>dom(f^{-1}) = ran(f)\quad\limp\quad \left[f\right]_{pos \;=\; \left[converse,~kdom\right]} = \left[f\right]_{pos\;=\;\left[kran\right]}</math>
 
*<math>\left(f^{-1}\right)^{-1} = f\quad\limp\quad \left[f\right]_{pos \;=\; \left[converse,~converse\right]} = \left[f\right]_{pos\;=\;\left[~\right]}</math>
 
  
=== Goal ===
 
  
A pair (expression ; position) <math>\left(exp\mapsto pos\right)</math> is said to be contained in the goal if and only if ''exp'' is contained in the goal, and if the position matched of ''exp'' in the goal is equal to ''pos''. For examples, let's see the [[#Annexe|annexe]]
+
From the hypotheses and the negation of the goal the reasoner derives new predicates.
 +
For instance, from the hypothesis "<math> f \ovl \{ x \mapsto y \} \in A \rel B </math>" the reasoner derives the predicates <math>x \in A</math> and <math>x \in dom(A \cprod B)</math>.
 +
 
 +
Afterwards, the reasoner has to encode the new predicates in SAT clauses. For this purpose, it converts all new hypotheses in SAT proposition by extracting all set contained into the predicate. And then, it encodes the proposition SAT in Dimacs CNF format. Finally, the clauses encoded are inserted one by one into the SAT problem until the solver reports the problem as unsatisfiable in order to obtain a minimal solution to the SAT core.
 +
 
 +
{| class="wikitable" style="text-align:center; width:80%;"
 +
|+ SAT problem encoding
 +
|-
 +
! scope=col | Sequent
 +
! scope=col | SAT proposition
 +
! scope=col | Dimacs CNF format
 +
|-
 +
|<math>x \in B</math>
 +
|<math>x \in B</math>
 +
|<math>2</math>
 +
|-
 +
|<math>x \in A</math>
 +
|<math>x \in A</math>
 +
|<math>3</math>
 +
|-
 +
|<math>x \in dom(A \cprod B)</math>
 +
|<math>x \in dom(A \cprod B)</math>
 +
|<math>4</math>
 +
|-
 +
|<math>dom(A \cprod B) \subseteq C</math>
 +
|<math> \lnot x \in dom(A \cprod B),\quad x \in C </math>
 +
|<math>-4 \quad 5 </math>
 +
|-
 +
|<math>A \binter B \binter C \subseteq D</math>
 +
|<math>\lnot x \in A, \quad \lnot x \in B, \quad \lnot x \in C, \quad x \in D </math>
 +
|<math>-3 \quad -2 \quad -5 \quad 1</math>
 +
|-
 +
|<math> \vdash\quad x \in D </math>
 +
|<math>\lnot x \in D</math>
 +
|<math>-1</math>
 +
|}
 +
 
 +
Afterwards, the reasoner traces each clause of the explanation returned by the SAT solver back to the corresponding hypotheses. However, the clauses returned by the SAT solver are sorted by their insertion order in the SAT core. So the reasoner reorders them by using topological sorting. Specifically, when the reasoner adds a rationale, we are guaranteed that all rationales on which it depends are already in the list.
 +
 
 +
Now, the reasoner has to build the path, for each hypothesis into the list, a new rationale is built and saved into an array at the index of the list. If the hypothesis denotes a membership, the rationale is directly saved into the array. Else the reasoner retrieves from the array all rationales on which it depends and then from these rationales it builds a new rationale and saves it into the array.   
  
=== Hypotheses ===
+
However, the path building is unidirectional, it works with a sat problem with clauses containing whith at most one positive literal. Indeed, the current version can't find a path with hypotheses in the following form :
 +
* <math> x \in ... \binter / \bunion ... </math>
 +
* <math> ... \subseteq ... \binter / \bunion ... </math>
  
As explained in the design decision part, there are two kinds of hypotheses which are recovered. But when hypotheses related to the left member of the goal <math>\left(x\in S\right)</math> are stored, the position of ''x'' is also record. Then, if there is an hypothesis such as <math>\left\{\cdots\;,\;y\mapsto x\mapsto z\;,\;m\mapsto x\;,\;\cdots\right\} = A</math>, then this hypothesis is mapped to the positions <math>\left\{\left[kdom,~kran\right],~\left[kran\right]\right\}</math>.
 
  
=== Find a path ===
+
An example of found path in a tree form:
  
Let's consider that following sequent : <math>x\in B,\quad dom(m\setminus n)\binter f = \left\{x\mapsto y,\;y\mapsto x\right\},\quad dom(p\ovl m)\subset g,\quad ran(g\bunion h)\bunion B\subseteq A\quad\vdash\quad x\in A</math>.
+
    Comp: <math> x \in D </math>
 +
        ├──  Hyp:  <math> A \binter B \binter C \subseteq D </math>
 +
        └──  Inter: <math> x \in A \binter B \binter C </math>
 +
                ├──  Hyp: <math> x \in A </math>
 +
                ├──  Hyp: <math> x \in B </math>
 +
                └──  Comp: <math> x \in C </math>
 +
                        ├──  Hyp: <math> dom(A \cprod  B) \subseteq C </math>
 +
                        └──  Hyp: <math> x \in dom(A \cprod B) </math>
  
#From the goal we get two informations : the member which is ''x'' as well as the set we try to prove it belongs to which is ''A''.
 
#By knowing ''x'' we recover hypothesis giving informations about it. In our study case, from the hypothesis <math>dom(m\setminus n)\binter f = \left\{x\mapsto y,\;y\mapsto x\right\}</math> we infer that ''x'' belong to <math>\left(dom(m\setminus n)\binter f\right)</math> at those possible positions <math>\left[\;\left[kran\right],~\left[kdom\right]\;\right]</math>
 
#*'''Tactic :''' record all these informations <math>\left\{x\in B\mapsto B\mapsto\left[\;\right]\;,\;\left(dom(m\setminus n)\binter f = \left\{x\mapsto y,\;y\mapsto x\right\}\right)\mapsto\left(dom(m\setminus n)\binter f\right)\mapsto\left[\;\left[kran\right],\;\left[kdom\right]\;\right]\right\}</math>
 
#*'''Reasoner :''' We consider that the tactic will found the most complicated path. For each positions, we make the associated rule, which give in our example <math>\left\{dom(m\setminus n)\binter f\;\mapsto\;\left[kdom\right]\;\mapsto\;x\in dom(dom(m\setminus n)\binter f),~~~dom(m\setminus n)\binter f\;\mapsto\;\left[kran\right]\;\mapsto\;x\in ran(dom(m\setminus n)\binter f)\right\}</math>.
 
#Now, that we have a set to start the search of a path <math>\left(dom(m\setminus n)\binter f\right)</math>, we get all the expression containing it : <math>\left\{\;dom(m\setminus n)\binter f,~dom(m\setminus n),~ dom(m),~f\;\right\}</math>. As  we don't want to have expression such as ''dom(...)'', we modify the position.
 
#*'''Tactic :''' Here, there are only the mapping between the positions and the expression : <math>\left\{\;dom(m\setminus n)\binter f\;\mapsto\;\left[kran\right],~~~f\;\mapsto\;\left[kran\right],~~~m\;\mapsto\;\left[kdom,\;kran\right],~~~m\setminus n\;\mapsto\;\left[kdom,\;kran\right]\;\right\}</math>
 
#*'''Reasoner :''' we generate the rule corresponding to the computed sets : <math>\left\{~\cdots~m\;\mapsto\;\left[kdom,\;kran\right]\;\mapsto\;x\in ran(dom(m))~\cdots~\right\}</math>
 
#We test if one of these pair is contained in the goal. If so, we move to the step 5. But it clearly appears that it is not the case. So, we try to find hypotheses among the one denoting inclusion which are related to that pair. We clearly see that the expression <math>dom(m)\subseteq dom(p\ovl m)</math>. Actually, we search every expressions containing ''m'' using that mapping <math>m\;\mapsto\;\left[kdom,\;kran\right]</math>. From <math>dom(p\ovl m)</math> we can say that only the domain of ''m'' is contained in it. Then it ensures this position is part of the position of ''m'' in which ''x'' belongs to. If so we remove that position and obtain a new mapping <math>g\;\mapsto\;\left[kran\right]</math> (more details [[#Annexe|here]]) and we step back to 3 with that new pair.
 
#*'''Reasoner :''' the rule corresponding is generated <math>g\;\mapsto\;\left[kran\right]\;\mapsto\;x\in ran(g)</math>
 
#We find a path, the works is done.
 
#*'''Tactic :''' If a path has been found, then we call the reasoner with all the used predicates as input.
 
#*'''Reasoner :'''At the end, we check that the generated rule is equal to the goal. If so, the sequent is discharged. Else, a failure is returned.
 
  
We see that the tactic may not find the most simple path to discharge the sequent. Moreover, there are some cases where the tactic is able to find a path but the reasoner is unable to prove it due to a weakness in the rules (see [[#Untreated|all the untreated cases]]). Example :
+
Finally, the reasoner checks that the generated rule from the rationale is equal to the goal. If so, the sequent is discharged. Else, a failure is returned
:<math>x\in dom(f\bunion g)\binter A,~A\subseteq B,~dom(f)\bunion dom(g)\subseteq B~\vdash~x\in B</math>
 
Depending on whether the tactic returns <math>\left\{x\in dom(f\bunion g)\binter A,~dom(f)\bunion dom(g)\subseteq B\right\}</math> or <math>\left\{x\in dom(f\bunion g)\binter A,~A\subseteq B\right\}</math>, the reasoner will fail or succeed. To prevent such hazardous behavior, re-writing should be proceeded.
 
  
 +
= Inference rules =
  
===== Annexe =====
+
Here the rules that should be implemented for the reasoner MembershipGoal.
  
 
{| class="wikitable" style="text-align:center; width:80%;"
 
{| class="wikitable" style="text-align:center; width:80%;"
|+ Examples. All the following positions are contained in this one <math>\left[kdom,\;kdom,\;kran\right]</math> <math>\left(x\in ran(dom(dom(g)))\right)</math>
+
|+ Inference rules for the reasoner MembershipGoal
 +
|-
 +
! scope=col | Inference Rule
 +
! scope=col | Side condition
 +
! scope=col | Implemented
 +
|-
 +
|align="left"|<math> x\in A,\;\; A\subseteq B\vdash x\in B </math>
 +
|align="left"|
 +
|<math>\checkmark</math>
 +
|-
 +
|align="left"|<math> A\subset B\vdash A\subseteq B </math>
 +
|align="left"|
 +
|<math>\checkmark</math>
 +
|-
 +
|align="left"|<math> A=B\vdash A\subseteq B</math>
 +
|align="left"|
 +
|<math>\checkmark</math>
 +
|-
 +
|align="left"|<math> A=B\vdash B\subseteq A</math>
 +
|align="left"|
 +
|<math>\checkmark</math>
 +
|-
 +
|align="left"|<math> A\subseteq B\vdash \dom(A)\subseteq\dom(B)</math>
 +
|align="left"|
 +
|<math>\checkmark</math>
 +
|-
 +
|align="left"|<math> A\subseteq B\vdash \ran(A)\subseteq\ran(B)</math>
 +
|align="left"|
 +
|<math>\checkmark</math>
 +
|-
 +
|align="left"|<math> x\in\dom(A\cprod B)\vdash x\in A</math>
 +
|align="left"|
 +
|<math>\checkmark</math>
 +
|-
 +
|align="left"|<math> y\in\ran(A\cprod B)\vdash y\in B</math>
 +
|align="left"|
 +
|<math>\checkmark</math>
 +
|-
 +
|align="left"|<math> x\mapsto y\in f\vdash x\in\dom(f)</math>
 +
|align="left"|
 +
|<math>\checkmark</math>
 +
|-
 +
|align="left"|<math> x\mapsto y\in f\vdash y\in\ran(f)</math>
 +
|align="left"|
 +
|<math>\checkmark</math>
 +
|-
 +
|align="left"|<math> \left\{a,\cdots,x,\cdots, z\right\}\subseteq A\vdash x\in A</math>
 +
|align="left"|
 +
|<math>\checkmark</math>
 +
|-
 +
|align="left"|<math> f\ovl\cdots\ovl g\ovl\cdots\ovl h\subseteq A\vdash g\ovl\cdots\ovl h\subseteq A</math>
 +
|align="left"|
 +
|<math>\checkmark</math>
 +
|-
 +
|align="left"|<math> f\in A\;op\;B\vdash f\subseteq A\cprod B</math>
 +
|align="left"|where <math>\mathit{op}</math> is one of <math>\rel</math>, <math>\trel</math>, <math>\srel</math>, <math>\strel</math>, <math>\pfun</math>, <math>\tfun</math>, <math>\pinj</math>, <math>\tinj</math>, <math>\psur</math>, <math>\tsur</math>, <math>\tbij</math>
 +
|<math>\checkmark</math>
 +
|-
 +
|align="left"|<math>e\subseteq f,\;\; f\setminus g\subseteq h\quad\vdash\quad e\setminus g\subseteq h</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>g\subseteq k,\;\; f\setminus g\subseteq h \quad\vdash\quad f\setminus k\subseteq h</math>
 +
|align="left"|
 +
|<math></math>
 
|-
 
|-
! scope=col | Predicate
+
|align="left"|<math>e\subseteq f\setminus g,\;\; f\subseteq h\quad\vdash\quad e\subseteq h\setminus g</math>
! scope=col | Position of ''g'' matched
+
|align="left"|
! scope=col | Inferred predicate
+
|<math></math>
! scope=col | Position in ''h''
 
 
|-
 
|-
|<math>g\subseteq h</math>
+
|align="left"|<math>e\subseteq f\setminus g,\;\; k\subseteq g \quad\vdash\quad e\subseteq f\setminus k</math>
|<math>\left[\;\right]</math>
+
|align="left"|
|<math>x\in ran(dom(dom(h)))</math>
+
|<math></math>
|<math>\left[kdom,\;kdom,\;kran\right]</math>
 
 
|-
 
|-
|<math>dom(g)\subseteq h</math>
+
|align="left"|<math>e\subseteq f,\;\; f\ranres B\subseteq g \quad\vdash\quad e\ranres B\subseteq g</math>
|<math>\left[kdom\right]</math>
+
|align="left"|
|<math>x\in ran(dom(h))</math>
+
|<math></math>
|<math>\left[kdom,\;kran\right]</math>
 
 
|-
 
|-
|<math>dom(dom(g))\subseteq h</math>
+
|align="left"|<math>A\subseteq B ,\;\; f\ranres B\subseteq g \quad\vdash\quad f\ranres A\subseteq g</math>
|<math>\left[kdom,\;kdom\right]</math>
+
|align="left"|
|<math>x\in ran(h)</math>
+
|<math></math>
|<math>\left[kran\right]</math>
 
 
|-
 
|-
|<math>ran(dom(dom(g)))\subseteq h</math>
+
|align="left"|<math>f\subseteq g\ranres A ,\;\; g\subseteq h \quad\vdash\quad f\subseteq h\ranres A</math>
|<math>\left[kdom,\;kdom,\;kran\right]</math>
+
|align="left"|
|<math>x\in h</math>
+
|<math></math>
|<math>\left[~\right]</math>
 
 
|-
 
|-
|<math>g^{-1}\subseteq h</math>
+
|align="left"|<math>f\subseteq g\ranres A ,\;\; A\subseteq B \quad\vdash\quad f\subseteq g\ranres B</math>
|<math>\left[conv\right]</math>
+
|align="left"|
|<math>x\in ran(dom(ran(h)))</math>
+
|<math></math>
|<math>\left[kran,\;kdom,\;kran\right]</math>
 
 
|-
 
|-
|<math>dom(g)^{-1}\subseteq h</math>
+
|align="left"|<math>A\subseteq B ,\;\; B\domres f\subseteq g \quad\vdash\quad A\domres f\subseteq g</math>
|<math>\left[kdom,\;conv\right]</math>
+
|align="left"|
|<math>x\in ran(ran(h))</math>
+
|<math></math>
|<math>\left[kran,\;kran\right]</math>
 
 
|-
 
|-
|<math>dom(dom(g))^{-1}\subseteq h</math>
+
|align="left"|<math>e\subseteq f ,\;\; B\domres f\subseteq g \quad\vdash\quad B\domres e\subseteq g</math>
|<math>\left[kdom,\;kdom,\;conv\right]</math>
+
|align="left"|
|<math>x\in dom(h)</math>
+
|<math></math>
|<math>\left[kdom\right]</math>
+
|-
 +
|align="left"|<math>f\subseteq A\domres g ,\;\; A\subseteq B \quad\vdash\quad f\subseteq B\domres g</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>f\subseteq A\domres g ,\;\; g\subseteq h \quad\vdash\quad f\subseteq A\domres h</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>e\subseteq f ,\;\; f\ransub A\subseteq g \quad\vdash\quad e\ransub A\subseteq g</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>f\ransub A\subseteq g ,\;\; A\subseteq B \quad\vdash\quad f\ransub B\subseteq g</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>f\subseteq g\ransub A ,\;\; g\subseteq h \quad\vdash\quad f\subseteq h\ransub A</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>f\subseteq g\ransub B ,\;\; A\subseteq B \quad\vdash\quad f\subseteq g\ransub A</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>A\domsub f\subseteq g ,\;\; A\subseteq B \quad\vdash\quad B\domsub f\subseteq g</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>e\subseteq f ,\;\; A\domsub f\subseteq g \quad\vdash\quad A\domsub e\subseteq g</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>A\subseteq B ,\;\; f\subseteq B\domsub g \quad\vdash\quad f\subseteq A\domsub g</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>f\subseteq A\domsub g ,\;\; g\subseteq h \quad\vdash\quad f\subseteq A\domsub h</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>e\subseteq f ,\;\; f\ovl g\ovl\cdots\ovl h\subseteq k \quad\vdash\quad e\ovl g\ovl\cdots\ovl h\subseteq k</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>f\subseteq g\ovl h\ovl\cdots\ovl k ,\;\; e\subseteq g \quad\vdash\quad f\subseteq e\ovl h\ovl\cdots\ovl k</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>Z\subseteq B,\;\; A\bunion\cdots\bunion B\bunion\cdots\bunion C\subseteq D\quad\vdash\quad A\bunion\cdots\bunion Z\bunion\cdots\bunion C\subseteq D</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>B\subseteq Z ,\;\; D\subseteq A\bunion\cdots\bunion B\bunion\cdots\bunion C \quad\vdash\quad D\subseteq A\bunion\cdots\bunion Z\bunion\cdots\bunion C</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>Z\subseteq B,\;\; A\binter\cdots\binter B\binter\cdots\binter C\subseteq D\quad\vdash\quad A\binter\cdots\binter Z\binter\cdots\binter C\subseteq D</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>B\subseteq Z ,\;\; D\subseteq A\binter\cdots\binter B\binter\cdots\binter C \quad\vdash\quad D\subseteq A\binter\cdots\binter Z\binter\cdots\binter C</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>A\subseteq B,\;\; B\cprod D\subseteq E \quad\vdash\quad A\cprod D\subseteq E</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>C\subseteq D,\;\; B\cprod D\subseteq E \quad\vdash\quad B\cprod C\subseteq E</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>A\subseteq B\cprod D,\;\; B\subseteq C \quad\vdash\quad A\subseteq C\cprod D</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>A\subseteq B\cprod D,\;\; D\subseteq E\quad\vdash\quad A\subseteq B\cprod E</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>\dom(f\domres\prjone)\defi f</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>\dom(f\domres\prjtwo)\defi f</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>\dom(f\domres\id)\defi f</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>\ran(\prjone\ranres f)\defi f</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>\ran(\prjtwo\ranres f)\defi f</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>\ran(\id\ranres f)\defi f</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>\ran(f\domres\prjone)\defi\dom(f)</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>\ran(f\domres\prjtwo)\defi\ran(f)</math>
 +
|align="left"|
 +
|<math></math>
 +
|-
 +
|align="left"|<math>\ran(f\domres\id)\defi f</math>
 +
|align="left"|
 +
|<math></math>
 
|-
 
|-
|<math> ran(dom(dom(g)))^{-1}\subseteq h</math>
 
|<math>\left[kdom,\;kdom,\;kran,\;conv\right]</math>
 
|<math>x\in h^{-1}</math>
 
|<math>\left[conv\right]</math>
 
 
|}
 
|}
 
In the case a converse appears at the end of the position of ''g'' matched, it is removed, then, we test if the position is part of the position. If so, it is removed and converse is added at the beginning of the array (which is automatically normalized).
 
 
= Untreated cases =
 
 
Some cases are not treated. Further enhancement may be provided for some.
 
*<math>x\in f,\quad f\in A\;op\;B\quad\vdash\quad x\in A\cprod B</math>
 
*<math>x\in f\otimes g,\quad f\subseteq A\cprod B,\quad g\subseteq C\cprod D\quad\vdash\quad x\in (A\cprod C)\cprod(B\cprod D)</math> as well as all the possibles re-writing.
 
*<math>x\in f\otimes g,\quad f\subseteq h\quad\vdash\quad x\in h\otimes g</math>
 
*<math>x\in \left\{a,~b,~c\right\},\quad\left\{a,~b,~c,~d,~e,~f\right\}\subseteq D\quad\vdash\quad x\in D</math>
 
*<math>x\in A\cprod B,\quad A\subseteq C\quad\vdash\quad x\in C\cprod B</math>
 
*<math>x\in dom(f)\cap A\quad\vdash\quad x\in dom(A\domres f)</math>
 
*<math>x\in ran(f)\cap A\quad\vdash\quad x\in ran(f\ranres A)</math>
 
*<math>x\in dom(A\domres f)\quad\vdash\quad x\in dom(f)\cap A</math>
 
*<math>x\in ran(f\ranres A)\quad\vdash\quad x\in ran(f)\cap A</math>
 
*<math>x\in dom(f\bunion g)\quad\vdash\quad x\in dom(f)\bunion dom(g)</math>
 
*<math>x\in dom(f)\bunion dom(g)\quad\vdash\quad x\in dom(f\bunion g)</math>
 
*<math>x\in dom(f\binter g)\quad\vdash\quad x\in dom(f)\binter dom(g)</math>
 
*<math>x\in dom(f)\binter dom(g)\quad\vdash\quad x\in dom(f\binter g)</math>
 
*<math>x\in ran(f\bunion g)\quad\vdash\quad x\in ran(f)\bunion ran(g)</math>
 
*<math>x\in ran(f)\bunion ran(g)\quad\vdash\quad x\in ran(f\bunion g)</math>
 
*<math>x\in ran(f\binter g)\quad\vdash\quad x\in ran(f)\binter ran(g)</math>
 
*<math>x\in ran(f)\binter ran(g)\quad\vdash\quad x\in ran(f\binter g)</math>
 
*<math>x\in (f\bunion g)^{-1}\quad\vdash\quad x\in f^{-1}\bunion g^{-1}</math>
 
*<math>x\in f^{-1}\bunion g^{-1}\quad\vdash\quad x\in (f\bunion g)^{-1}</math>
 
*<math>x\in (f\binter g)^{-1}\quad\vdash\quad x\in f^{-1}\binter g^{-1}</math>
 
*<math>x\in f^{-1}\binter g^{-1}\quad\vdash\quad x\in (f\binter g)^{-1}</math>
 
*:the last 12 examples fails because the Rules have some weakness. This show that some re-writing should be performed.
 
*<math>x\in A\bunion dom(f\binter g),A\bunion dom(f)\subseteq B\quad\vdash\quad x\in B</math>
 
*<math>x\in A\binter dom(f),A\binter dom(f\bunion g)\subseteq B\quad\vdash\quad x\in B</math>
 
*:the reason for the failure of the two last examples is that when union or intersection are compared, we should take all the expression containing each member, but we don't.
 
*<math>x\in A\cprod dom(B\cprod C)\quad\vdash\quad x\in A\cprod B</math>
 
*:it fails because when we get equivalent expression of the Cartesian product, we don't go further enough.
 
*:<math>\bigl(</math> where <math>op_1</math> and <math>op_2</math> are ones of :<math>\quad\rel, \trel, \srel, \strel, \pfun, \tfun, \pinj, \tinj, \psur, \tsur, \tbij\bigr)</math>
 
  
 
[[Category:Design proposal]]
 
[[Category:Design proposal]]

Latest revision as of 13:50, 5 June 2014

Objective

This page describes the design of the reasoner MembershipGoal and its associated tactic MembershipGoalTac.

This reasoner discharges sequents whose goal denotes a membership which can be inferred from hypotheses, such as the following:

H,\quad x\in S,\quad S\subset T,\quad T\subseteq U \quad\vdash\quad x\in U

Analysis

Usually, such sequents are proved by the external provers PP or ML. But, these provers have several drawbacks :

  • They do not report needed hypotheses, so that a conservative choice is made to depend on all hypotheses.
  • They take substantial time to prove them (even with the basic example given above, the difference in time execution is noticeable).
  • If there are too many hypotheses, or if the expression of the x or the intermediate sets S, T, \dots is too complicated, they may get lost into details and not discharge.

This is particularly true when in the set expressions of each side of relations are not equal, such as in:

H,\quad a\in S,\quad S\subset T_1\cap T_2,\quad T_1\cup T_3\subseteq  U\quad\vdash a\in U

Such a reasoner thus increases the rate of automated proof, faster and with fewer needed hypotheses which makes proof rules more legible and proof replay less sensitive to modifications of the models.

Design Decision

Tactic

This part explains how the tactic (MembershipGoalTac) associated to the reasoner MembershipGoal is working.

Goal

The tactic (as the reasoner) works only on goals of the form :

  • \cdots~\in~\cdots

For example:

  • f(x)\in g\otimes h
  • x\in A\cprod\left(B\cup C\right)
  • x\mapsto y\in A\cprod B

In the last example, the reasoner will not try to prove that x belongs to A and y belongs to B, but that the maplet x\mapsto y belongs to the Cartesian product A\cprod B.

Hypotheses

Now we have to find hypotheses leading to discharge the sequent. To do so, the tactic looks for two kinds of hypothesis :

  1. the ones related to the left member of the goal \left( x\in S\right) (which will be used as a starting point):
    • x\in \cdots
    • \cdots\mapsto x\mapsto\cdots\in\cdots
    • \left\{\cdots, x,\cdots\right\}=/\subset/\subseteq\cdots
    • \left\{\cdots, \cdots\mapsto x\mapsto\cdots,\cdots\right\}=/\subset/\subseteq\cdots
    • f\ovl\left\{\cdots, x, \cdots\right\}=/\subset/\subseteq\cdots
  2. the ones denoting inclusion (which will be used to find a path from a starting point to the goal) :
    • \cdots\subset\cdots
    • \cdots\subseteq\cdots
    • \cdots=\cdots

Then, it will search a link between these hypotheses so that the sequent can be discharged.

Find a path

Now that we have found all the hypotheses that could be useful to the reasoner, it remains to find a path among these hypotheses leading to discharge the sequent. Depending on the relations on each side of the inclusion, we will act differently. f always denotes an expression (it may be a domain, a range, etc.).

  1. The following sequent is provable because f\subseteq \varphi (f).
    • x\in f,\quad \varphi (f)\subseteq g\quad\vdash\quad x\in g
    • \varphi (f) = f\quad\mid\quad f\cup h \quad\mid\quad h\cup f \quad\mid\quad h\ovl f
    • f=g\bunion h\quad\mid\quad \varphi(f)=g\bunion k\bunion h\bunion l
    • f=i\ovl j\quad\mid\quad\varphi(f)=g\ovl h\ovl i\ovl j
  2. The following sequent is provable because \psi (f)\subseteq f.
    • x\in \psi (f),\quad f\subseteq g\quad\vdash\quad x\in g
    • \psi (f) = f\quad\mid\quad f\cap h \quad\mid\quad h\cap f \quad\mid\quad f\setminus h \quad\mid\quad f\ransub A \quad\mid\quad f\ranres A \quad\mid\quad A\domsub f \quad\mid\quad A\domres f
    • \psi(f)=g\binter h\binter k\binter l\quad\mid\quad f=g\binter k
  3. By keeping the notation \psi(f)\subseteq f\subseteq\varphi(f) we also deduce that :
    • \psi(A)\domres\psi(f)\subseteq\varphi(A)\domres\varphi(f)
    • \psi(f)\ranres\psi(A)\subseteq\varphi(f)\ranres\varphi(A)
    • \varphi(A)\domsub\psi(f)\subseteq\psi(A)\domres\varphi(f)
    • \psi(f)\ransub\varphi(A)\subseteq\varphi(f)\ransub\psi(A)
    • \psi(f)\setminus\varphi(g)\subseteq\varphi(f)\setminus\psi(g)
  4. For some relations, positions are needed to be known to continue to find hypotheses, but it is not always necessary.
    • x\mapsto y\in f,\quad f\subseteq A\cprod B\quad\vdash\quad x\in A
    • x\in dom(f),\quad f\subseteq A\cprod B\quad\vdash\quad x\in A
    • x\in ran(f),\quad f\subseteq A\cprod B\quad\vdash\quad x\in B

By using these inclusions the tactic tries to find a path among the recovered hypotheses. Every one of them should only be used once, avoiding possible infinite loop \left(A\subseteq B,\; B\subseteq A\right).

Since Rodin 3.0, the path search is delegated to the Sat4j solver. The problem encoding to SAT is done by representing each inclusion of the form A\subseteq B into the clause \{\lnot x\in A,\; x\in B\} and feeding the solver with all clauses that derive from the hypotheses and the negation of the goal. As soon as the solver reports the problem as unsatisfiable, the tactic obtains an unsat core and traces it back to the corresponding hypotheses.

Reasoner

This part describe how the reasoner MembershipGoal works.

Goal

First, it checks that the goal matches the description made in the part tactic : x\in S. Thus, we record the member x as well as the set S

Input

Then, it checks that the input is a hypothesesReasonerInput (an input with an array of predicates). Every given predicates must be a hypothesis of the sequent. Only one must be a membership with the same member as the goal so that there are no ambiguity. All the other ones must denote set inclusion or equality.

Find a path

With the same reasoning as for the tactic, we try to find a path leading to discharge the goal.

Trusted Base

At that point, the reasoner performs the same jobs as the tactic which is quite complicated. That poses one problem : it is hard to prove the reasoner to be sound (only doing what it was meant to, not discharging sequents that cannot be proved). Because the reasoner is in the trusted base, we should be absolutely sure of what it performs. How to validate the found path ?

As we know, the reasoner condense several inferences rules in only one proof rule. To validate the found path, we have to validate every single inference rule. To achieve it, we create, internally to the reasoner, a small proof tree built from internal proof rules (implemented in class Rules). Each rule contains one predicate and an array of rules (its antecedents). When the path is searched, the corresponding rule is created. When the path is found, we check that the predicate of the root rule is the same as the goal. If not, it means the found path was incorrect, so the reasoner fails, else the sequent is discharged.

Example of rules :

name\;of\;the\;rule\quad\frac{predicate\;of\;first\;antecedent\cdots predicate\;of\;last\;antecedent}{consequent\;of\;that\;rule}\left[parameters\right]
Hypothesis\quad\frac{}{predicate}\left[predicate\right]
IncludeBunion\quad\frac{A\bunion B\bunion C\bunion D\subseteq Z}{B\bunion C\subseteq Z}\left[B,~C\right]
Composition\quad\frac{x\in A,~A\subseteq B}{x\in B}\left[~\right]

Implementation

This section explains how the reasoner has been implemented.

Hypotheses

From the hypotheses, the reasoner derives new hypotheses leading to discharge the sequent. As explained in the design decision part, there are two kinds of hypotheses which are recovered (membership and inclusion). So, we developped two extractors which extract useful predicates from the hypotheses with these inference rules. For each new hypothesis a rationale is built, this rationale contains the derived predicate and a rule used as a justification.

Find a path

Let's consider the following sequent :  x \in B,\quad f \ovl \{ x \mapsto y \} \in A \rel B,\quad dom(A \cprod B) \subseteq C,\quad A \binter B\binter C \subseteq D \quad\vdash\quad x\in D


From the hypotheses and the negation of the goal the reasoner derives new predicates. For instance, from the hypothesis " f \ovl \{ x \mapsto y \} \in A \rel B " the reasoner derives the predicates x \in A and x \in dom(A \cprod B).

Afterwards, the reasoner has to encode the new predicates in SAT clauses. For this purpose, it converts all new hypotheses in SAT proposition by extracting all set contained into the predicate. And then, it encodes the proposition SAT in Dimacs CNF format. Finally, the clauses encoded are inserted one by one into the SAT problem until the solver reports the problem as unsatisfiable in order to obtain a minimal solution to the SAT core.

SAT problem encoding
Sequent SAT proposition Dimacs CNF format
x \in B x \in B 2
x \in A x \in A 3
x \in dom(A \cprod B) x \in dom(A \cprod B) 4
dom(A \cprod B) \subseteq C  \lnot x \in dom(A \cprod B),\quad x \in C -4 \quad 5
A \binter B \binter C \subseteq D \lnot x \in A, \quad \lnot x \in B, \quad \lnot x \in C, \quad x \in D -3 \quad -2 \quad -5 \quad 1
 \vdash\quad x \in D \lnot x \in D -1

Afterwards, the reasoner traces each clause of the explanation returned by the SAT solver back to the corresponding hypotheses. However, the clauses returned by the SAT solver are sorted by their insertion order in the SAT core. So the reasoner reorders them by using topological sorting. Specifically, when the reasoner adds a rationale, we are guaranteed that all rationales on which it depends are already in the list.

Now, the reasoner has to build the path, for each hypothesis into the list, a new rationale is built and saved into an array at the index of the list. If the hypothesis denotes a membership, the rationale is directly saved into the array. Else the reasoner retrieves from the array all rationales on which it depends and then from these rationales it builds a new rationale and saves it into the array.

However, the path building is unidirectional, it works with a sat problem with clauses containing whith at most one positive literal. Indeed, the current version can't find a path with hypotheses in the following form :

  •  x \in ... \binter / \bunion ...
  •  ... \subseteq ... \binter / \bunion ...


An example of found path in a tree form:

    Comp:  x \in D 
       ├──  Hyp:   A \binter B \binter C \subseteq D 
       └──  Inter:  x \in A \binter B \binter C 
               ├──  Hyp:  x \in A 
               ├──  Hyp:  x \in B 
               └──  Comp:  x \in C 
                       ├──  Hyp:  dom(A \cprod  B) \subseteq C 
                       └──  Hyp:  x \in dom(A \cprod B) 


Finally, the reasoner checks that the generated rule from the rationale is equal to the goal. If so, the sequent is discharged. Else, a failure is returned

Inference rules

Here the rules that should be implemented for the reasoner MembershipGoal.

Inference rules for the reasoner MembershipGoal
Inference Rule Side condition Implemented
 x\in A,\;\; A\subseteq B\vdash x\in B \checkmark
 A\subset B\vdash A\subseteq B \checkmark
 A=B\vdash A\subseteq B \checkmark
 A=B\vdash B\subseteq A \checkmark
 A\subseteq B\vdash \dom(A)\subseteq\dom(B) \checkmark
 A\subseteq B\vdash \ran(A)\subseteq\ran(B) \checkmark
 x\in\dom(A\cprod B)\vdash x\in A \checkmark
 y\in\ran(A\cprod B)\vdash y\in B \checkmark
 x\mapsto y\in f\vdash x\in\dom(f) \checkmark
 x\mapsto y\in f\vdash y\in\ran(f) \checkmark
 \left\{a,\cdots,x,\cdots, z\right\}\subseteq A\vdash x\in A \checkmark
 f\ovl\cdots\ovl g\ovl\cdots\ovl h\subseteq A\vdash g\ovl\cdots\ovl h\subseteq A \checkmark
 f\in A\;op\;B\vdash f\subseteq A\cprod B where \mathit{op} is one of \rel, \trel, \srel, \strel, \pfun, \tfun, \pinj, \tinj, \psur, \tsur, \tbij \checkmark
e\subseteq f,\;\; f\setminus g\subseteq h\quad\vdash\quad e\setminus g\subseteq h
g\subseteq k,\;\; f\setminus g\subseteq h \quad\vdash\quad f\setminus k\subseteq h
e\subseteq f\setminus g,\;\; f\subseteq h\quad\vdash\quad e\subseteq h\setminus g
e\subseteq f\setminus g,\;\; k\subseteq g \quad\vdash\quad e\subseteq f\setminus k
e\subseteq f,\;\; f\ranres B\subseteq g \quad\vdash\quad e\ranres B\subseteq g
A\subseteq B ,\;\; f\ranres B\subseteq g \quad\vdash\quad f\ranres A\subseteq g
f\subseteq g\ranres A ,\;\; g\subseteq h \quad\vdash\quad f\subseteq h\ranres A
f\subseteq g\ranres A ,\;\; A\subseteq B \quad\vdash\quad f\subseteq g\ranres B
A\subseteq B ,\;\; B\domres f\subseteq g \quad\vdash\quad A\domres f\subseteq g
e\subseteq f ,\;\; B\domres f\subseteq g \quad\vdash\quad B\domres e\subseteq g
f\subseteq A\domres g ,\;\; A\subseteq B \quad\vdash\quad f\subseteq B\domres g
f\subseteq A\domres g ,\;\; g\subseteq h \quad\vdash\quad f\subseteq A\domres h
e\subseteq f ,\;\; f\ransub A\subseteq g \quad\vdash\quad e\ransub A\subseteq g
f\ransub A\subseteq g ,\;\; A\subseteq B \quad\vdash\quad f\ransub B\subseteq g
f\subseteq g\ransub A ,\;\; g\subseteq h \quad\vdash\quad f\subseteq h\ransub A
f\subseteq g\ransub B ,\;\; A\subseteq B \quad\vdash\quad f\subseteq g\ransub A
A\domsub f\subseteq g ,\;\; A\subseteq B \quad\vdash\quad B\domsub f\subseteq g
e\subseteq f ,\;\; A\domsub f\subseteq g \quad\vdash\quad A\domsub e\subseteq g
A\subseteq B ,\;\; f\subseteq B\domsub g \quad\vdash\quad f\subseteq A\domsub g
f\subseteq A\domsub g ,\;\; g\subseteq h \quad\vdash\quad f\subseteq A\domsub h
e\subseteq f ,\;\; f\ovl g\ovl\cdots\ovl h\subseteq k \quad\vdash\quad e\ovl g\ovl\cdots\ovl h\subseteq k
f\subseteq g\ovl h\ovl\cdots\ovl k ,\;\; e\subseteq g \quad\vdash\quad f\subseteq e\ovl h\ovl\cdots\ovl k
Z\subseteq B,\;\; A\bunion\cdots\bunion B\bunion\cdots\bunion C\subseteq D\quad\vdash\quad A\bunion\cdots\bunion Z\bunion\cdots\bunion C\subseteq D
B\subseteq Z ,\;\; D\subseteq A\bunion\cdots\bunion B\bunion\cdots\bunion C \quad\vdash\quad D\subseteq A\bunion\cdots\bunion Z\bunion\cdots\bunion C
Z\subseteq B,\;\; A\binter\cdots\binter B\binter\cdots\binter C\subseteq D\quad\vdash\quad A\binter\cdots\binter Z\binter\cdots\binter C\subseteq D
B\subseteq Z ,\;\; D\subseteq A\binter\cdots\binter B\binter\cdots\binter C \quad\vdash\quad D\subseteq A\binter\cdots\binter Z\binter\cdots\binter C
A\subseteq B,\;\; B\cprod D\subseteq E \quad\vdash\quad A\cprod D\subseteq E
C\subseteq D,\;\; B\cprod D\subseteq E \quad\vdash\quad B\cprod C\subseteq E
A\subseteq B\cprod D,\;\; B\subseteq C \quad\vdash\quad A\subseteq C\cprod D
A\subseteq B\cprod D,\;\; D\subseteq E\quad\vdash\quad A\subseteq B\cprod E
\dom(f\domres\prjone)\defi f
\dom(f\domres\prjtwo)\defi f
\dom(f\domres\id)\defi f
\ran(\prjone\ranres f)\defi f
\ran(\prjtwo\ranres f)\defi f
\ran(\id\ranres f)\defi f
\ran(f\domres\prjone)\defi\dom(f)
\ran(f\domres\prjtwo)\defi\ran(f)
\ran(f\domres\id)\defi f