Advertisement
caasinehc

URI CSC 340 F22 HW1 Q8

Sep 18th, 2022
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. Base case:
  2. 1² = 1(1)(3)/3 ⇔ 1 = 1 ⇔ true
  3.  
  4. Inductive hypothesis: 1² + 3² + 5² + ... + (2n - 1)² = n(2n - 1)(2n + 1)/3 ⇒ 1² + 3² + 5² + ... + (2n - 1)² + (2(n + 1) - 1)² = (n + 1)(2(n + 1) - 1)(2(n + 1) + 1)/3
  5. ⇔ n(2n - 1)(2n + 1)/3 + (2(n + 1) - 1)² = (n + 1)(2(n + 1) - 1)(2(n + 1) + 1)/3
  6. ⇔ 4n³ + 12n² + 11n + 3 = 4n³ + 12n² + 11n + 3
  7. ⇔ 1 = 1
  8. ⇔ true
  9.  
  10. ∴ 1² + 3² + 5² + ... + (2n - 1)² = n(2n - 1)(2n + 1)/3 ∀n ≥ 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement