2018-09-30 23:01:58 +01:00
---
title: Vector dot product
id: 594810f028c0303b75339ad3
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 302343
2018-09-30 23:01:58 +01:00
---
## Description
<section id='description'>
2019-07-18 17:32:12 +02:00
2019-03-11 16:12:24 +09:00
A vector is defined as having three dimensions as being represented by an ordered collection of three numbers: (X, Y, Z).
2018-09-30 23:01:58 +01:00
</section>
## Instructions
<section id='instructions'>
2019-07-18 17:32:12 +02:00
2019-03-11 16:12:24 +09:00
Write a function that takes any numbers of vectors (arrays) as input and computes their dot product. Your function should return <code>null</code> on invalid inputs such as vectors of different lengths.
2018-09-30 23:01:58 +01:00
</section>
## Tests
<section id='tests'>
```yml
2018-10-04 14:37:37 +01:00
tests:
2019-11-20 07:01:31 -08:00
- text: dotProduct should be a function.
2019-07-26 05:24:52 -07:00
testString: assert.equal(typeof dotProduct, 'function');
2019-11-20 07:01:31 -08:00
- text: dotProduct() should return null.
2019-07-26 05:24:52 -07:00
testString: assert.equal(dotProduct(), null);
2019-11-20 07:01:31 -08:00
- text: dotProduct([[1], [1]]) should return 1.
2019-07-26 05:24:52 -07:00
testString: assert.equal(dotProduct([1], [1]), 1);
2019-11-20 07:01:31 -08:00
- text: dotProduct([[1], [1, 2]]) should return null.
2019-07-26 05:24:52 -07:00
testString: assert.equal(dotProduct([1], [1, 2]), null);
2019-11-20 07:01:31 -08:00
- text: dotProduct([1, 3, -5], [4, -2, -1]) should return 3.
2019-07-26 05:24:52 -07:00
testString: assert.equal(dotProduct([1, 3, -5], [4, -2, -1]), 3);
2019-11-20 07:01:31 -08:00
- text: <code>dotProduct(...nVectors)</code> should return 156000.
2019-07-26 05:24:52 -07:00
testString: assert.equal(dotProduct([ 0, 1, 2, 3, 4 ], [ 0, 2, 4, 6, 8 ], [ 0, 3, 6, 9, 12 ], [ 0, 4, 8, 12, 16 ], [ 0, 5, 10, 15, 20 ]), 156000);
2018-09-30 23:01:58 +01:00
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
2019-03-11 16:12:24 +09:00
function dotProduct(...vectors) {
2020-09-15 09:57:40 -07:00
2018-09-30 23:01:58 +01:00
}
```
</div>
</section>
## Solution
<section id='solution'>
```js
function dotProduct(...vectors) {
if (!vectors || !vectors.length) {
return null;
}
if (!vectors[0] || !vectors[0].length) {
return null;
}
const vectorLen = vectors[0].length;
const numVectors = vectors.length;
// If all vectors not same length, return null
for (let i = 0; i < numVectors; i++) {
if (vectors[i].length !== vectorLen) {
return null; // return undefined
}
}
let prod = 0;
let sum = 0;
let j = vectorLen;
let i = numVectors;
// Sum terms
while (j--) {
i = numVectors;
prod = 1;
while (i--) {
prod *= vectors[i][j];
}
sum += prod;
}
return sum;
}
```
</section>