Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. lemma
  2. fixes X :: "real set"
  3. assumes "finite X"
  4. and "X ≠ {}"
  5. and "∀x ∈ X. x ≥ 0"
  6. and "a ≥ 0"
  7. shows "(∏y ∈ X. a powr y) = a powr (∑X)"
  8. using assms
  9. proof (induct X rule: finite_ne_induct)
  10. case (singleton y)
  11. then have "(∑X) = y"
  12. using assms sorry
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement