I am given these three problems:
I think I understand the first question, it is basically asking me to find the formula for the sum of the first odd $n$ cubes, correct? Basically, I can use the finite differences method. So I have:
$1^3+3^3 +5^3+...+(2n-1)^3$
So I have the sequence of:
$1,28,153,496,1225,2556,...$
The first difference gives me: $27, 125, 343, 729, 1331,...$
Second difference is: $98, 218, 386, 602,... $
Third difference is: $120, 168, 216,...$
Fourth difference is: $48, 48,...$
The fourth difference is constant so the polynomial is of the form:
$Ax^4+Bx^3+Cx^2+Dx+E=y$
So from here I can create a system of equations and solve, and I know how to do this.
I know (from google) that the answer is $n^2(2n^2-1)$ but with my method of creating a system of equations and solving for$A,B,C,D,E$, I will get this formula right?
For the second and third questions I'm pretty confused.
For level $n=1$ I have that the number of exposed faces is 5.
$n=2, f= 20$
$n=3, f = 36$
$n=4, f = 52$
Maybe my notation is a little confusing because based off of
$1^3+3^3+...+(2n-1)^3$, $n$ can only be the odd numbers, so should I use a different variable, maybe like $y$? My notation is making me even more confused.
I found a pattern for finding the number of exposed faces (if my interpretation of the question is correct). Namely, the formula for the number of $n$ exposed faces is $4(2n-1)$
Now I am basically asked to find a formula which models the sum of these, so like $5+20+36+52+68+...+4(2n-1) = S_n$ where $S_n$ is the sum.
So I do the same thing as my first question and have that my sequence is:
$5, 20, 36, 52, 68, 84,...$
First difference is: $15, 16, 16, 16, 16, ...$
Second: $1, 0, 0, 0,...$
Third: $-1, 0, 0,...$
Fourth: $1,0,0,0,...$
The first term keeps oscillating between $1$ and $-1$ and while this is cool, it is also really annoying because I don't know why this is happening or if I did something wrong.
EDIT: I realized what I did wrong:
My sequence should be: $5,25,61, 113, 181, 265$
First difference: $20,36,52,68,84,...$
Second: $16,16,16,16,...$
So again using finite differences I should have $$8n^2-4n+1$$
Is this correct?
Additionally, for the third question, what would I have to do to erase the faces on the bottom of the pyramid? This really confuses me because i thought that implied in the assumption that we are dealing with the exposed faces, we would automatically discount the bottom row for the $n$th level, so I don't even see a difference in question 2 and 3.
Any help is appreciated, thank you!
EDIT: I'm thinking of the distinction between question 2 and 3
So The difference would be adding n x n = $n^2$ faces to whatever sum is of the exposed faces. So should the answers for questions 2 and 3 be:
2) $9n^2-4n+1$
3) $8n^2-4n+1$

For 1) my comment from the answer below still stands: Summing 3rd powers is not the right idea.
– Ingix Nov 28 '18 at 09:52