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

google chrome - Developer tools - How to inspect the elements which are added momentarily (by JQuery)? -

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

php - Cloud9 cloud IDE and CakePHP -