Reputation: 53
Suppose I have a goal as follow.
exists s0 s3 s4 : list T, s1 ++ s2 = s0 ++ s3 ++ s4
I want to appoint some concrete values for s0, s3, s4
and I am trying exists v1 v2 v3
to do that with v1 v2 v3
already in the proof context. But coq complains that
Not the right number of missing arguments (expected 1)
So I have to use three tactics to do this.
exists v1. exists v2. exists v3.
I want to known if it's possible to use just one tactic to get the same result. Many thanks!.
Upvotes: 0
Views: 206