definizione di `sem` e prima di continuare è necessario che la sistemiate.
*)
definition v1101 ≝ λx.
- if eqb x 0 then 1 (* Atom 0 ↦ 1 *)
- else if eqb x 1 then 1 (* Atom 1 ↦ 1 *)
- else if eqb x 2 then 0 (* Atom 2 ↦ 0 *)
- else if eqb x 3 then 1 (* Atom 3 ↦ 1 *)
- else 0. (* Atom _ ↦ 0 *)
+ if eqb x 0 then 1 (* FAtom 0 ↦ 1 *)
+ else if eqb x 1 then 1 (* FAtom 1 ↦ 1 *)
+ else if eqb x 2 then 0 (* FAtom 2 ↦ 0 *)
+ else if eqb x 3 then 1 (* FAtom 3 ↦ 1 *)
+ else 0. (* FAtom _ ↦ 0 *)
-definition esempio1 ≝ (FImpl (FAtom 3) (FOr (FAtom 2) (FAnd (FAtom 1) (FAtom 0)))).
+definition esempio1 ≝
+ (FImpl (FNot (FAtom 3)) (FOr (FAtom 2) (FAnd (FAtom 1) (FAtom 0)))).
eval normalize on [[ esempio1 ]]_v1101.
| FNot F ⇒ FNot (subst x G F)
].
-(* AGGIUNGERE ALCUNI TEST *)
-
(* NOTA
====
notation > "a ≡ b" non associative with precedence 50 for @{ equiv $a $b }.
interpretation "equivalence for Formulas" 'equivF a b = (equiv a b).
+(* Test 2
+ ======
+
+ Viene fornita una formula di esempio `esempio2`,
+ e una formula `esempio3` che rimpiazzerà gli atomi
+ `FAtom 2` di `esempio2`.
+
+ Il risultato atteso è la formula:
+
+ FAnd (FImpl (FOr (FAtom O) (FAtom 1)) (FAtom 1))
+ (FOr (FAtom O) (FAtom 1))
+
+*)
+
+definition esempio2 ≝ (FAnd (FImpl (FAtom 2) (FAtom 1)) (FAtom 2)).
+
+definition esempio3 ≝ (FOr (FAtom 0) (FAtom 1)).
+
+eval normalize on (esempio2 [ esempio3 / 2]).
(*DOCBEGIN