2018-09-30 23:01:58 +01:00
---
id: 594810f028c0303b75339ad3
2020-11-27 19:02:05 +01:00
title: Vector dot product
2018-09-30 23:01:58 +01:00
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 302343
2021-01-13 03:31:00 +01:00
dashedName: vector-dot-product
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
2019-07-18 17:32:12 +02:00
2021-01-20 22:23:10 -07:00
A vector can have one or more values represented by an ordered collection. Examples could be (x), (x, y), or (x, y, z).
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --instructions--
2021-01-20 22:23:10 -07:00
Write a function that takes two vectors (represented as one-dimensional arrays) as input and computes their dot product. Your function should return `null` on invalid inputs such as vectors of different lengths or passing anything other than two vectors.
2020-11-27 19:02:05 +01:00
# --hints--
2021-01-20 22:23:10 -07:00
`dotProduct` should be a function.
2020-11-27 19:02:05 +01:00
```js
assert.equal(typeof dotProduct, 'function');
2018-09-30 23:01:58 +01:00
```
2021-01-20 22:23:10 -07:00
`dotProduct()` should return `null` .
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert.equal(dotProduct(), null);
```
2018-09-30 23:01:58 +01:00
2021-01-20 22:23:10 -07:00
`dotProduct([1], [1])` should return `1` .
2018-09-30 23:01:58 +01:00
```js
2020-11-27 19:02:05 +01:00
assert.equal(dotProduct([1], [1]), 1);
```
2020-09-15 09:57:40 -07:00
2021-01-20 22:23:10 -07:00
`dotProduct([1], [1, 2])` should return `null` .
2020-11-27 19:02:05 +01:00
```js
assert.equal(dotProduct([1], [1, 2]), null);
2018-09-30 23:01:58 +01:00
```
2021-01-20 22:23:10 -07:00
`dotProduct([1, 3, -5], [4, -2, -1])` should return `3` .
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert.equal(dotProduct([1, 3, -5], [4, -2, -1]), 3);
```
2018-09-30 23:01:58 +01:00
2021-01-20 22:23:10 -07:00
`dotProduct([3, 2, 1], [2, 4, 2], [5, 3, 1])` should return `null` .
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
2021-01-20 22:23:10 -07:00
assert.equal(dotProduct([3, 2, 1], [2, 4, 2], [5, 3, 1]), null);
```
`dotProduct([ 0, 3, 6, 9, 12 ], [ 0, 4, 8, 12, 16 ])` should return `360` .
```js
assert.equal(dotProduct([ 0, 3, 6, 9, 12 ], [ 0, 4, 8, 12, 16 ]), 360);
2020-11-27 19:02:05 +01:00
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --seed--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
## --seed-contents--
```js
function dotProduct(...vectors) {
}
```
# --solutions--
2018-09-30 23:01:58 +01:00
```js
function dotProduct(...vectors) {
2021-01-20 22:23:10 -07:00
if (!vectors || !vectors.length || vectors.length > 2 || vectors[0].length !== vectors[1].length) {
2018-09-30 23:01:58 +01:00
return null;
}
const vectorLen = vectors[0].length;
let prod = 0;
let sum = 0;
let j = vectorLen;
2021-01-20 22:23:10 -07:00
let i = 2;
2018-09-30 23:01:58 +01:00
// Sum terms
while (j--) {
2021-01-20 22:23:10 -07:00
i = 2;
2018-09-30 23:01:58 +01:00
prod = 1;
while (i--) {
prod *= vectors[i][j];
}
sum += prod;
}
return sum;
}
```