I wanted to proof that if there is m which is less than 10 and there is n which is less than 15 then there exist z which is less than 25.
thm : ((∃ λ m → (m < 10)) AND (∃ λ n → (n < 15))) -> (∃ λ z → (z < 25))
thm = ?
How to define AND here?? Please help me. And how to proof this??
and
corresponds toproduct
in Agda. Here is the corresponding construct in the standard library. In your case, you may want to use the non-dependent version_×_
.