Sava D. answered 08/18/20
Math teacher with 10 years of experience and Engineering background
I. We know that P(1) =1, P(2) = 7 and P(3) =19. For a polynomial of second degree:
P(n) = a n2 + b n +c:
P(1) = a 12 +b 1 + c = 1
P(2) = a 22 + b 2 + c =7
P(3) = a 32 + b 3 + c = 19.
The system looks like
a + b + c = 1
4a +2b + c = 7
9a +3b + c =19.
You can use any method to solve this system of equations. We find that
a = 3, b = -3, c = 1.
The polynomial:
P(n) = 3n2 - 3n +1.
II. Prove that
Σn=1n P(n) = n3.
This part is very nicely done using induction.
Induction part 1. We check that the statement is true for the first natural number n=1.
Σn=11 P(n) = 13.
We calculate:
Σn=11 P(n) = P(1) = 3 ⋅ 12 -3 ⋅ 1 + 1 = 1
1 = 13 - TRUE.
We proved that if n = 1, the sum indeed equals to 13.
Part 2. We will make an assumption. We say that the statement is true for some natural number, say k. That number k may be 2, or 1000 or 2561 or any other natural number.
Under our assumption we have the sum of the first polynomials to be k3. As a mathematical statement, it would look like
Assumption
Σi=1k P(i) = k3
We will prove that
Σi=1k+1 P(i) = (k +1)3.
Let work of the sum when we have k + 1 members. We can divide the sum into two components, first k and the last member:
Σi=1k+1 P(i) = [Σi=1k P(i)] + P(k+1).
In the above expression, the sum in the brackets is equal to k3 (remember our assumption above) and the second addend is P(k+1) = 3(k+1)2- 3(k+1) + 1. Now, we substitute these into the statement above:
Σi=1k+1 P(i) = [k3] + 3(k+1)2 - 3(k+1) +1
and simplify:
= k3 +3(k2 +2k + 1) - 3k - 3 +1 .... evaluate (k+1)2 and open the second set of parenthesis
= k3 + 3k2 + 6k + 3 - 3k - 3 + 1 .... open the remaining set of parenthesis
= k3 + 3k2 +3k + 1 ......................... combine like terms
= (k+1)3 .......................................... recognize the sum above is (k+1)3.
Working on the above identity, we saw that
Σi=1k+1 P(i) = (k+1)3. TRUE!.
This concludes the induction proof.
Additional notes on induction proof:
In general,
1) We check a statement is true for some natural number N0.
2a) We check that the statement is true for No + 1;
2b) We check that the statement is true for No + 2;
2c) We check that the statement is true for No + 3;
...
All the checks above are summarized in the two steps we performed above - Part 1 and Part 2. In the summary, I used 1) for Part 1 and 2a, 2b, 2c, ... for Part 2.
Mohammed M.
Thank you so much sir08/19/20