coq - Applying hypotesis to a variable -


let's i'm in middle of proof , have hypotheses these:

a : nat b : nat c : nat h : somepred b 

and definition of somepred says:

definition somepred (p:nat) (q:nat) : prop := forall (x : nat), p(x, p, q). 

how apply h c , p(c, a, b)?

the answer is:

specialize h c. 

Comments

Popular posts from this blog

angularjs - Showing an empty as first option in select tag -

qt - Change color of QGraphicsView rubber band -

php - Cloud9 cloud IDE and CakePHP -