In the standart way I have induction for list like this
- Approval is performed for
lst
- Proving for
x::lst
But I want:
- Approval is performed for
lst
- Proving for
lst ++ x::nil
For me, the place of x
in the list is important.
I tried to write something like this, but not successful.