2018-09-30 23:01:58 +01:00
|
|
|
|
---
|
|
|
|
|
id: 5900f3721000cf542c50fe85
|
|
|
|
|
challengeType: 5
|
|
|
|
|
title: 'Problem 6: Sum square difference'
|
2019-08-05 09:17:33 -07:00
|
|
|
|
forumTopicId: 302171
|
2018-09-30 23:01:58 +01:00
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Description
|
|
|
|
|
<section id='description'>
|
2020-02-28 21:39:47 +09:00
|
|
|
|
|
2018-09-30 23:01:58 +01:00
|
|
|
|
The sum of the squares of the first ten natural numbers is,
|
2020-02-28 21:39:47 +09:00
|
|
|
|
|
2018-09-30 23:01:58 +01:00
|
|
|
|
<div style='text-align: center;'>1<sup>2</sup> + 2<sup>2</sup> + ... + 10<sup>2</sup> = 385</div>
|
2020-02-28 21:39:47 +09:00
|
|
|
|
|
2018-09-30 23:01:58 +01:00
|
|
|
|
The square of the sum of the first ten natural numbers is,
|
2020-02-28 21:39:47 +09:00
|
|
|
|
|
2018-09-30 23:01:58 +01:00
|
|
|
|
<div style='text-align: center;'>(1 + 2 + ... + 10)<sup>2</sup> = 55<sup>2</sup> = 3025</div>
|
2020-02-28 21:39:47 +09:00
|
|
|
|
|
2018-09-30 23:01:58 +01:00
|
|
|
|
Hence the difference between the sum of the squares of the first ten natural numbers and the square of the sum is 3025 − 385 = 2640.
|
2020-02-28 21:39:47 +09:00
|
|
|
|
|
|
|
|
|
Find the difference between the sum of the squares of the first `n` natural numbers and the square of the sum.
|
|
|
|
|
|
2018-09-30 23:01:58 +01:00
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
## Instructions
|
|
|
|
|
<section id='instructions'>
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
## Tests
|
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
|
|
```yml
|
2018-10-04 14:37:37 +01:00
|
|
|
|
tests:
|
2020-02-28 21:39:47 +09:00
|
|
|
|
- text: <code>sumSquareDifference(10)</code> should return a number.
|
|
|
|
|
testString: assert(typeof sumSquareDifference(10) === 'number');
|
2018-10-04 14:37:37 +01:00
|
|
|
|
- text: <code>sumSquareDifference(10)</code> should return 2640.
|
2019-07-26 19:45:56 -07:00
|
|
|
|
testString: assert.strictEqual(sumSquareDifference(10), 2640);
|
2018-10-04 14:37:37 +01:00
|
|
|
|
- text: <code>sumSquareDifference(20)</code> should return 41230.
|
2019-07-26 19:45:56 -07:00
|
|
|
|
testString: assert.strictEqual(sumSquareDifference(20), 41230);
|
2018-10-04 14:37:37 +01:00
|
|
|
|
- text: <code>sumSquareDifference(100)</code> should return 25164150.
|
2019-07-26 19:45:56 -07:00
|
|
|
|
testString: assert.strictEqual(sumSquareDifference(100), 25164150);
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
## Challenge Seed
|
|
|
|
|
<section id='challengeSeed'>
|
|
|
|
|
|
|
|
|
|
<div id='js-seed'>
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
function sumSquareDifference(n) {
|
2020-09-15 09:57:40 -07:00
|
|
|
|
|
2018-09-30 23:01:58 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sumSquareDifference(100);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
## Solution
|
|
|
|
|
<section id='solution'>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
const sumSquareDifference = (number)=>{
|
|
|
|
|
let squareOfSum = Math.pow(sumOfArithmeticSeries(1,1,number),2);
|
|
|
|
|
let sumOfSquare = sumOfSquareOfNumbers(number);
|
|
|
|
|
return squareOfSum - sumOfSquare;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function sumOfArithmeticSeries(a,d,n){
|
|
|
|
|
return (n/2)*(2*a+(n-1)*d);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function sumOfSquareOfNumbers(n){
|
|
|
|
|
return (n*(n+1)*(2*n+1))/6;
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
</section>
|