theory a2 imports Main begin (* use this template for questions 1, 2, and 4. Use a different file with theory Demo5 from Wed, week 4, as a base theory for question 3 *) lemma "(\x. \y. R x y) = (\y. \x. R x y)" oops lemma "((\x. P x) \ (\x. Q x)) = (\x. (P x \ Q x))" oops lemma "((\x. P x) \ (\x. Q x)) = (\x. (P x \ Q x))" oops lemma "\(\x. P x) \ \x. \ P x" oops lemma "\(\x. P x) \ \x. \ P x" oops lemma "(\x. P x \ Q) = ((\x. P x) \ Q)" oops end