No Calculators allowed.

Algebra Level 3

1 3 + 3 3 + + ( 2 n 1 ) 3 = 1413721 1^3+3^3+\cdot \cdot \cdot + (2n-1)^3 = 1413721

Find n.


The answer is 29.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

4 solutions

The left-hand side of the equation is equivalent to

k = 1 2 n \sum_{k=1}^{2n} ( k 3 k^{3} ) - 8 {8} j = 1 n \sum_{j=1}^{n} ( k 3 k^{3} ) =

[ ( 2 n ) ( 2 n + 1 ) / 2 ] 2 8 [ n ( n + 1 ) / 2 ] 2 [(2n) * (2n + 1) / 2]^{2}\ - 8 * [n * (n + 1) / 2]^{2} =

n 2 ( 2 n 2 1 ) n^{2} * (2n^{2} - 1) .

Setting this equal to 1413721 {1413721} and solving for n 2 n^{2} using the quadratic equation gives us n 2 = 841 n^{2} = {841} , and thus n = 29 n = \boxed{29} .

Raghav Dua
May 18, 2014

THIS SOLUTION IS ONLY HELPFUL TO THOSE WHO LOVE TO CODE. BUT I'D BE GLAD IF SOMEONE COULD ALSO PROVIDE A MATHEMATICAL APPROACH TO THIS PROBLEM.

//include iostream statement

//include cmath statement

using namespace std;

int series (int pos) {

int result = (pos * 2);

result -= 1;

result = pow (result, 3);

return (result);

}

int main (int argc, char* argv []) {

int result (0);

int counter (0);

while (result != 1413721) {

counter++;

result += series (counter);

}

cout << counter << endl;

return (0);

}

COMPILE WITH ANY C++ COMPILER TO GET THE ANSWER, i.e. 29

David Lee
May 17, 2014

NOT A SOLUTION. Note: The idea behind this problem came from me, then me and @Daniel Liu worked on it (ok it was pretty easy) and i found the numbers.

Your problem statement could have been better. Be more creative!

Daniel Liu - 7 years ago

Log in to reply

What do you mean?

David Lee - 7 years ago
Ramiel To-ong
May 12, 2016

nice solution Brian.

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...