This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Require Import Coq.Lists.List. | |
Require Import Coq.Sorting.Permutation. | |
Require Import Coq.Relations.Relations. | |
Require Import Coq.Classes.Morphisms. | |
Require Import Coq.Setoids.Setoid. | |
Require Import Coq.Arith.Arith. | |
Require Import MyPermutations. | |
Inductive PProp:Set := | |
| PPbot : PProp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(1*(2/(3/((4-(5-(6*(7*8))))*9)))) | |
(1*(2/(3/((4-(5-((6*7)*8)))*9)))) | |
(1+(2+(3*((4*((5+6)*(7+8)))+9)))) | |
(1*(2*(3*((4*((5*6)+(7*8)))-9)))) | |
(1*(2/(3/(((4+5)*(6*(7*8)))-9)))) | |
(1*(2/(3/(((4+5)*((6*7)*8))-9)))) | |
(1*(2/(3/(((4-5)+(6*(7*8)))*9)))) | |
(1*(2/(3/(((4-5)+((6*7)*8))*9)))) | |
(1+(2+(3*(((4*(5+6))*(7+8))+9)))) | |
(1*(2/(3/((((4+5)*6)*(7*8))-9)))) |