Advertisement
caasinehc

URI CSC 340 F22 HW1 Q9

Sep 18th, 2022
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. Base case:
  2. If 1 distinct die is rolled, the number of outcomes where the sum of faces is an even integer equals the number of outcomes with an odd sum. This can be proven by enumerating the possibilities, all with equal probability:
  3. even: 2, 4, 6
  4. odd: 1, 3, 5
  5.  
  6. Inductive hypothesis: If n distinct dice are rolled, the number of outcomes where the sum of faces is an even integer equals the number of outcomes with an odd sum ⇒ If n + 1 distinct dice are rolled, the number of outcomes where the sum of faces is an even integer equals the number of outcomes with an odd sum. This can be proven by enumerating the possibilities, all with equal probabilities:
  7. even: even + 2, even + 4, even + 6, odd + 1, odd + 3, odd + 5
  8. odd: even + 1, even + 3, even + 5, odd + 2, odd + 4, odd + 6
  9.  
  10. ∴ If n distinct dice are rolled, the number of outcomes where the sum of faces is an even integer equals the number of outcomes with an odd sum ∀n ≥ 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement