I need help with #61 to #64 ASAP please and thank you …. Could someone please help me with it… I need to get it done ASAP .. I need the answers for all of them ASAP
![I need help with 61 to 64 ASAP please and thank you Could someone please help me with it I need to get it done ASAP I need the answers for all of them ASAP class=](https://us-static.z-dn.net/files/dd7/c97d89a7651e073d144f4e685a467b1b.jpeg)
Problem 61
Refer to this link where I solved the problem earlier
https://brainly.com/question/24517029
===========================================================
Problem 62
T(n) = nth triangular number
T(n) = n(n+1)/2 = 0.5n(n+1)
That squares to (0.5n(n+1))^2 = 0.25n^2(n+1)^2
The next triangular number after T(n) is
T(n+1) = 0.5(n+1)(n+1+1) = 0.5(n+1)(n+2)
That squares to 0.25(n+1)^2(n+2)^2
Notice how each squared result has 0.25 and (n+1)^2 found buried in them.
Let's say A = 0.25(n+1)^2
That would mean the first result 0.25n^2(n+1)^2 becomes An^2
The second result 0.25(n+1)^2(n+2)^2 becomes A(n+2)^2
Let's add those to see what happens
An^2+A(n+2)^2
An^2+A(n^2+4n+4)
A(n^2+n^2+4n+4)
A(2n^2+4n+4)
0.25(n+1)^2*(2(n^2+2n+2))
0.5(n+1)^2(n^2+2n+1+1)
0.5(n+1)^2((n+1)^2+1)
0.5k(k+1)
We see that the result is a triangular number where k = (n+1)^2
This shows that adding the squares of consecutive triangular numbers gets us another triangular number.
A few examples
===========================================================
Problem 63
I'll borrow some of the ideas from problem 62
We found that after squaring the nth and (n+1)th triangular numbers, we got An^2 and A(n+2)^2 respectively. We let A = 0.5(n+1)^2
Subtract those expressions to get...
A(n+2)^2 - An^2
A(n^2+4n+4)-An^2
A(n^2+4n+4-n^2)
A(4n+4)
4A(n+1)
4*0.5(n+1)^2*(n+1)
(n+1)^3
This proves that the difference between the squares of consecutive triangular numbers is a perfect cube, aka a cube number.
A few examples:
===========================================================
Problem 64
Refer to this link where I solved the problem earlier
https://brainly.com/question/24517029