Tagged Questions
The proof-system tag has no wiki summary.
3
votes
4answers
341 views
Interactive math proof system
I'm looking for a tool (GUI preferred but CLI would work) that allows me to input math expressions and then perform manipulations of them but restricts me to only mathematically valid operations. ...
2
votes
1answer
146 views
Help with a Coq proof for SubSequences
I have the defined inductive types:
Inductive InL (A:Type) (y:A) : list A -> Prop :=
| InHead : forall xs:list A, InL y (cons y xs)
| InTail : forall (x:A) (xs:list A), InL y xs -> InL y ...
1
vote
2answers
70 views
Has anybody used a proof assistant to prove soundness of a typed process calculus?
...And have they published the results where I can afford to read them?