Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. Any-comm : ∀ {A : Set} {P : A → Set} (xs ys : List A) →
  2. Any P (xs ++ ys) → Any P (ys ++ xs)
  3. Any-comm xs [] prf = {!!}
  4.  
  5. Goal: Any P xs
  6. ————————————————————————————————————————————————————————————
  7. prf : Any P (xs ++ [])
  8. xs : List A
  9. P : A → Set (not in scope)
  10. A : Set (not in scope)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement